:root {
    --teal: #0a6e7c;
    --teal-dark: #074f5a;
    --teal-light: #e6f5f7;
    --gold: #f5a623;
    --gold-light: #fff4e0;
    --mint: #3dbfae;
    --mint-light: #e2f9f6;
    --cream: #fdfaf4;
    --text: #1a2e35;
    --muted: #6b8a92;
    --white: #ffffff;
    --radius: 16px;
    --shadow: 0 8px 40px rgba(10,110,124,0.10);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
}

/* -- NAV -- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253,250,244,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6vw;
    height: 64px;
}

.nav-logo {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--teal-dark);
    letter-spacing: -0.3px;
}

    .nav-logo img {
        height: 45px; /* Set this to your desired height (40px–50px) */
        width: auto; /* Preserves aspect ratio */
        display: block; /* Removes baseline spacing issues */
        max-width: 100%; /* Ensures it doesn't overflow on small screens */
    }

    .nav-logo span {
        color: var(--gold);
    }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: var(--muted);
        font-weight: 700;
        font-size: 0.88rem;
        letter-spacing: 0.5px;
        transition: color .2s;
    }

        .nav-links a:hover {
            color: var(--teal);
        }

.nav-cta {
    background: var(--gold);
    color: var(--teal-dark) !important;
    padding: 9px 20px;
    border-radius: 50px;
    transition: background .2s, transform .15s !important;
}

    .nav-cta:hover {
        background: #e5960d;
        transform: translateY(-1px);
    }

.nav-burger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

    .nav-burger span {
        display: block;
        width: 24px;
        height: 2.5px;
        background: var(--teal-dark);
        border-radius: 2px;
        margin: 5px 0;
        transition: .3s;
    }

/* -- HERO -- */
#hero {
    min-height: 100vh;
    background: linear-gradient(145deg, var(--teal-dark) 0%, var(--teal) 60%, #1a9aab 100%);
    display: flex;
    align-items: center;
    padding: 100px 6vw 60px;
    position: relative;
    overflow: hidden;
}

    #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 55% 55% at 80% 20%, rgba(245,166,35,0.18) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 10% 80%, rgba(61,191,174,0.22) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    max-width: 560px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='2' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.13);
    border: 1.5px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

    .hero-badge::before {
        content: '?';
        color: var(--gold);
        font-size: 0.75rem;
    }

#hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.18;
    color: #fff;
    margin-bottom: 1.2rem;
}

    #hero h1 em {
        font-style: italic;
        color: var(--gold);
    }

#hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--teal-dark);
    font-weight: 800;
    font-size: 1rem;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 6px 24px rgba(245,166,35,0.35);
    display: inline-block;
}

    .btn-primary:hover {
        background: #e5960d;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(245,166,35,0.4);
    }

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.35);
    transition: background .2s;
    display: inline-block;
}

    .btn-ghost:hover {
        background: rgba(255,255,255,0.22);
    }

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
}

.stat-num {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.68);
    font-weight: 600;
}

.hero-img-col {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42%;
    max-width: 520px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-blob {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255,255,255,0.07);
    border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9rem;
    animation: blobFloat 6s ease-in-out infinite;
    overflow: hidden;
    /* Ensure the background blur still works */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .hero-blob img {
        width: 100%;
        height: 100%;
        /* This prevents the image from stretching */
        object-fit: cover;
        /* Keeps the focal point of the face centered */
        object-position: center;
    }

@keyframes blobFloat {
    0%,100% {
        border-radius: 60% 40% 55% 45%/45% 55% 45% 55%;
        transform: scale(1);
    }

    50% {
        border-radius: 40% 60% 45% 55%/55% 45% 55% 45%;
        transform: scale(1.03);
    }
}

/* -- SECTION GENERIC -- */
section {
    padding: 80px 6vw;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-light);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--teal-dark);
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 560px;
}

.section-head {
    margin-bottom: 3rem;
}

.center {
    text-align: center;
}

    .center .section-sub {
        margin: 0 auto;
    }

/* -- WHY US -- */
#why {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.why-card {
    background: var(--cream);
    border: 2px solid var(--teal-light);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

    .why-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        border-color: var(--mint);
    }

