:root {
    --primary-text: #333333;
    --secondary-text: #666666;
    --beige-bg: #F5F1EA;
    --white: #FFFFFF;
    --accent: #9A8C7D;
    /* Muted brownish/gold for icons and accents */
    --btn-primary: #889D9D;
    /* Muted blue-grey from button */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--primary-text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
    scroll-margin-top: 140px;
    /* Offset for sticky header */
}

.section-title {
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.bg-beige {
    background-color: var(--beige-bg);
}

.text-center {
    text-align: center;
}

/* Top Bar */
.top-bar {
    background-color: #4A6C6F;
    /* Dark Teal to match image */
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.top-contact a:hover {
    opacity: 0.8;
}

.top-social a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    font-size: 1.1rem;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    /* Circle icons */
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.top-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo h1 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
}

.logo span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--secondary-text);
    text-align: center;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 0.9rem;
    color: var(--primary-text);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    text-decoration: none;
}

/* Expanding underline effect */
nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--btn-primary);
    /* Brand color underline */
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--btn-primary);
}

nav a:hover::after {
    width: 100%;
}

.btn {
    padding: 10px 25px;
    border-radius: 4px;
    /* Slightly rounded as per image */
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.mobile-nav-btn {
    display: none;
    /* Hidden on desktop */
}

.btn-primary {
    background-color: var(--btn-primary);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-text);
    border: 1px solid var(--white);
    font-weight: 700;
}

/* Split Hero */
.split-hero {
    display: flex;
    width: 100%;
    height: 600px;
    /* Restored height to show more vertical context */
    overflow: hidden;
    position: relative;
    background: #000;
}

.split-side {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align content to bottom */
    padding-bottom: 5%;
    /* Lowered further as requested */
    flex-direction: column;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smooth Modern Easing */
    overflow: hidden;
    cursor: pointer;
}

.split-side:hover {
    flex: 3;
    /* Expand on hover */
}

.split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 35%;
    /* Shifted up to show both faces */
    transition: transform 0.5s ease;
    z-index: 1;
}

.split-side:hover .split-bg {
    transform: scale(1.05);
    /* Subtle zoom */
}

.split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Darken for text */
    transition: background 0.6s ease;
    z-index: 2;
}

.split-side:hover .split-overlay {
    background: rgba(0, 0, 0, 0.1);
    /* Lighten on hover */
}

.split-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 20px;
    opacity: 0.9;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.split-content h2 {
    font-family: 'Playfair Display', serif;
    /* Or user's "SPA" font if available, sticking to site font */
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-height: 0;
    /* Hide initially or keep visible? Modern style usually keeps title visible, reveals detail. Let's keep distinct. */
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.split-content .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* Reveal content on hover */
.split-side:hover .split-content p {
    max-height: 100px;
    opacity: 1;
}

.split-side:hover .split-content .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Initial visible state for title - always visible */


/* Services */
/* Services Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    /* Reduced from 3rem */
}

.section-header h2 {
    font-family: var(--font-body);
    /* Fixed to match site font */
    font-size: 1.5rem;
    /* Matched to wellness section title */
    font-weight: 400;
    /* Matched to wellness section title */
    color: #334155;
    margin-bottom: 0.5rem;
    /* Reduced from 1.5rem for closer underscore */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-separator {
    width: 60px;
    height: 3px;
    background-color: #000;
    /* Changed to black */
    margin: 0 auto 1.5rem;
    display: block;
}

.section-desc {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--btn-primary);
    /* Changed to brand color */
    color: var(--btn-primary);
    /* Changed to brand color */
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline:hover {
    background: var(--btn-primary);
    /* Changed to brand color */
    color: #fff;
    text-decoration: none;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    /* Reverted to 1000px */
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 1rem 1.5rem;
    /* Reduced top/bottom padding to 1.5rem */
    text-align: left;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    /* Prominent shadow */
    transition: transform 0.3s;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3);
    /* Much stronger shadow */
}

