/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background: #ffffff;
    color: #0d141a;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- HERO SECTION WITH BACKGROUND IMAGE ----- */
/* ----- HERO SECTION WITH BACKGROUND IMAGE ----- */

.hero {
    background-image: url('magnific__an-elderly-couple-sitting-at-a-dining-table-review__8077.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Dark overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.hero > .container {
    position: relative;
    z-index: 2;
}

/* ----- BUTTONS ----- */
.btn-primary {
    display: inline-block;
    background: #B89B00;
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-size: 16px;
    text-align: center;
}

.btn-primary:hover {
    background: #9f8600;
    transform: scale(1.02);
}

.btn-secondary {
    display: inline-block;
    background: #B89B00;
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
    text-align: center;
}

.btn-secondary:hover {
    background: #9f8600;
}

/* ----- HEADER / NAV ----- */
.site-header {
    background: #fffde4;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.brand h1 {
    font-size: 28px;
    font-weight: 700;
    color: #877400;
}

.nav-links {
    display: flex;
    gap: 24px;
    font-weight: 500;
}

.nav-links a {
    color: #675c27;
    font-size: 18px;
}

.nav-links a:hover {
    color: #877400;
}

/* ----- HERO SECTION (form + headline) ----- */
.hero {
   
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-content .btn-primary {
    margin-top: 10px;
}

/* ----- FORM CARD (floating) ----- */
.form-card {
    background: rgba(25, 25, 25, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 30px 25px;
    border-radius: 20px;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    margin-left: auto;
    color: #fff;
}

.form-card h2 {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.form-card input,
.form-card select {
    width: 100%;
    height: 48px;
    margin-bottom: 14px;
    border: none;
    border-radius: 12px;
    padding: 0 15px;
    font-size: 15px;
    box-sizing: border-box;
    background: #fff;
    color: #222;
}

.form-card select {
    appearance: auto;
}

.hip-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    margin: 10px 0 16px;
}

.hip-consent input {
    width: 18px !important;
    height: 18px !important;
    margin-top: 3px;
    flex-shrink: 0;
}

.hip-disclaimer {
    max-height: 100px;
    overflow-y: auto;
    margin-top: 12px;
    padding: 10px 12px;
    background: #fff;
    color: #333;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.6;
}

.hip-disclaimer::-webkit-scrollbar {
    width: 6px;
}
.hip-disclaimer::-webkit-scrollbar-thumb {
    background: #B89B00;
    border-radius: 10px;
}
.hip-disclaimer::-webkit-scrollbar-track {
    background: #eee;
}

.form-card button {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 30px;
    background: #B59A00;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 6px;
}

.form-card button:hover {
    background: #9d8500;
}

/* ----- ABOUT SECTION ----- */
.about-section {
    padding: 70px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1f1a0a;
}

.about-content p {
    color: #3d3a2a;
    margin-bottom: 28px;
    font-size: 17px;
}

/* ----- FEATURES (3 cards) ----- */
.features-section {
    padding: 70px 0;
    background: #fff;
}

.features-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px;
}

.features-header h2 {
    font-size: 38px;
    color: #222;
    margin-bottom: 12px;
}

.features-header p {
    color: #666;
    font-size: 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #b89b00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #222;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* ----- TESTIMONIALS (slider) ----- */
.testimonials-section {
    background: #f8f8f8;
    padding: 70px 20px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 38px;
    margin-bottom: 8px;
    color: #222;
}

.testimonials-section .subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

.testimonial-slider {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.slide {
    display: none;
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.slide.active {
    display: block;
    animation: fade 0.5s;
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stars {
    color: #c9a000;
    font-size: 28px;
    margin-bottom: 16px;
}

.slide p {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
}

.slide h4 {
    margin-top: 20px;
    color: #222;
}

.controls {
    margin-top: 30px;
}

.controls button {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #b89b00;
    color: white;
    font-size: 20px;
    margin: 0 8px;
    cursor: pointer;
    transition: 0.3s;
}

.controls button:hover {
    background: #222;
}

.dots {
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 5px;
    cursor: pointer;
}

.dot.active {
    background: #b89b00;
}

/* ----- STEPS / CTA ----- */
.steps-section {
    background: #fff;
    padding: 70px 20px;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.steps-section .badge {
    display: inline-block;
    background: #f5f5f5;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    margin-bottom: 12px;
}

.steps-section h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.steps-section .desc {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.step-item {
    background: #fafafa;
    padding: 16px 24px;
    border-radius: 12px;
    min-width: 180px;
    font-size: 15px;
    border: 1px solid #eee;
    transition: 0.2s;
}

.step-item:hover {
    transform: translateY(-3px);
    border-color: #ddd;
}

.step-num {
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    border-radius: 50%;
    background: #B89B00;
    color: #fff;
    font-size: 13px;
    margin-right: 8px;
    font-weight: bold;
}

/* ----- FAQ ----- */
.faq-section {
    max-width: 900px;
    margin: 70px auto;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    color: #222;
}

.faq-item {
    background: #fff;
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: none;
    background: #fff;
    text-align: left;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    transition: 0.2s;
}

.faq-question:hover {
    color: #b89b00;
}

.faq-answer {
    display: none;
    padding: 0 24px 24px;
    line-height: 1.7;
    color: #555;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    color: #b89b00;
}

/* ----- FOOTER ----- */
.site-footer {
    background: #675c27;
    color: #fff;
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-grid h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fffde4;
}

.footer-grid p,
.footer-grid a {
    color: #f0eedb;
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin: 20px 0 30px;
}

.footer-links a {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: #f0eedb;
    transition: 0.3s;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.18);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 10px;
    font-size: 14px;
    color: #ddd8bb;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .form-card {
        margin: 0 auto;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .header-inner {
        flex-direction: column;
        align-items: center;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h2 {
        font-size: 30px;
    }
    .testimonials-section h2 {
        font-size: 32px;
    }
    .faq-section h2 {
        font-size: 32px;
    }
    .steps {
        flex-direction: column;
        align-items: center;
    }
}

/* ----- FIX FOOTER TO BOTTOM ----- */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wp-site-blocks {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    flex: 1;
}

.site-footer {
    margin-top: auto;
    width: 100%;
}

/* ----- FOOTER STYLES ----- */
.site-footer {
    background: #675c27;
    color: #fff;
    padding: 50px 0 30px;
    flex-shrink: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-grid h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #fffde4;
}

.footer-grid p,
.footer-grid a {
    color: #f0eedb;
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin: 20px 0 30px;
}

.footer-links a {
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: #f0eedb;
    transition: 0.3s;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.18);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 10px;
    font-size: 14px;
    color: #ddd8bb;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}