/*--------------------------------1.Header-------------------------------------------------*/
header {
    padding: 0 0 0 3rem;
    /* Left padding for logo, 0 for right side */
    height: 90px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    z-index: 100;
    /* High z-index to sit above hero */
    position: relative;
    background-color: var(--bg-cream);
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Logo */
.logo {
    justify-self: start;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 102;
    /* Above mobile menu */
}

.logo span {
    color: var(--accent-gold);
}

/* Navigation Links */
nav {
    justify-self: center;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    background-color: var(--accent-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Header Button (Desktop) */
.header-btn-container {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 102;
}

.btn-consult {
    background-color: var(--bg-navy);
    color: var(--white);
    padding: 25px 2rem !important;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
    margin-right: 25px;

}

.btn-consult:hover {
    background-color: #0f1524;
}

/* Hamburger (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 102;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

header {
    /* Remove right padding so the button touches the edge */
    padding: 0 0 0 3rem;
    height: 90px;
    display: grid;
    /* auto allows the nav to take only the space it needs */
    grid-template-columns: 1fr auto 1fr;
    /* Remove align-items: center here to let children fill height */
    width: 100%;
    z-index: 100;
    position: relative;
    background-color: var(--bg-cream);
}

/* Ensure Logo and Nav stay vertically centered since header is no longer centering them */
.logo,
nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-btn-container {
    justify-self: end;
    display: flex;
    /* This makes the container take the full 90px height */
    height: 100%;
    z-index: 102;
}

.btn-consult {
    background-color: var(--bg-navy);
    color: var(--white);
    /* Remove top/bottom padding; use height 100% instead */
    padding: 0 2.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

/*--------------------------------2.Hero------------------------------------------------*/
.hero {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: calc(100vh - 90px);
    width: 100%;
}

.hero-left {
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow-hero {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

h1 i {
    color: var(--accent-gold);
}

.hero-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-grey);
    max-width: 500px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: #bfa030;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    padding: 1rem 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--text-dark);
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

.hero-right {
    background-color: var(--bg-navy);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-container {
    width: 75%;
    height: 75%;
    position: relative;
    max-width: 600px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transition: border-radius 0.5s ease;
}

.hero-img:hover {
    border-radius: 58% 42% 30% 70% / 55% 55% 45% 45%;
}

.floating-card {
    background: var(--white);
    position: absolute;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
    white-space: nowrap;
    border-radius: 6px;
}

.card-doctor {
    bottom: 40px;
    left: -20px;
    border-left: 3px solid var(--accent-gold);
    padding: 1rem 1.5rem;
}

.doc-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-bottom: 3px;
}

.doc-title {
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: var(--text-grey);
    text-transform: uppercase;
}

.card-rating {
    top: 40px;
    right: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-logo {
    width: 18px;
    height: 18px;
}

.stars {
    color: var(--accent-gold);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.score {
    font-weight: 700;
    font-size: 0.9rem;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

@media (max-width: 1100px) {
    header {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-left {
        padding: 0 2rem;
    }

    .image-container {
        width: 85%;
        height: 60%;
    }
}

/* --- MOBILE LAYOUT (900px and below) --- */
@media (max-width: 900px) {
    body {
        height: auto;
        overflow-x: hidden;
    }

    /* Header Restructure */
    header {
        display: flex;
        justify-content: space-between;
        padding: 1rem 1.5rem;
        height: 80px;
    }

    .logo {
        font-size: 1.2rem;
    }

    /* Show Hamburger */
    .hamburger {
        display: flex;
    }

    /* Header Btn: Make smaller or hide text on very small screens */
    .btn-consult {
        padding: 0.7rem 1.2rem;
        font-size: 0.65rem;
    }

    /* Mobile Menu Styles */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden by default */
        height: 100vh;
        width: 100%;
        background-color: var(--bg-cream);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease-in-out;
        z-index: 101;
        /* Below logo/hamburger but above content */
    }

    /* When active class is added via JS */
    nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .nav-links a {
        font-family: var(--font-serif);
        font-size: 1.8rem;
        /* Big luxury text */
        font-weight: 400;
        text-transform: none;
        /* Keep natural case for elegance */
        color: var(--bg-navy);
    }

    .nav-links a:hover {
        color: var(--accent-gold);
    }

    /* Hamburger Animation Classes */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* Hero Adjustments */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 4rem 1.5rem;
        text-align: center;
        align-items: center;
    }

    .eyebrow {
        margin-bottom: 1rem;
    }

    .eyebrow::before {
        display: none;
    }

    /* Remove side line on mobile */

    .hero-desc {
        margin: 0 auto 2rem auto;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
    }

    .hero-right {
        padding: 2rem 1.5rem 6rem 1.5rem;
        min-height: 500px;
    }

    .image-container {
        width: 100%;
        aspect-ratio: 1/1;
        max-width: 450px;
    }

    /* Adjust cards */
    .card-doctor {
        left: -10px;
        bottom: 20px;
        font-size: 0.8rem;
    }

    .card-rating {
        right: -10px;
        top: 20px;
    }
}

/* Tiny Screens */
@media (max-width: 400px) {
    h1 {
        font-size: 2.2rem;
    }

    .btn-consult {
        padding: 0.6rem 0.8rem;
        font-size: 0.6rem;
    }

    .header-btn-container {
        gap: 10px;
    }

    .card-doctor {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: 90%;
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--accent-gold);
    }

    .card-rating {
        top: 0;
        right: 0;
    }
}

/*--------------------------------3.Pricing------------------------------------------------*/
.pricing {
    padding: 5rem 3rem;
    width: 100%;
}

.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.eyebrow {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--text-dark);
    font-weight: 400;
}

.pricing-header h2 i {
    color: var(--accent-gold);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-top: 3px solid var(--accent-gold);
}

.price-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-grey);
    margin-bottom: 1rem;
}

.price-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--bg-navy);
    margin-bottom: 0.5rem;
}