.service-card .icon {
    width: 8rem;
    /* Much bigger */
    height: 8rem;
    margin: 0 2rem 0 0;
    /* Margin right instead of auto */
    flex-shrink: 0;
}

.service-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card h4 {
    font-size: 1rem;
    /* Compact title */
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #334155;
    font-weight: 700;
    line-height: 1.25;
}

.service-card p {
    font-size: 0.85rem;
    /* Compact body */
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.learn-more {
    font-size: 0.75rem;
    color: #64748B;
    /* Slate 500 */
    text-transform: capitalize;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    /* Arrow stays right */
    align-items: center;
    width: 100%;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
    /* Placeholder for alignment */
    transition: color 0.2s;
}

.learn-more:hover {
    color: #334155;
}

/* Wellness */
.section-subtitle {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.wellness-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    /* Increased from 1000px */
    margin: 0 auto;
}

.wellness-card {
    background: var(--beige-bg);
    padding: 1.5rem;
    text-align: left;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    flex: 1 1 280px;
    max-width: 380px;
    min-width: 0;
    overflow: hidden;
}

.wellness-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3);
}

.wellness-card .icon {
    width: 5rem;
    height: 5rem;
    margin: 0 1rem 0 0;
    flex-shrink: 0;
}

.wellness-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Blends white icon background with beige tile */
}

.wellness-card h4 {
    font-size: clamp(0.75rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: #334155;
    line-height: 1.25;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}


/* Testimonials Carousel */
.testimonial-slider {
    position: relative;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    padding: 0 90px;
    perspective: 1000px;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    transform: none;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex: unset;
    max-width: unset;
    padding: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s;
    transform-origin: center bottom;
    opacity: 0;
    /* Hidden by default */
}

.testimonial-content {
    background: #ffffff;
    /* Solid background for stack */
    /* Remove backdrop-filter as it needs transparency, which stacks poorly */
    backdrop-filter: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    /* Increased padding */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Center content vertically */
    text-align: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    cursor: grab;
    user-select: none;
    touch-action: none;
    /* Prevent scrolling while dragging */
}

.testimonial-content:active {
    cursor: grabbing;
}

/* Mobile Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials .container {
        position: relative;
    }

    .testimonial-slider {
        height: auto;
        padding: 0 20px;
        max-width: 100%;
        overflow-x: auto;
        display: flex;
        gap: 16px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        perspective: none;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .testimonial-slider::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .slider-track {
        display: contents;
        width: auto;
        height: auto;
        transform: none !important;
    }

    .testimonial-card {
        position: relative;
        width: 85vw;
        max-width: 320px;
        flex: 0 0 auto;
        height: auto;
        opacity: 1 !important;
        transform: none !important;
        scroll-snap-align: center;
        background: transparent;
        pointer-events: auto !important;
    }

    .testimonial-content {
        padding: 1.5rem;
        border: 1px solid #E5E7EB;
        background: #F9FAFB;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        border-radius: 12px;
        cursor: default;
        min-height: 180px;
        touch-action: pan-x pan-y;
        /* Allow touch scrolling */
    }

    .testimonial-content p.quote {
        font-size: 0.95rem;
        color: #4B5563;
        font-style: italic;
    }

    .testimonial-content cite {
        font-size: 0.9rem;
        color: #1F2937;
        font-weight: 600;
        margin-top: 1rem;
        font-style: normal;
    }

    /* Hide side buttons, show bottom indicators */
    .slider-btn.prev,
    .slider-btn.next {
        display: none;
    }
}

/* Testimonial Bottom Indicators (like services section) */
.testimonial-indicators {
    display: none;
}

@media (max-width: 768px) {
    .testimonial-indicators {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 20px;
    }

    .testimonial-indicators .indicator-arrow {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        color: #94a3b8;
        padding: 8px;
        transition: color 0.3s ease;
    }

    .testimonial-indicators .indicator-arrow:hover {
        color: #889D9D;
    }

    .testimonial-indicators .indicator-dots {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .testimonial-indicators .indicator-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #cbd5e1;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .testimonial-indicators .indicator-dot.active {
        width: 24px;
        border-radius: 4px;
        background: #889D9D;
    }
}

.slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #64748B;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--btn-primary);
    color: #fff;
    border-color: var(--btn-primary);
    box-shadow: 0 6px 20px rgba(136, 157, 157, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev {
    left: -30px;
}

.slider-btn.next {
    right: -30px;
}

/* Services */
.services {
    padding-top: 4rem;
    padding-bottom: 5rem;
    /* Added extra bottom padding for white expansion */
    background: var(--white);
    scroll-margin-top: 150px;
    /* Offset for sticky header logic */
}


/* Clean Booking Page Styles */
.simple-booking-section {
    padding: 40px 20px;
    background: #fff;
    min-height: 50vh;
    /* Ensure it takes space */
}

.booking-container {
    max-width: 600px;
    margin: 0 auto;
}

.clean-booking-form .form-group {
    margin-bottom: 15px;
}

.clean-booking-form label {
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 700;
    color: #1e293b;
    /* Dark slate */
    font-size: 0.95rem;
}

.clean-booking-form input,
.clean-booking-form select,
.clean-booking-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #334155;
    background: #fff;
    font-family: var(--font-body);
    transition: all 0.2s ease;
}

.clean-booking-form input::placeholder,
.clean-booking-form textarea::placeholder {
    color: #94a3b8;
}

.clean-booking-form input:focus,
.clean-booking-form select:focus,
.clean-booking-form textarea:focus {
    outline: none;
    border-color: #94a3b8;
    /* Subtle highlight */
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.1);
}

.submit-btn-clean {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #1a1a1a;
    /* Almost black */
    color: #fff;
    border: none;
    border-radius: 50px;
    /* Pill shape */
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background-color 0.2s;
    margin-top: 15px;
}

.submit-btn-clean:hover {
    background-color: #333;
}

/* Footer */
footer {
    background: var(--beige-bg);
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
    text-align: left;
}

.footer-col h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-text);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p {
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--secondary-text);
    font-size: 0.9rem;
}

.footer-col p strong {
    /* display: block; removed to fix gap with <br> */
    /* margin-bottom 0; */
    color: var(--primary-text);
    font-weight: 700;
}


.footer-col a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--link-hover);
}