.why-icon {
    width: 56px;
    height: 56px;
    background: var(--teal-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--teal-dark);
    margin-bottom: .4rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* -- PROCESS -- */
#process {
    background: linear-gradient(160deg, var(--teal-light) 0%, var(--mint-light) 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
    position: relative;
}

.step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    .step::after {
        content: attr(data-num);
        position: absolute;
        bottom: -12px;
        right: 10px;
        font-size: 6rem;
        font-weight: 900;
        color: var(--teal-light);
        line-height: 1;
        pointer-events: none;
    }

.step-num {
    width: 44px;
    height: 44px;
    background: var(--teal);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--teal-dark);
    margin-bottom: .4rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--muted);
    position: relative;
    z-index: 2;
}

.step-connector {
    display: none;
}

/* -- TESTIMONIALS -- */
#testimonials {
    background: var(--white);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testi-card {
    background: var(--cream);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.8rem 1.6rem;
    position: relative;
}

.testi-quote {
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 0.5;
    font-family: 'Lora', serif;
    margin-bottom: .8rem;
}

.testi-card p {
    font-size: 0.95rem;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.testi-name {
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--teal-dark);
}

.testi-role {
    font-size: 0.78rem;
    color: var(--muted);
}

.trust-logos {
    margin-top: 3.5rem;
    text-align: center;
}

    .trust-logos p {
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 1.2rem;
    }

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.logo-pill {
    background: var(--teal-light);
    color: var(--teal);
    font-weight: 800;
    font-size: 0.88rem;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

/* -- CONTACT -- */
#contact {
    background: linear-gradient(160deg, #074f5a 0%, #0a6e7c 100%);
}

    #contact .section-label {
        background: rgba(255,255,255,0.15);
        color: #fff;
    }

    #contact .section-title {
        color: #fff;
    }

    #contact .section-sub {
        color: rgba(255,255,255,0.72);
    }

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2.5rem;
}

.contact-info h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-detail p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.78);
}

.contact-detail strong {
    color: #fff;
    display: block;
    font-size: 0.82rem;
}

.form-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.4rem 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

    .form-group label {
        display: block;
        font-size: 0.82rem;
        font-weight: 800;
        color: var(--teal-dark);
        margin-bottom: .4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        background: var(--teal-light);
        border: 2px solid transparent;
        border-radius: 10px;
        padding: 11px 14px;
        font-family: 'Nunito', sans-serif;
        font-size: 0.95rem;
        color: var(--text);
        outline: none;
        transition: border-color .2s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--teal);
            background: #fff;
        }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

.form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--teal-dark);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    padding: 14px;
    border-radius: 50px;
    transition: background .2s, transform .15s;
    box-shadow: 0 6px 20px rgba(245,166,35,0.3);
}

    .form-submit:hover {
        background: #e5960d;
        transform: translateY(-2px);
    }

.form-note {
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
    margin-top: .75rem;
}

/* -- FOOTER -- */
footer {
    background: var(--teal-dark);
    padding: 40px 6vw 24px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.4rem;
}

.footer-brand .nav-logo {
    font-size: 1.5rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-top: .5rem;
    max-width: 260px;
}

.footer-links h4 {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: .45rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color .2s;
}

    .footer-links a:hover {
        color: #fff;
    }

.social-row {
    display: flex;
    gap: .75rem;
    margin-top: .5rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: background .2s;
}

    .social-btn:hover {
        background: var(--gold);
    }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

    .footer-bottom p {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.4);
    }

    .footer-bottom a {
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        font-size: 0.8rem;
    }

        .footer-bottom a:hover {
            color: var(--gold);
        }

/* -- SCROLL ANIMATIONS -- */
. {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}


/* -- MOBILE -- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-burger {
        display: block;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 1.5rem 6vw 2rem;
        border-bottom: 2px solid var(--teal-light);
        gap: 1rem;
    }

    .hero-img-col {
        display: none;
    }

    #hero {
        text-align: left;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .contact-info {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 5vw;
    }
}

/* --- Base Styles --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative; /* Essential for absolute positioning of the dropdown */
}

/* --- Desktop View (Horizontal) --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-burger {
    display: none; /* Hidden on desktop */
}

/* --- Mobile View (The Dropdown) --- */
@media (max-width: 768px) {
    .nav-burger {
        display: block; /* Show burger on mobile */
    }

    .nav-links {
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%; /* Positions the menu directly below the navbar */
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column; /* Stack vertically */
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1); /* Adds the 'dropdown' shadow */
        z-index: 1000;
    }

        /* When the class 'active' is added via JS, show the menu */
        .nav-links.active {
            display: flex;
        }
}

}

/* Optional: Burger animation styles */
.nav-burger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.nav-burger.active span:nth-child(2) {
    opacity: 0;
}

.nav-burger.active span:nth-child(3) {
    transform: rotate(-45deg);
}