.price-tag {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--accent-gold);
    margin: 1rem 0;
    font-weight: 500;
}

.price-tag span {
    font-size: 0.9rem;
    color: var(--text-grey);
    font-family: var(--font-sans);
}

.price-desc {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.price-features li {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: '•';
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.price-card .btn-outline {
    width: 100%;
    text-align: center;
    padding: 0.9rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.8rem;
    color: var(--text-grey);
}

@media (max-width: 900px) {
    .pricing {
        padding: 3rem 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------4.Services------------------------------------------------*/
.services {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: end;
}

.eyebrow {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
}

.services-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.2;
}

.services-header h2 i {
    color: var(--accent-gold);
}

.services-desc {
    font-size: 1rem;
    color: var(--text-grey);
    line-height: 1.8;
    max-width: 500px;
    padding-bottom: 10px;
}

/* --- GRID LAYOUT --- */
.services-grid {
    display: grid;
    /* Creates a responsive grid that fits 3 items per row on large screens */
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1px;
    /* Gap creates the border lines */
    background-color: rgba(0, 0, 0, 0.1);
    /* Color of the grid lines */
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card {
    background-color: var(--bg-cream);
    padding: 3.5rem 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

/* Hover Effect: Darken bg and change text to white */
.service-card:hover {
    background-color: var(--bg-navy);
}

.service-num {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.service-content h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    transition: color 0.4s;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.7;
    margin-bottom: 2rem;
    transition: color 0.4s;
}

.service-link {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.4s;
    margin-top: auto;
    /* Pushes link to bottom */
}

.arrow-icon {
    width: 18px;
    height: 18px;
    fill: var(--text-dark);
    transition: transform 0.3s, fill 0.4s;
}

/* Hover State Changes */
.service-card:hover h3 {
    color: var(--white);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

.service-card:hover .service-link {
    color: var(--accent-gold);
}

.service-card:hover .arrow-icon {
    fill: var(--accent-gold);
    transform: translateX(5px);
}

/* --- MOBILE --- */
@media (max-width: 900px) {
    .services {
        padding: 4rem 1.5rem;
    }

    .services-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        border: none;
        background: transparent;
        gap: 1.5rem;
    }

    .service-card {
        border: 1px solid rgba(0, 0, 0, 0.1);
        padding: 2.5rem 2rem;
        min-height: auto;
    }
}

/*--------------------------------5.Reviews-------------------------------------------------*/
.reviews {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Header Layout: Text on left, Aggregate badge on right */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.header-content {
    max-width: 600px;
}

.eyebrow {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
}

.reviews-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.2;
}

.reviews-header h2 i {
    color: var(--accent-gold);
}

/* Google Aggregate Badge */
.google-badge-container {
    background: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.google-g-icon {
    width: 32px;
    height: 32px;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-score {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.badge-stars {
    color: #FBBC05;
    font-size: 1rem;
    letter-spacing: 2px;
}

.badge-sub {
    font-size: 0.7rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* --- REVIEW GRID --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-initial {
    width: 40px;
    height: 40px;
    background-color: var(--bg-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

.reviewer-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-grey);
}

.google-icon-small {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.card-stars {
    color: #FBBC05;
    /* Google Star Color */
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.7;
    font-style: italic;
}

/* --- BUTTON --- */
.btn-container {
    margin-top: 4rem;
    text-align: center;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    padding: 1rem 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--text-dark);
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

@media (max-width: 900px) {
    .reviews {
        padding: 4rem 1.5rem;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .google-badge-container {
        width: 100%;
    }
}

/*--------------------------------6.Why Choose Us------------------------------------------------*/
.distinction {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.distinction-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.eyebrow {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.distinction-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.distinction-header h2 i {
    color: var(--accent-gold);
}

.distinction-desc {
    font-size: 1rem;
    color: var(--text-grey);
    line-height: 1.7;
}

/* --- FEATURES GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1rem;
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(19, 27, 46, 0.03);
    /* Subtle navy bg */
    border: 1px solid rgba(19, 27, 46, 0.1);
    transition: all 0.4s ease;
}

.feature-icon {
    width: 32px;
    height: 32px;
    fill: var(--bg-navy);
    transition: all 0.4s ease;
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.7;
}

/* Hover Effects */
.feature-card:hover .icon-box {
    background-color: var(--bg-navy);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
    fill: var(--accent-gold);
}

/* --- STATS STRIP --- */
.stats-strip {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: 500;
    display: block;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--bg-navy);
}

@media (max-width: 900px) {
    .distinction {
        padding: 4rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-strip {
        flex-direction: column;
        gap: 3rem;
    }
}

/*--------------------------------7.Gallery------------------------------------------------*/
.results-section {
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.results-header {
    text-align: center;
    margin-bottom: 4rem;
}

.eyebrow {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.results-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.2;
}

.results-header h2 i {
    color: var(--accent-gold);
}

/* --- COMPARISON GRID --- */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.comparison-card {
    display: flex;
    flex-direction: column;
}

/* SLIDER CONTAINER */
.slider-wrapper {
    position: relative;
    width: 100%;
    /* Aspect Ratio for Portrait Images */
    padding-bottom: 125%;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    cursor: col-resize;
}

.image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-layer img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The "Before" image is on top */
.img-before {
    z-index: 2;
    width: 50%;
    /* Default starting position */
    border-right: 2px solid var(--accent-gold);
}

/* The "After" image is the background */
.img-after {
    z-index: 1;
}

/* LABELS */
.label {
    position: absolute;
    top: 20px;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bg-navy);
    pointer-events: none;
    /* Let clicks pass through */
}

.label-before {
    left: 20px;
    z-index: 3;
}

.label-after {
    right: 20px;
    z-index: 2;
    background: rgba(19, 27, 46, 0.9);
    color: var(--white);
}

/* DRAG HANDLE */
.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Syncs with JS */
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-gold);
    border: 2px solid var(--white);
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.handle-arrows {
    color: var(--white);
    font-size: 14px;
}

/* INPUT RANGE OVERLAY (The actual interactive part) */
.slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    opacity: 0;
    cursor: col-resize;
    margin: 0;
}

/* CASE STUDY DETAILS */
.case-details {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.case-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--bg-navy);
    margin-bottom: 0.5rem;
}

.case-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.meta-item {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    font-weight: 600;
}

.meta-item span {
    color: var(--text-grey);
    font-weight: 400;
    margin-left: 5px;
}

.case-desc {
    font-size: 0.9rem;
    color: var(--text-grey);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .results-section {
        padding: 4rem 1.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .slider-wrapper {
        padding-bottom: 100%;
    }

    /* Square on mobile */
}

/*--------------------------------8.Doctor-------------------------------------------------*/
.doctor-split {
    width: 100%;
    display: flex;
    min-height: 600px;
    /* Ensures substantial height */
}

/* --- LEFT SIDE: THE IMAGE --- */
.split-image-col {
    flex: 1;
    /* Takes 50% width */
    position: relative;
    overflow: hidden;
}

.doc-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Subtle zoom on load effect could be added here */
    transition: transform 10s ease;
}

/* Optional: Gentle zoom effect on hover */
.split-image-col:hover .doc-img-full {
    transform: scale(1.05);
}

/* --- RIGHT SIDE: THE CONTENT --- */
.split-text-col {
    flex: 1;
    /* Takes 50% width */
    background-color: var(--bg-navy);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5rem;
    /* Generous padding */
    position: relative;
}

/* Decorative Gold Line at the top */
.split-text-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-gold);
}

.eyebrow-light {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.eyebrow-light::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
}

h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--white);
}

.role-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    display: block;
}

.doc-bio-large {
    font-family: var(--font-serif);
    /* Serif for bio feels more like a story */
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 550px;
}

.signature-block {
    margin-top: auto;
    /* Pushes to bottom if space allows */
}

.signature-name {
    font-family: 'Playfair Display', serif;
    /* Or use a signature font */
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.signature-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
}

/* Stats Row (Optional, adds authority) */
.mini-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.m-stat h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.m-stat span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 900px) {
    .doctor-split {
        flex-direction: column;
        /* Stack vertically */
        height: auto;
    }

    .split-image-col {
        height: 400px;
        /* Fixed height for image on mobile */
    }

    .split-text-col {
        padding: 4rem 2rem;
    }

    .doc-bio-large {
        font-size: 1.1rem;
    }
}

/*--------------------------------9.FAQ------------------------------------------------*/
.faq-section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.faq-wrapper {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
    /* Important for sticky to work */
}

/* --- LEFT SIDE (STICKY) --- */
.faq-sticky-side {
    flex: 1;
    /* Takes about 30-40% width */
    position: sticky;
    top: 40px;
    /* Sticks 40px from top of screen */
    padding-right: 2rem;
}

.eyebrow {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
}

h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.faq-desc {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Contact Box */
.contact-box {
    background-color: var(--white);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-label {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--bg-navy);
    margin-bottom: 0.5rem;
}

.contact-text {
    font-size: 0.85rem;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-link {
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 3px;
    transition: 0.3s;
}

.btn-link:hover {
    color: var(--bg-navy);
    border-color: var(--bg-navy);
}

/* --- RIGHT SIDE (SCROLLABLE LIST) --- */
.faq-list-side {
    flex: 1.5;
    /* Takes remaining width */
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Native Details/Summary Styling */
details {
    transition: all 0.3s ease;
}

summary {
    padding: 2rem 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

/* Hide default triangle */

.question-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-dark);
    transition: color 0.3s;
}

/* Plus Icon */
.icon-toggle {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.icon-toggle::before,
.icon-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--text-dark);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, background-color 0.3s;
}

.icon-toggle::before {
    width: 100%;
    height: 1px;
}

/* Horizontal */
.icon-toggle::after {
    width: 1px;
    height: 100%;
}

/* Vertical */

/* Open State Interactions */
details[open] .question-text {
    color: var(--accent-gold);
}

details[open] .icon-toggle::before {
    background-color: var(--accent-gold);
}

details[open] .icon-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Turns to minus */

.answer-text {
    padding-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.8;
    padding-right: 2rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MOBILE --- */
@media (max-width: 900px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .faq-sticky-side {
        position: static;
        padding-right: 0;
    }

    .faq-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    summary {
        padding: 1.5rem 0;
    }

    .question-text {
        font-size: 1.1rem;
    }
}

/*--------------------------------10.Contact-------------------------------------------------*/
.contact-section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Info smaller, Form wider */
    gap: 6rem;
    align-items: flex-start;
}

/* --- LEFT COLUMN: INFO --- */
.info-col {
    padding-top: 1rem;
}

.eyebrow {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
}

h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.info-block {
    margin-bottom: 3rem;
}

.info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-grey);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.info-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--bg-navy);
    line-height: 1.5;
}

.info-link {
    color: var(--bg-navy);
    text-decoration: none;
    border-bottom: 1px solid rgba(19, 27, 46, 0.2);
    transition: 0.3s;
}

.info-link:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.schedule-list {
    list-style: none;
    font-size: 0.95rem;
    color: var(--text-grey);
}

.schedule-list li {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    max-width: 250px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.2rem;
}

/* --- RIGHT COLUMN: FORM --- */
.form-col {
    background-color: var(--white);
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
}

.form-intro {
    font-size: 0.95rem;
    color: var(--text-grey);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

/* Editorial Input Style (Underline only) */
.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-bottom-color: var(--bg-navy);
}

/* Floating Label Logic */
.form-label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 0.9rem;
    color: var(--text-light-grey);
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Move label up when input has focus or value (requires JS or placeholder trick) */
.form-input:focus~.form-label,
.form-input:valid~.form-label {
    top: -15px;
    font-size: 0.7rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Select Styling */
select.form-input {
    cursor: pointer;
    color: var(--text-dark);
}

/* Textarea Styling */
textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

/* Submit Button */
.btn-submit {
    background-color: var(--bg-navy);
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: var(--accent-gold);
}

@media (max-width: 900px) {
    .contact-section {
        padding: 4rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .form-col {
        padding: 2rem;
    }
}

/*--------------------------------11.Footer-------------------------------------------------*/
.site-footer {
    background-color: var(--bg-navy);
    color: var(--white);
    padding: 5rem 3rem 2rem 3rem;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    /* 4 Columns */
    gap: 4rem;
    margin-bottom: 5rem;
}

/* --- COL 1: BRAND --- */
.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--accent-gold);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--white-muted);
    line-height: 1.7;
    max-width: 300px;
}

/* --- COL 2 & 3: LINKS --- */
.footer-heading {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

/* --- COL 4: NEWSLETTER --- */
.newsletter-form {
    margin-top: 1rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.footer-input {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    width: 100%;
    outline: none;
}

.footer-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.btn-arrow {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.input-group:focus-within {
    border-bottom-color: var(--white);
}

.btn-arrow:hover {
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: var(--white-muted);
    transition: fill 0.3s;
}

.social-icon:hover {
    fill: var(--accent-gold);
}


/* --- BOTTOM BAR --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--white);
}

/* --- MOBILE --- */
@media (max-width: 900px) {
    .site-footer {
        padding: 4rem 1.5rem 2rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }
}