.map-container {
    border-radius: 8px;
    overflow: hidden;
    height: 150px;
    /* Constrain height */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* Pricing Page Styles */
.page-header {
    height: 350px;
    /* Increased height */
    background-size: cover;
    background-position: center center;
    /* Centered */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.pricing-category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #334155;
    margin-bottom: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-card h4 {
    font-size: 1.2rem;
    color: #334155;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.pricing-desc {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #475569;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list .price {
    font-weight: 700;
    color: #334155;
}

.mt-5 {
    margin-top: 3rem;
}

.mt-8 {
    margin-top: 5rem;
}

.full-width {
    grid-column: 1 / -1;
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-big {
    font-size: 1.5rem;
    font-weight: 700;
    color: #334155;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-big span:first-child {
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.price-big-col {
    text-align: right;
}

.price-row {
    margin-bottom: 10px;
}

.price-row span:first-child {
    margin-right: 15px;
    color: #64748B;
}

.price-row .price {
    font-weight: 700;
    color: #334155;
    font-size: 1.1rem;
}

/* Dropdown Menu Styles */
.dropdown-parent {
    position: relative;
    padding-bottom: 10px;
    /* Bridge the gap */
    margin-bottom: -10px;
}

.dropdown-parent .active-page {
    color: var(--btn-primary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 40px;
    min-width: 400px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    white-space: nowrap;
}

.dropdown-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.dropdown-col a {
    font-size: 0.95rem;
    color: #334155;
    padding: 5px 0;
    transition: color 0.2s;
    font-weight: 400;
}

.dropdown-col a:hover {
    color: var(--btn-primary);
    transform: translateX(5px);
}

.text-xs {
    font-size: 0.7rem;
    margin-left: 4px;
    vertical-align: middle;
}

/* Responsive Styles for Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        /* Hidden by default on mobile, would need JS toggle */
        padding: 10px 0;
        background: transparent;
    }

    .dropdown-parent:hover .dropdown-menu {
        display: none;
        /* Disable hover on mobile for now, usually needs click */
    }

    /* Simple fallback for mobile nav if using standard hamburger later */
}

.social-links {
    list-style: none;
}

.social-links li {
    margin-bottom: 10px;
}

.newsletter form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter input {
    padding: 10px;
    border: 1px solid #ccc;
    flex: 1;
}

.newsletter button {
    background: var(--btn-primary);
    color: var(--white);
    border: none;
    padding: 0 15px;
    cursor: pointer;
}

.copyright {
    text-align: left;
    color: var(--secondary-text);
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* Gallery Page Styles */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.comparison-card h3 {
    font-size: 1.25rem;
    color: #334155;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
}

.treatment-desc {
    font-size: 0.9rem;
    color: #64748B;
    margin-bottom: 20px;
    font-style: italic;
}

.comparison-slider {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
}

.comparison-slider figure {
    background-size: cover;
    font-size: 0;
    height: 100%;
    margin: 0;
    position: absolute;
    width: 100%;
    overflow: hidden;
}

.comparison-slider figure:nth-of-type(2) {
    border-right: 2px solid #fff;
    width: 50%;
    z-index: 10;
}

.comparison-slider img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    max-width: none;
}

.comparison-slider figure:nth-of-type(2) img {
    width: 100%;
}

input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    background-color: transparent;
    width: calc(100% + 50px);
    z-index: 20;
}

input[type=range]:focus,
input[type=range]:active {
    outline: none;
}

input[type=range]::-moz-range-track {
    -moz-appearance: none;
    height: 15px;
    width: 98%;
    background-color: transparent;
    position: relative;
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ddd;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 30;
}

input[type=range]::-moz-range-thumb {
    -moz-appearance: none;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ddd;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 30;
}

figcaption {
    position: absolute;
    top: 10px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    z-index: 15;
    pointer-events: none;
}

figure:nth-of-type(1) figcaption {
    right: 10px;
}

figure:nth-of-type(2) figcaption {
    left: 10px;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 25;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-button:after {
    content: '\f337';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #333;
    font-size: 0.8rem;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-text);
    cursor: pointer;
}

@media (max-width: 768px) {

    /* Top Bar Mobile - Keep icons in one row */
    .top-bar-inner {
        flex-wrap: nowrap;
    }

    .top-contact {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .top-contact a {
        font-size: 0.75rem;
        margin-right: 0;
    }

    .top-social {
        display: flex;
        flex-direction: row;
        gap: 8px;
        flex-shrink: 0;
    }

    .top-social a {
        margin-left: 0;
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        border-top: 1px solid #eee;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
        /* Allow scrolling if menu is long */
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        /* Remove gap, handle with padding */
        align-items: stretch;
        /* Full width items */
        width: 100%;
    }

    nav li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f5f5f5;
    }

    nav a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    /* Mobile Dropdown Styling - Accordion Style */
    /* Using high specificity to override desktop hover/active states */
    .dropdown-menu,
    .dropdown-parent:hover .dropdown-menu,
    .dropdown-parent.active .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        background: transparent;
        width: 100%;
        min-width: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        border: none;
        margin: 0;
        transition: none;
        left: auto;
        top: auto;
    }

    .dropdown-menu {
        display: none;
        flex-direction: column;
    }

    .dropdown-parent:hover .dropdown-menu {
        /* Disable hover-to-show on mobile, rely on JS click */
        display: none;
    }

    /* Only show when explicitly active via JS click */
    .dropdown-parent.active .dropdown-menu {
        display: flex;
    }

    .dropdown-col {
        width: 100%;
        margin: 0;
        padding: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .dropdown-col h4 {
        display: none;
        /* Hide redundant category headers in mobile accordion */
    }

    .dropdown-col a {
        padding: 12px 20px 12px 40px;
        /* Indented for hierarchy */
        font-size: 0.9rem;
        color: var(--secondary-text);
        border-bottom: 1px solid #f9f9f9;
        background: #fdfdfd;
        width: 100%;
        display: block;
        transition: background 0.2s;
    }

    .dropdown-col a:hover,
    .dropdown-col a:active {
        background: #f5f5f5;
        color: var(--btn-primary);
        transform: none;
    }

    /* Mobile Service Card Layout - Stacked */
    .service-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .service-card .icon {
        margin: 0 0 1.5rem 0;
        /* Bottom margin instead of right */
        width: 6rem;
        height: 6rem;
    }

    .card-content {
        align-items: center;
    }

    .mobile-nav-btn {
        display: block !important;
        /* Force show on mobile */
        margin-top: 15px;
        text-align: center;
        background-color: var(--btn-primary);
        color: #fff !important;
        border-radius: 4px;
        font-weight: 700;
        padding: 12px 0 !important;
    }


    .header-container .btn {
        display: none;
    }

    /* Mobile Hero Fixes */
    .split-hero {
        flex-direction: column;
        height: auto;
        /* Allow content to dictate height, or stacking */
    }

    .split-side {
        width: 100%;
        height: 400px;
        /* Fixed height for each split on mobile */
        padding-bottom: 20px;
        justify-content: center;
    }

    .split-bg {
        background-position: center 20%;
        /* Re-adjust for smaller portrait slots if needed */
    }

    .split-content h2 {
        font-size: 2.5rem;
        /* Smaller heading */
    }

    /* Gallery Grid Fix */
    .comparison-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        padding: 0 10px;
        gap: 30px;
    }

    .split-side.mobile-expanded {
        height: 60vh;
        /* Expanded height */
        z-index: 10;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

/* GSAP 3D Wheel Carousel */
.services-picker-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.services-picker {
    position: relative;
    width: 100%;
    height: 280px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

.services-picker:active {
    cursor: grabbing;
}

.services-picker .cell {
    position: absolute;
    width: 400px;
    height: 100%;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.services-picker .cell-content {
    width: 100%;
    height: 100%;
    background: var(--white);
    padding: 1rem 1.5rem;
    text-align: left;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    transition: box-shadow 0.3s ease;
}

.services-picker .cell.active .cell-content {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3);
}

.services-picker .cell .icon {
    width: 6rem;
    height: 6rem;
    margin: 0 1.5rem 0 0;
    flex-shrink: 0;
}

.services-picker .cell .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-picker .cell .card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    flex: 1;
}

.services-picker .cell h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #334155;
    font-weight: 700;
    line-height: 1.25;
}

.services-picker .cell p {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.services-picker .cell .learn-more {
    font-size: 0.75rem;
    color: #64748B;
    text-transform: capitalize;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
    transition: color 0.2s;
}

.services-picker .cell .learn-more:hover {
    color: #334155;
}

/* Bottom Indicators with Arrows */
.services-carousel-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.services-carousel-indicators .indicator-arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #94a3b8;
    padding: 8px;
    transition: color 0.3s ease;
}

.services-carousel-indicators .indicator-arrow:hover {
    color: #889D9D;
}

.services-carousel-indicators .indicator-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.services-carousel-indicators .indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-carousel-indicators .indicator-dot.active {
    width: 28px;
    border-radius: 4px;
    background: #889D9D;
}

/* Tablet Enhanced Carousel Cards - 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .services-picker {
        height: 400px;
    }

    .services-picker .cell {
        width: 520px;
    }
}

/* Desktop Enhanced Carousel Cards - Seamless Design */
@media (min-width: 1024px) {
    .services-picker {
        height: 420px;
    }

    .services-picker .cell {
        width: 560px;
    }

    .services-picker .cell-content {
        position: relative;
        padding: 0;
        border-radius: 20px;
        background: linear-gradient(180deg, #f5f1ea 0%, #ffffff 60%, #ffffff 100%);
        overflow: hidden;
        flex-direction: column;
        align-items: stretch;
        display: flex;
    }

    .services-picker .cell.active .cell-content {
        box-shadow:
            0 30px 60px -12px rgba(0, 0, 0, 0.18),
            0 0 0 1px rgba(136, 157, 157, 0.1);
    }

    /* Icon area - seamless, no borders */
    .services-picker .cell .icon {
        position: relative;
        width: 100%;
        height: 170px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: transparent;
    }

    .services-picker .cell .icon img {
        width: 130px;
        height: 130px;
        object-fit: contain;
        opacity: 0.5;
        mix-blend-mode: multiply;
    }

    /* Text container - flows naturally from icon area */
    .services-picker .cell .card-content {
        position: relative;
        flex: 1;
        padding: 1.25rem 2rem 1.5rem;
        background: transparent;
        border-top: none;
    }

    .services-picker .cell h4 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
        letter-spacing: 0.1em;
        color: #1a202c;
        font-weight: 700;
    }

    .services-picker .cell p {
        font-size: 0.9rem;
        line-height: 1.55;
        color: #4a5568;
        margin-bottom: 1rem;
    }

    /* Artistic Learn More link */
    .services-picker .cell .learn-more {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'Playfair Display', serif;
        font-size: 0.95rem;
        font-style: italic;
        font-weight: 400;
        color: #4A6C6F;
        padding-top: 0;
        border-top: none;
        position: relative;
        transition: all 0.3s ease;
    }

    .services-picker .cell .learn-more::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: linear-gradient(90deg, #889D9D, transparent);
        transition: width 0.4s ease;
    }

    .services-picker .cell .learn-more:hover {
        color: #334155;
        letter-spacing: 0.02em;
    }

    .services-picker .cell .learn-more:hover::after {
        width: 100%;
    }
}

/* Featured Card - Base/Mobile First (all sizes) */
.services-picker .cell.featured-card .cell-content {
    display: flex;
    flex-direction: column;
    background: #f5f1eb;
    padding: 1.5rem;
    min-height: auto;
    overflow: hidden;
}

.services-picker .cell.featured-card .featured-text {
    text-align: center;
}

.services-picker .cell.featured-card .featured-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #212b36;
    text-transform: uppercase;
}

.services-picker .cell.featured-card .featured-text p {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 1rem;
}

.services-picker .cell.featured-card .featured-text .learn-more {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #5b7c7c;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.services-picker .cell.featured-card .featured-text .learn-more::after {
    display: none;
}

.services-picker .cell.featured-card .featured-text .learn-more .arrow {
    margin-left: 6px;
}

/* Mobile Featured Card Layout - Image on top, text below, link at bottom */
@media (max-width: 767px) {
    .services-picker .cell.featured-card .cell-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .services-picker .cell.featured-card .featured-image {
        order: 1;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: auto !important;
        max-height: 120px;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.75rem;
        overflow: visible !important;
        position: relative !important;
        clip-path: none !important;
        pointer-events: auto !important;
    }

    .services-picker .cell.featured-card .featured-image img {
        max-width: 100%;
        max-height: 100px;
        object-fit: contain;
        mix-blend-mode: multiply;
        filter: contrast(1.15) brightness(1.08);
    }

    .services-picker .cell.featured-card .featured-text {
        order: 2;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .services-picker .cell.featured-card .featured-text .learn-more {
        order: 3;
        margin-top: auto;
    }
}

/* Featured Card - Tablet & Desktop (768px+) - Two Column Layout */
@media (min-width: 768px) {
    .services-picker .cell.featured-card .cell-content {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        background: #f5f1eb;
        padding: 0;
        min-height: 340px;
        overflow: hidden;
    }

    /* Text column - left side */
    .services-picker .cell.featured-card .featured-text {
        flex: 0 0 45%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        text-align: left;
        order: 1;
        z-index: 2;
    }

    .services-picker .cell.featured-card .featured-text h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 1rem;
        color: #212b36;
        letter-spacing: -0.01em;
        text-transform: uppercase;
    }

    .services-picker .cell.featured-card .featured-text p {
        font-family: 'Lato', sans-serif;
        font-size: 0.9rem;
        line-height: 1.5;
        color: #4a5568;
        margin-bottom: 1.25rem;
    }

    .services-picker .cell.featured-card .featured-text .learn-more {
        font-family: 'Lato', sans-serif;
        font-weight: 600;
        font-size: 0.95rem;
        color: #5b7c7c;
        text-decoration: none;
        border-bottom: 2px solid #5b7c7c;
        padding-bottom: 4px;
        display: inline-flex;
        align-items: center;
        width: fit-content;
        transition: color 0.3s, border-color 0.3s;
    }

    .services-picker .cell.featured-card .featured-text .learn-more:hover {
        color: #3e5c5c;
        border-color: #3e5c5c;
    }

    .services-picker .cell.featured-card .featured-text .learn-more .arrow {
        margin-left: 8px;
        font-size: 1rem;
    }

    /* Tablet Enhanced Carousel Card Sizing */
    @media (min-width: 768px) and (max-width: 1023px) {
        .services-picker .cell {
            width: 520px !important;
        }

        /* Ensure text doesn't expand too much on tablet */
        .services-picker .cell.featured-card .featured-text {
            flex: 0 0 45% !important;
            max-width: 45% !important;
        }
    }

    /* Image column - right side */
    .services-picker .cell.featured-card .featured-image,
    .services-picker .cell.featured-card>.cell-content>.featured-image,
    .services-picker .featured-card .featured-image {
        flex: 0 0 55% !important;
        max-width: 55% !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        height: 100% !important;
        position: relative !important;
        clip-path: none !important;
        pointer-events: auto !important;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
        max-height: none;
        overflow: hidden;
        background: #f5f1eb;
        order: 2;
    }

    /* Ensure flex container behaviors */
    .services-picker .cell.featured-card .cell-content {
        display: flex !important;
        flex-direction: row !important;
        width: 100%;
        height: 100%;
        gap: 0;
    }

    .services-picker .cell.featured-card .featured-image img {
        width: auto;
        height: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: right center;
        mix-blend-mode: multiply;
        filter: contrast(1.15) brightness(1.08);
    }

    /* Hover effect on featured cards */
    .services-picker .cell.featured-card:hover .cell-content {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 768px) {


    .services-picker {
        height: 320px;
    }

    .services-picker .cell {
        width: 300px;
    }

    .services-picker .cell-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .services-picker .cell .icon {
        margin: 0 0 1rem 0;
        width: 4rem;
        height: 4rem;
    }

    .services-picker .cell .card-content {
        align-items: center;
    }
}

/* ===========================================
   GSAP SplitText + ScrollTrigger Animations
   =========================================== */

/* SplitText requires inline-block for characters/words */
.split-char,
.split-word {
    display: inline-block;
    will-change: transform, opacity;
}

/* Prevent text layout shift during split */
.section-header h2,
.section-title {
    perspective: 1000px;
}

/* Staggered card animations */
.wellness-card,
.services-picker .cell {
    will-change: transform, opacity;
}

/* reCAPTCHA Badge Fix - Hide to avoid overlap with chatbot */
.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha-disclaimer {
    font-size: 0.75rem;
    color: var(--secondary-text);
    margin-top: 10px;
    opacity: 0.7;
}

.recaptcha-disclaimer a {
    color: var(--btn-primary);
    text-decoration: underline;
}

/* ===========================================
   Q&A PAGE STYLES - v2 (Dropdown Layout)
   =========================================== */

/* Q&A Hero Section */
.qa-hero {
    background: linear-gradient(135deg, #F5F1EA 0%, #E8E4DD 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.qa-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.qa-hero-subtitle {
    font-size: 1rem;
    color: var(--secondary-text);
    max-width: 500px;
    margin: 0 auto;
}

/* Q&A Main Section */
.qa-main-section {
    padding: 40px 0 60px;
    background: var(--white);
}

.qa-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* Dropdown Styles */
.qa-dropdowns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qa-dropdown {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.qa-dropdown:hover {
    border-color: #cbd5e1;
}

.qa-dropdown.open {
    border-color: var(--btn-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.qa-dropdown-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    text-align: left;
    transition: background 0.2s;
}

.qa-dropdown-header:hover {
    background: #f8fafc;
}

.qa-dropdown-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F1EA;
    border-radius: 10px;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.qa-dropdown-header span {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-text);
}

.qa-dropdown-arrow {
    color: #94a3b8;
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.qa-dropdown.open .qa-dropdown-arrow {
    transform: rotate(180deg);
}

.qa-dropdown-content {
    display: none;
    padding: 0 20px 16px;
    border-top: 1px solid #f1f5f9;
}

.qa-dropdown.open .qa-dropdown-content {
    display: block;
}

.qa-preset-question {
    display: block;
    width: 100%;
    padding: 12px 16px;
    margin-top: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--secondary-text);
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s;
}

.qa-preset-question:hover {
    background: var(--btn-primary);
    color: white;
    border-color: var(--btn-primary);
}

/* Chat Panel */
.qa-chat-panel {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 550px;
    max-height: 600px;
    position: sticky;
    top: 100px;
}

.qa-chat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.qa-chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C5A47E 0%, #A8896A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.qa-chat-header-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.qa-online-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #94a3b8;
}

.status-dot.online {
    background: #22c55e;
}

/* Chat Messages */
.qa-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fafafa;
}

.qa-message {
    display: flex;
    gap: 12px;
    max-width: 90%;
    animation: qaFadeIn 0.3s ease;
}

@keyframes qaFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qa-message.user {
    flex-direction: row-reverse;
    align-self: flex-end;
}

.qa-message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C5A47E 0%, #A8896A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.qa-message-bubble {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qa-message-content {
    background: var(--white);
    padding: 14px 18px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--primary-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.qa-message.user .qa-message-content {
    background: var(--btn-primary);
    color: white;
    border-radius: 16px;
    border-bottom-right-radius: 4px;
}

/* Follow-up Prompt */
.qa-follow-up {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 4px;
}

.qa-follow-up span {
    font-size: 0.8rem;
    color: var(--secondary-text);
}

.qa-follow-up-btn {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s;
}

.qa-follow-up-btn.yes {
    background: var(--btn-primary);
    color: white;
    border: none;
}

.qa-follow-up-btn.yes:hover {
    background: #7a8e8e;
}

.qa-follow-up-btn.no {
    background: transparent;
    color: var(--secondary-text);
    border: 1px solid #e2e8f0;
}

.qa-follow-up-btn.no:hover {
    border-color: var(--secondary-text);
}

/* Typing Indicator */
.qa-typing-dots {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.qa-typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C5A47E;
    animation: qaBounce 1.4s infinite ease-in-out both;
}

.qa-typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.qa-typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes qaBounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Chat Input */
.qa-chat-input-area {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #e2e8f0;
    background: var(--white);
}

.qa-chat-input-area input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--primary-text);
    transition: border-color 0.2s;
}

.qa-chat-input-area input::placeholder {
    color: #94a3b8;
}

.qa-chat-input-area input:focus {
    outline: none;
    border-color: var(--btn-primary);
}

.qa-send-btn {
    width: 48px;
    height: 48px;
    background: var(--btn-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qa-send-btn:hover:not(:disabled) {
    background: #7a8e8e;
}

.qa-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Q&A */
@media (max-width: 900px) {
    .qa-content-wrapper {
        grid-template-columns: 1fr;
    }

    .qa-chat-panel {
        position: static;
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .qa-hero {
        padding: 50px 0 30px;
    }

    .qa-main-section {
        padding: 30px 0 50px;
    }
}

@media (max-width: 480px) {
    .qa-dropdown-header {
        padding: 14px 16px;
    }

    .qa-dropdown-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .qa-dropdown-header span {
        font-size: 0.9rem;
    }

    .qa-preset-question {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .qa-follow-up {
        flex-wrap: wrap;
    }
}
