:root {
    /* --- MONOCHROMATIC ROSE PALETTE (Calm & Organic) --- */

    /* Primary Tones */
    --c-primary: #C58F9A;
    /* Dusty Rose (Sophisticated, calm) */
    --c-secondary: #E8D5D8;
    /* Rose Mist (Soft background tint) */
    --c-accent: #8A5A63;
    /* Deep Mauve (Contrast text/buttons) */
    --c-highlight: #FDF6F7;
    /* Blush (Main background - NOT white) */
    --c-lilac: #D6CDEA;
    /* Kept for very subtle details if needed */

    /* Text */
    --c-heading: #5A4A4E;
    /* Warm Rose-Charcoal */
    --c-text: #6B5D60;
    /* Softened Brown/Gray */
    --c-text-light: #FFFFFF;

    /* Backgrounds */
    --c-bg-main: #FDF6F7;
    /* Blush - GLOBAL BACKGROUND */
    --c-bg-tint: #F2E6E8;
    /* Rose Mist - Visibly darker than Main */
    --c-bg-card: #FFFFFF;
    /* Pure White Cards */
    --c-bg-contrast: #E8D6D9;
    /* Deep Rose - For distinct "cut" sections */

    /* Functional */
    --c-border: #E8D5D8;
    --c-success: #A3C9A8;
    /* Muted Sage (Complementary) */
    --c-error: #C58F9A;
    /* Dusty Rose */

    /* Fonts */
    --font-heading: 'EB Garamond', serif;
    --font-subheading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Effects */
    --shadow-soft: 0 10px 30px rgba(197, 143, 154, 0.15);
    /* Rose-tinted shadow */
    --shadow-medium: 0 15px 40px rgba(90, 74, 78, 0.08);
    --shadow-large: 0 25px 50px rgba(90, 74, 78, 0.12);
    --shadow-inset: inset 0 2px 4px rgba(90, 74, 78, 0.05);

    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-md: 12px;
    --radius-lg: 24px;
}


/* --- BASE STYLES --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--c-bg-main);
    color: var(--c-text);
    line-height: 1.8;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--c-heading);
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

h3,
h4,
h5,
h6 {
    font-family: var(--font-subheading);
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 1.2rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--c-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- GENERAL LAYOUT & HELPERS --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-tint {
    background-color: var(--c-bg-tint);
    border-top: 1px solid rgba(197, 143, 154, 0.1);
    border-bottom: 1px solid rgba(197, 143, 154, 0.1);
}

.subheading {
    display: block;
    font-family: var(--font-subheading);
    color: var(--c-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Increased for elegance */
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

.text-center {
    text-align: center;
}

.section-title {
    margin-bottom: 3rem;
}

.learn-more-link {
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

/* --- ORGANIC BUTTONS --- */
.button-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
    color: #FFFFFF;
    font-family: var(--font-subheading);
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
}

.button-primary:hover {
    background-color: var(--c-accent);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--c-heading);
    font-family: var(--font-subheading);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--c-primary);
    /* Thicker organic border */
    transition: var(--transition-smooth);
}

.button-secondary:hover {
    background-color: var(--c-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* --- HEADER & NAVIGATION --- */
.top-bar {
    display: none;
}

.main-header {
    background-color: rgba(253, 246, 247, 0.9);
    /* Slightly more opaque background */
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(90, 74, 78, 0.15);
    /* Stronger, Rose-Charcoal shadow */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.main-header.scrolled {
    box-shadow: 0 5px 30px rgba(90, 74, 78, 0.2);
    /* Even stronger on scroll */
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 95%;
    /* Allow header to stretch wider than the main content */
}

.logo img {
    max-height: 55px;
    width: auto;
    transition: max-height 0.4s ease;
}

.main-header.scrolled .logo img {
    max-height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-subheading);
    color: var(--c-text);
    font-weight: 500;
}

.header-cta {
    margin-left: 2rem;
}

.header-cta .button-primary {
    padding: 10px 24px;
    box-shadow: var(--shadow-soft);
}

/* --- ENHANCED MEGA MENU (Corrected) --- */
.dropdown {
    position: static;
}

.dropdown-menu {
    display: block;
    /* Changed to block to control with opacity/visibility */
    position: absolute;
    top: 100%;
    /* FIX: Position it directly at the bottom of the parent */
    left: 50%;

    background-color: var(--c-bg-card);
    box-shadow: var(--shadow-medium);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 980px;

    opacity: 0;
    visibility: hidden;
    /* Menu is hidden by default */
    transform: translateX(-50%) translateY(10px);
    /* Start slightly lower for animation */
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
    /* Delay hiding visibility */
}

/* On hover, make the menu visible and animate it */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    /* Make it clickable */
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
}

.mega-menu-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.mega-menu-list li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.mega-menu-list li a:hover {
    background-color: var(--c-bg-main);
}

.menu-item-icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    color: var(--c-primary);
}

.menu-item-text span {
    display: block;
    font-family: var(--font-subheading);
    font-weight: 600;
    color: var(--c-heading);
}

.menu-item-text small {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--c-text);
}

.full-width-link {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--c-border);
}

.full-width-link a span {
    font-family: var(--font-subheading);
    font-weight: 600;
    color: var(--c-primary);
}

.dropdown .arrow {
    font-size: 0.7em;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--c-heading);
    /* Deep Rose-Charcoal Anchor */
    padding: 80px 0 20px 0;
    margin-top: 80px;
    color: var(--c-bg-tint);
    /* Light Rose Mist text for readability */
}

.main-footer .logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    /* Faint separator line */
    width: 100%;
}

.main-footer .logo img {
    max-height: 180px;
    /* Increased size as requested */
    width: auto;
    display: block;
}

.main-footer h4 {
    color: var(--c-primary);
    /* Dusty Rose Headings */
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* --- Social Icons --- */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent !important;
    /* Force transparent */
    color: var(--c-primary) !important;
    /* Force Pink Icon */
    transition: all 0.3s ease;
    border: 1px solid var(--c-primary);
    /* Pink Border */
}

.social-icon:hover {
    background-color: var(--c-primary) !important;
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 143, 154, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    /* Slightly smaller min-width to fit 4 cols */
    gap: 5rem;
    /* Increased gap significantly */
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column a {
    color: var(--c-bg-tint);
    /* Light text */
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #FFFFFF;
    /* White on hover */
    padding-left: 5px;
}

/* --- Account Dropdown (Small) --- */
.dropdown.account-dropdown {
    position: relative;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    /* Lighter separator for dark footer */
}

.dropdown.account-dropdown .dropdown-menu {
    width: 200px;
    left: auto;
    right: 0;
    transform: translateY(10px);
    padding: 1rem;
    max-width: none;
    text-align: left;
    background-color: var(--c-bg-card);
    /* Keep dropdown white */
}

.dropdown.account-dropdown:hover .dropdown-menu {
    transform: translateY(0);
}

.dropdown.account-dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown.account-dropdown li a {
    padding: 0.5rem;
    display: block;
    color: var(--c-heading);
    /* Dark text inside white dropdown */
    transition: color 0.2s;
}

.dropdown.account-dropdown li a:hover {
    color: var(--c-primary);
    background: transparent;
    padding-left: 0;
    /* Reset footer hover effect */
}

.footer-bottom a {
    color: var(--c-primary);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #FFFFFF;
}

/* ================================================= */
/* ===         HOME PAGE COMPLETE STYLES         === */
/* ================================================= */


/* --- HERO SECTION WITH IMAGE --- */
.hero-section-v2 {
    background: linear-gradient(180deg, var(--c-secondary) 0%, var(--c-highlight) 100%);
    padding: 120px 0;
    /* More breathing room */
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Organic Background Shape for Hero */
.hero-section-v2::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
    /* Align text to the left in the column */
}

.hero-headline {
    font-size: 3.5rem;
    color: var(--c-heading);
    text-shadow: none;
    /* No shadow needed on light background */
}

.hero-subtitle {
    font-size: 1.2rem;
    margin: 1.5rem 0 2.5rem 0;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-section-v2 .button-secondary {
    border-color: var(--c-heading);
    color: var(--c-heading);
}

.hero-section-v2 .button-secondary:hover {
    background-color: var(--c-heading);
    color: var(--c-text-light);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 950px;
    height: auto;
    border-radius: 16px;
    position: relative;
    /* To sit on top of the shape */
    z-index: 2;
    box-shadow: var(--shadow-large);
}

.hero-image-bg-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #FFC6C6;
    opacity: 0.3;
    border-radius: 16px;
    z-index: 1;
    transform: rotate(-8deg);
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-image-bg-shape {
    transform: rotate(3deg) scale(1.05);
    /* Gentle animation on hover */
}


/* --- STANDALONE FEATURE IMAGE SECTION --- */
.image-feature-section {
    padding-top: 0;
    /* Sits closer to the section above */
    padding-bottom: 50px;
}

.featured-image {
    width: 80%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-large);
}

.about-intro-section {
    background-color: var(--c-bg-contrast);
    /* Darker shade to distinguishing from previous section */
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Switched to equal columns */
    align-items: center;
    gap: 4rem;
}

.about-intro-image-wrapper {
    position: relative;
}

.about-intro-image {
    border-radius: 12px;
    overflow: hidden;
    height: 430px;
    width: 680px;
    box-shadow: var(--shadow-large);
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-image::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80%;
    height: 80%;
    border: 10px solid var(--c-primary);
    border-radius: 12px;
    z-index: -1;
    transition: var(--transition-smooth);
    opacity: 0.2;
}

.about-intro-image:hover::before {
    transform: translate(10px, 10px);
}

/* --- Why Choose Us Section --- */
.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.why-card {
    background-color: var(--c-bg-card);
    border-radius: var(--radius-lg);
    /* Soft, deep shadow replacing the border */
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Subtle glass edge */
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    /* Glassmorphism hint */
    backdrop-filter: blur(10px);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--c-primary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.why-card:hover {
    box-shadow: var(--shadow-large);
    transform: translateY(-8px);
}

.why-card:hover::before {
    opacity: 1;
}

.why-icon {
    margin: 0 auto 1.5rem auto;
    width: 80px;
    height: 80px;
    padding: 10px;
    border-radius: 50%;
    background-color: var(--c-bg-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background-color: var(--c-primary-light);
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Ensure secondary buttons are visible on white cards */
.why-card .button-secondary {
    border-color: var(--c-heading);
    color: var(--c-heading);
}

.why-card .button-secondary:hover {
    background-color: var(--c-heading);
    color: var(--c-text-light);
}

/* --- Testimonials Slider --- */
.testimonials-section-v2 {
    position: relative;
    padding: 100px 0;
}

.testimonials-slider {
    padding: 2rem 0;
}

.testimonial-card-v2 {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    margin: 1rem;
    border: 1px solid var(--c-bg-tint);
    position: relative;
    z-index: 1;
}

.testimonial-card-v2::after {
    content: '“';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    line-height: 1;
    color: var(--c-primary-light);
    opacity: 0.5;
    font-family: var(--font-heading);
    z-index: -1;
}

.testimonial-card-v2 p {
    font-family: var(--font-heading);
    /* Serif for elegance */
    color: var(--c-text);
    font-size: 1.35rem;
    /* Slightly smaller for elegance */
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author-v2 {
    font-family: var(--font-subheading);
    color: var(--c-accent);
    /* Bronze accent */
    font-weight: 700;
    margin-top: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--c-primary);
}

.swiper-pagination-bullet-active {
    background: var(--c-primary);
}

/* --- Appearances Section --- */
.appearances-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.appearance-card-v2 {
    display: block;
    color: var(--c-text);
    background: var(--c-bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.appearance-card-v2:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-8px);
}

.appearance-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.appearance-content-v2 {
    padding: 1.5rem;
}

.media-outlet {
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.appearance-content-v2 h3 {
    margin: 0.25rem 0 0 0;
}

/* --- Final CTA Section --- */
.final-cta-section {
    background-color: var(--c-bg-tint);
}

.final-cta-section h2 {
    color: var(--c-heading);
    font-size: 2.5rem;
}

.final-cta-section p {
    color: var(--c-text);
    max-width: 500px;
    margin: 1rem auto 2rem auto;
}

.final-cta-section .button-primary {
    background: var(--c-primary);
    color: var(--c-heading);
}

.final-cta-section .button-primary:hover {
    background: #8ec9d7;
}

/* --- On Scroll Animation --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================= */
/* ===         INTERACTIVE CALENDAR STYLES       === */
/* ================================================= */

/* --- BASE / DESKTOP STYLES (Default "Large" Look) --- */

.calendar-wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    /* Reduced from 3rem */
    width: 100%;
    max-width: 1000px;
    /* Reduced from 1200px */
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    /* Reduced from 3rem */
}

.cal-month-label {
    font-size: 1.8rem;
    /* Reduced from 2.22rem */
    margin: 0;
    color: var(--c-heading);
    font-weight: 700;
}

.cal-nav-btn {
    background: #f0f4f8;
    border: none;
    width: 44px;
    /* Reduced from 50px */
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--c-heading);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-nav-btn:hover {
    background: var(--c-primary);
    color: #fff;
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    /* Reduced from 15px */
}

.cal-days-container {
    display: contents;
}

.cal-day-header {
    text-align: center;
    font-weight: 700;
    color: #9aa0ac;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding-bottom: 10px;
    letter-spacing: 1px;
}

.cal-day {
    aspect-ratio: 1;
    border-radius: 12px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 1rem;
    /* Reduced from 1.2rem */
    color: var(--c-text);
    cursor: default;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
}

.cal-day.is-interactive:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.cal-day.empty {
    background: transparent;
    pointer-events: none;
}

.cal-day.today {
    border-color: var(--c-primary);
    background: rgba(142, 201, 215, 0.1);
}

.cal-day.is-interactive {
    cursor: pointer;
}

.cal-day.has-slots {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    color: var(--c-heading);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.cal-day.selected {
    background: var(--c-heading) !important;
    color: #fff !important;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cal-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--c-primary);
    border-radius: 50%;
    margin-top: 8px;
}

.cal-day.selected .cal-indicator {
    background-color: #fff;
}

.cal-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #888;
    font-size: 1.2rem;
}

.booking-split-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.booking-panel {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 100px;
    height: auto;
    min-height: 450px;
}

/* --- MEDIA QUERIES --- */

/* Ultra-wide Desktop Alignment */
@media (min-width: 1200px) {
    .booking-split-layout {
        grid-template-columns: 1.5fr 400px;
        gap: 4rem;
    }

    .container {
        max-width: 1400px;
    }
}

/* Mobile Responsiveness Overrides */
@media(max-width: 992px) {
    .calendar-wrapper {
        padding: 1rem;
        max-width: 100%;
        border-radius: 12px;
        margin: 0;
    }

    .booking-split-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .booking-panel {
        position: static;
        min-height: auto;
        padding: 1.5rem;
    }

    .calendar-header {
        margin-bottom: 1.5rem;
    }

    .cal-month-label {
        font-size: 1.4rem;
    }

    .cal-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .calendar-grid {
        gap: 6px;
    }

    .cal-day {
        border-radius: 8px;
        font-size: 0.9rem;
    }

    .cal-day.selected {
        transform: scale(1);
        /* Disable scale effect on mobile */
    }

    .cal-day-header {
        font-size: 0.7rem;
        padding-bottom: 5px;
    }

    .cal-indicator {
        width: 4px;
        height: 4px;
        margin-top: 3px;
    }

    .cal-loading {
        font-size: 1rem;
        padding: 1rem;
    }
}

@media(max-width: 900px) {
    .booking-split-layout {
        grid-template-columns: 1fr;
    }

    .calendar-wrapper {
        padding: 1.5rem;
    }

    .cal-day {
        border-radius: 8px;
        font-size: 1rem;
    }
}

/* ================================================= */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--c-heading);
    transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav.mobile-active,
    .header-cta.mobile-active {
        display: block;
    }

    .main-nav.mobile-active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--c-bg-main);
        z-index: 999;
        padding-top: 80px;
        padding-bottom: 100px;
        overflow-y: auto;
        text-align: left;
        /* Changed from center */
    }

    .main-nav.mobile-active .nav-links {
        flex-direction: column;
        width: 100%;
        padding: 1rem;
        gap: 0.25rem;
    }

    .main-nav.mobile-active .nav-links a {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
        border-bottom: 1px solid rgba(197, 143, 154, 0.1);
        width: 100%;
    }

    .dropdown,
    .has-dropdown {
        position: static !important;
        width: 100%;
    }

    .help-menu-list li a i,
    .mega-menu-list li a i {
        color: var(--c-primary);
        width: auto;
        text-align: center;
        font-size: 2rem !important;
        margin-bottom: 0.5rem;
    }

    .dropdown-menu {
        position: static !important;
        display: none !important;
        opacity: 0;
        visibility: hidden;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin: 0.5rem 0;
        /* Left-aligned margin */
        transform: none !important;
        left: 0 !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        transition: none;
        overflow: hidden;
    }

    .has-dropdown.is-open>.dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }

    .header-cta.mobile-active {
        position: fixed;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }

    /* Hero section responsive updates */
    .hero-section-v2 .hero-buttons {
        flex-direction: column;
        /* Stack the buttons vertically */
        align-items: center;
        /* Center them in the column */
        gap: 1rem;
    }

    .hero-section-v2 .button-primary,
    .hero-section-v2 .button-secondary {
        width: 100%;
        max-width: 300px;
        /* Give them a max-width so they don't look too wide */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        /* Stack the columns */
        text-align: center;
        /* Center everything on mobile */
    }

    .hero-text {
        order: 2;
        /* Text appears after the image */
        text-align: center;
    }

    .hero-image-wrapper {
        order: 1;
        /* Image appears first */
        margin-bottom: 3rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    /* Mega menu specific overrides for mobile */
    .has-dropdown.is-open>.dropdown-menu {
        display: flex !important;
        /* Flex for mega menu list */
    }

    .mega-menu-list {
        grid-template-columns: 1fr;
        gap: 0.25rem;
        width: 100%;
    }

    .mega-menu-list li a {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        padding: 1rem;
        gap: 1rem;
        width: 100%;
    }

    .menu-item-icon {
        width: 50px;
        height: 50px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-item-icon i,
    .menu-item-icon img {
        font-size: 2rem !important;
        max-height: 50px;
        width: auto;
    }

    .mega-menu-list li a .menu-item-text span {
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .menu-item-text small {
        display: block !important;
        /* Re-enable descriptions for a premium look */
        font-size: 0.85rem;
        opacity: 0.8;
        line-height: 1.4;
    }

    .full-width-link {
        border: none;
        padding: 0.5rem;
        margin-top: 0.5rem;
    }

    /* --- RESPONSIVE DASHBOARD FIXES --- */
    .mobile-stack-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }

    .mobile-stack-item a {
        width: 100% !important;
        text-align: center;
    }

    .header-buttons-group {
        flex-direction: column;
        width: 100%;
    }

    .header-buttons-group a {
        width: 100% !important;
        margin-left: 0 !important;
        text-align: center;
    }

    .section {
        padding: 60px 0;
        /* Reduced from 100px to fix white space issues on small screens */
    }

    .section-title {
        margin-bottom: 2rem;
    }

    /* --- FIX: About Intro Section Mobile --- */
    .about-intro-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 3rem;
        text-align: center;
    }

    .about-intro-image {
        width: 100%;
        /* Fluid width */
        height: auto;
        /* Maintain aspect ratio */
        max-width: 100%;
        /* Prevent overflow */
    }
}

/* ================================================= */
/* ===         ABOUT US PAGE STYLES              === */
/* ================================================= */

/* --- About Page Hero Section --- */
.about-hero-section {
    background-color: #e1e1e1;
    padding: 100px 0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.about-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.about-hero-content .page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    margin-left: 0;
    /* Override default centered margin */
}

.about-hero-image-wrapper {
    position: relative;
    display: grid;
    place-items: center;
}

.about-hero-image {
    width: 100%;
    max-width: 750px;
    height: 500px;
    border-radius: 16px;
    box-shadow: var(--shadow-large);
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative shape behind image */
.about-hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--c-primary);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(40px);
    transform: scale(1.2);
}

.about-page2 {
    box-align: center;
    max-width: 650px;
    text-align: center;
}

/* --- Main About Content Grid (DEFINITIVE CENTERING FIX) --- */
.about-page-main-content {
    padding-bottom: 0;
}

.about-page-grid {
    /* 1. Center the container on the page */
    max-width: 1100px;
    margin: 0 auto;

    /* 2. Use Flexbox for the internal layout */
    display: flex;
    flex-wrap: wrap;
    /* Allows wrapping on mobile */
    align-items: center;
    gap: 4rem;
}

.about-page-content,
.about-page-image {
    /* 3. Tell both children to take up equal space */
    flex: 1;
    min-width: 320px;
    /* Prevents over-squishing before wrapping */
}

.about-page-image img {
    width: 100%;
    /* Ensure image fills its container */
    border-radius: 12px;
    box-shadow: var(--shadow-large);
}

/* --- Team Section & Profile Cards --- */
.team-section {
    /* section-tint is already applied in HTML */
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background-color: #e7e7e7;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    overflow: hidden;
    /* Important for the image radius */
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.team-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
    /* Focus on the top of the image */
}

.team-card-content {
    padding: 1.5rem;
}

.team-card-content h3 {
    font-family: var(--font-heading);
    color: var(--c-heading);
    font-size: 1.8rem;
    margin: 0;
}

.team-card-title {
    font-family: var(--font-subheading);
    color: var(--c-primary);
    font-weight: 600;
    margin: 0.5rem 0 1.5rem 0;
}

.team-button {
    padding: 10px 28px;
    font-size: 0.8rem;
}

/* --- Responsive Adjustments for About Page --- */
@media (max-width: 768px) {
    .about-page-grid {
        grid-template-columns: 1fr;
    }

    .about-page-image {
        order: -1;
        /* Puts image on top on mobile */
        margin-bottom: 2rem;
    }
}

/* --- Centered Text Block Style --- */
.centered-text-content {
    max-width: 850px;
    /* Constrains the width for better readability */
    margin: 0 auto;
    /* The classic way to center a block element */
    text-align: center;
    /* Centers the headings and paragraphs */
}

.centered-text-content .subheading {
    margin-bottom: 1rem;
}

.centered-text-content h2 {
    margin-bottom: 2rem;
}

.centered-text-content p {
    font-size: 1.1rem;
    /* Slightly larger text for emphasis */
    line-height: 1.9;
}

/* --- Core Principles Card Grid Styles --- */
.about-principles-section {
    /* section-tint is applied in HTML */
    padding-top: 100px;
    padding-bottom: 100px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two cards per row on desktop */
    gap: 2rem;
    margin-top: 3rem;
}

.principle-card {
    background-color: var(--c-bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    text-align: center;
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.principle-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem auto;
    color: var(--c-primary);
}

.principle-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* --- Responsive adjustment for the principles grid --- */
@media (max-width: 768px) {
    .principles-grid {
        grid-template-columns: 1fr;
        /* Stack to one column on mobile */
    }
}

/* --- ENHANCED TEAM CARD STYLES --- */

.team-card-snippet {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1rem 0 1.5rem 0;
    color: var(--c-text);
    text-align: left;
    min-height: 90px;
    /* Ensures cards have a similar height */
}

.team-card-content h3 {
    text-align: left;
}

.team-card-title {
    text-align: left;
}

.qualifications {
    text-align: left;
    margin-bottom: 2rem;
}

.qualifications ul {
    list-style-type: none;
    padding-left: 0;
}

.qualifications li {
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    color: var(--c-text);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

/* The fancy bullet point */
.qualifications li::before {
    content: '✓';
    /* Checkmark character */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--c-primary);
    font-weight: 600;
}

.team-button {
    width: 100%;
}

/* ================================================= */
/* ===     INDIVIDUAL PROFILE PAGE STYLES        === */
/* ================================================= */

/* --- Profile Hero Section --- */
.profile-hero-section {
    padding: 80px 0;
    text-align: center;
}

.profile-hero-content h1 {
    font-size: 3.5rem;
}

.profile-hero-title {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    color: var(--c-text);
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

/* --- Main Profile Layout --- */
.profile-main-grid {
    display: grid;
    /* Sidebar is 1/3, content is 2/3 */
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.profile-image-container {
    position: sticky;
    /* The image will "stick" as you scroll */
    top: 140px;
    /* 140px from the top of the viewport */
}

.profile-image-container img {
    border-radius: 12px;
    box-shadow: var(--shadow-large);
}

.profile-text-block {
    margin-bottom: 3rem;
    /* Space between each block of text */
}

.profile-text-block h2 {
    font-size: 2.2rem;
    color: var(--c-heading);
    margin-bottom: 1rem;
}

.profile-text-block h3 {
    font-size: 1.6rem;
    color: var(--c-heading);
    margin-bottom: 1rem;
}

/* --- Focus & Qualifications Lists --- */
.focus-list,
.qualifications-detailed {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns for a clean look */
    gap: 0.75rem;
}

.focus-list li,
.qualifications-detailed li {
    font-family: var(--font-subheading);
    font-size: 1rem;
    padding-left: 1.75rem;
    position: relative;
}

.focus-list li::before,
.qualifications-detailed li::before {
    content: '›';
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--c-primary);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* --- Profile Page Responsive Adjustments --- */
@media (max-width: 992px) {
    .profile-main-grid {
        grid-template-columns: 1fr;
        /* Stack columns on smaller screens */
    }

    .profile-image-container {
        position: static;
        /* Unstick the image on mobile */
        max-width: 400px;
        margin: 0 auto 3rem auto;
    }

    .focus-list,
    .qualifications-detailed {
        grid-template-columns: 1fr;
        /* Single column list on mobile */
    }
}

/* --- Profile Page Quote Style --- */
.profile-quote {
    background-color: var(--c-bg-tint);
    border-left: 4px solid var(--c-primary);
    padding: 1.5rem 2rem;
    margin: 1rem 0 2rem 0;
    border-radius: 0 8px 8px 0;
}

.profile-quote p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--c-heading);
    margin-bottom: 1rem;
}

.profile-quote footer {
    font-family: var(--font-subheading);
    font-weight: 600;
    color: var(--c-text);
    text-align: right;
}

/* --- Profile Page Bottom Navigation --- */
.profile-navigation-section {
    padding: 60px 0;
    border-top: 1px solid var(--c-border);
}

.profile-navigation-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link-wrapper {
    flex-basis: 48%;
    /* Each link takes up slightly less than half the space */
}

.next-link-wrapper {
    text-align: right;
}

.profile-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    max-width: 100%;
}

.profile-nav-link:hover {
    background-color: var(--c-bg-tint);
    box-shadow: var(--shadow-soft);
}

.profile-nav-link .arrow {
    font-size: 2.5rem;
    color: var(--c-primary);
    line-height: 1;
}

.profile-nav-link .label {
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    color: var(--c-text);
    display: block;
}

.profile-nav-link .name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--c-heading);
    display: block;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .profile-nav-link .name {
        font-size: 1.2rem;
    }

    .profile-nav-link {
        gap: 1rem;
    }
}

/* ================================================= */
/* ===         THERAPY SERVICES PAGE STYLES      === */
/* ================================================= */

/* --- Service Cards Grid --- */
.services-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card-link {
    display: block;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    color: var(--c-text);
    transition: var(--transition-smooth);

}

.service-card-link:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-card-link h3 {
    color: var(--c-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card-link p {
    margin-bottom: 1.5rem;
}

.service-card-link .learn-more-link {
    font-weight: 700;
}

/* --- Assistance List Section --- */
.assistance-list-wrapper {
    max-width: 1000px;
    margin: 3rem auto 0 auto;
}

.assistance-list {
    list-style: none;
    padding: 0;
    display: grid;
    /* 3 columns on desktop, 2 on tablet, 1 on mobile */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem 2rem;
}

.assistance-list li {
    font-family: var(--font-subheading);
    font-size: 1.05rem;
    padding-left: 1.75rem;
    position: relative;
}

.assistance-list li::before {
    content: '›';
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--c-primary);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.service-card-image {
    width: 40%;
    height: auto;
    align-self: center;
}

/* ================================================= */
/* ===     INDIVIDUAL SERVICE PAGE TEMPLATE      === */
/* ================================================= */

.service-main-section {
    padding-top: 60px;
    /* Bring it closer to the hero */
}

.service-main-grid {
    display: grid;
    /* Main content is ~2/3, sidebar is ~1/3 */
    grid-template-columns: 2.2fr 1fr;
    gap: 4rem;
}

.service-text-block {
    margin-bottom: 3rem;
}

.service-text-block h2 {
    font-size: 2.2rem;
    color: var(--c-heading);
    margin-bottom: 1rem;
}

.service-text-block h3 {
    font-size: 1.6rem;
    color: var(--c-heading);
    margin-bottom: 1rem;
}

.service-text-block .focus-list {
    grid-template-columns: 1fr;
    /* Single column list is better here */
}

/* --- Service Page Sidebar --- */
.service-sidebar {
    position: sticky;
    top: 140px;
    align-self: start;
    /* Prevents stretching */
}

.sidebar-widget {
    background-color: #e4e4e4;
    box-shadow: 0 10px 25px rgba(84, 84, 84, 0.274);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 1rem;
}

.service-list-widget {
    list-style: none;
    padding: 0;
}

.service-list-widget li a {
    display: block;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    font-family: var(--font-subheading);
    font-weight: 600;
    color: var(--c-text);
    transition: var(--transition-smooth);
}

.service-list-widget li a:hover {
    background-color: var(--c-bg-card);
    color: var(--c-primary);
}

/* Style for the current page's link */
.service-list-widget li a.active {
    background-color: var(--c-primary);
    color: var(--c-heading);
    box-shadow: var(--shadow-soft);
}

.sidebar-cta {
    background-color: #e4e4e4;
    color: #FFFFFF;
}

.sidebar-cta h4 {
    color: #595f6c;
}

.sidebar-cta p {
    color: #595f6c;
}

.sidebar-cta .button-primary {
    width: 100%;
    text-align: center;
}

/* --- Service Page Responsive Adjustments --- */
@media (max-width: 992px) {
    .service-main-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }

    .service-sidebar {
        position: static;
        /* Unstick on mobile */
        order: -1;
        /* Show sidebar first on mobile */
        margin-bottom: 3rem;
    }
}

/* ================================================= */
/* ===         DEFINITIVE FAQ PAGE STYLES        === */
/* ================================================= */

/* --- Main Layout & Sidebar --- */
.faq-main-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.faq-accordion-section {
    margin-bottom: 4rem;
}

.faq-accordion-section h2,
.faq-article-section h2 {
    text-align: left;
    /* Ensure headings in the main content are left-aligned */
}

.faq-sidebar {
    position: sticky;
    top: 140px;
}

/* --- Corrected Accordion Styles --- */
.accordion-container {
    margin-top: 2rem;
}

.faq-item {
    background-color: var(--c-bg-card);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 1.5rem;
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-heading);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--c-primary);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-question.active .faq-icon {
    transform: rotate(135deg);
}

.faq-question.active .faq-icon::after {
    transform: translateX(-50%) scale(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    line-height: 1.8;
}

/* --- Corrected In-Depth Guide Styles --- */
.faq-article-section {
    background-color: var(--c-bg-tint);
    padding: 3rem;
    border-radius: 12px;
}

.faq-article-section .guide-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.faq-article-section .guide-image-container {
    position: static;
}

.guide-image-container img {
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.guide-point {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--c-border);
}

.guide-point:last-child {
    border-bottom: none;
}

.guide-point h4 {
    font-size: 1.3rem;
    color: var(--c-heading);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.guide-point h4::before {
    content: '›';
    font-size: 2rem;
    color: var(--c-primary);
    margin-right: 0.75rem;
}

.guide-point p {
    margin: 0;
    padding-left: 2.25rem;
}

/* --- Responsive styles for FAQ Page --- */
@media (max-width: 992px) {
    .faq-main-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;
        order: -1;
        margin-bottom: 3rem;
    }
}


/* ================================================= */
/* ===            FEES PAGE STYLES               === */
/* ================================================= */
.fees-main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* Main content is wider */
    gap: 4rem;
    align-items: flex-start;
}

.fees-details-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.fees-details-content h3 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.fees-sidebar {
    position: sticky;
    top: 140px;
    box-shadow: rgba(82, 88, 102, 0.05);
}

.fees-sidebar .sidebar-widget {
    background-color: var(--c-bg-tint);
    border-radius: 12px;
    padding: 2rem;
}

.key-info-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.key-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-family: var(--font-subheading);
    font-weight: 500;
}

.key-info-list li svg {
    width: 28px;
    height: 28px;
    color: var(--c-primary);
    flex-shrink: 0;
    /* Prevents icon from squishing */
}

/* Responsive styles for fees page */
@media (max-width: 992px) {
    .fees-main-layout {
        grid-template-columns: 1fr;
        /* Stack columns on mobile */
    }

    .fees-sidebar {
        position: static;
    }
}

/* ================================================= */
/* ===       UPDATED CONTACT PAGE STYLES         === */
/* ================================================= */
.contact-main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

/* --- Contact Form Styles --- */
.contact-form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-subheading);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--c-heading);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e4e4e4;
    box-shadow: 0 10px 30px rgba(53, 55, 59, 0.184);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--c-bg-card);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(162, 210, 223, 0.3);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
}

/* --- Contact Sidebar --- */
.contact-sidebar {
    position: sticky;
    top: 140px;
}

/* --- Admin Team Grid --- */
.admin-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    /* Constrain the width */
    margin: 3rem auto 0 auto;
    /* Center the grid */
}

/* --- Responsive styles for contact page --- */
@media (max-width: 992px) {
    .contact-main-layout {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        position: static;
        margin-top: 4rem;
    }
}

@media (max-width: 768px) {
    .admin-team-grid {
        grid-template-columns: 1fr;
        /* Stack admin cards on mobile */
    }
}


/* ================================================= */
/* ===         CONSENT FORM STYLES               === */
/* ================================================= */
.consent-form-section .container {
    max-width: 900px;
    /* Constrain the width for better readability */
}

.form-container {
    background-color: var(--c-bg-card);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2.5rem;
}

/* --- CORRECTED CONSENT FORM PROGRESS BAR --- */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-dot {
    width: 24px;
    height: 24px;
    background-color: var(--c-bg-card);
    border: 2px solid var(--c-border);
    border-radius: 50%;
    margin: 0 auto 0.5rem auto;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.step-label {
    font-family: var(--font-subheading);
    font-weight: 500;
    font-size: 0.9rem;
    color: #aaa;
    transition: color 0.3s ease;
}

/* Connecting Line - Base */
.progress-bar::before {
    content: '';
    position: absolute;
    top: 12px;
    /* Vertically centers the line with the 24px dots */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--c-border);
    z-index: 1;
}

/* Progress Line - Active */
.progress-bar .progress-line {
    position: absolute;
    top: 12px;
    left: 0;
    width: 0;
    /* Will be set by JS */
    height: 3px;
    background-color: var(--c-primary);
    z-index: 2;
    transition: width 0.4s ease;
}

/* Active State Styles */
.progress-step.active .step-dot {
    background-color: var(--c-primary);
    border-color: var(--c-primary);
}

.progress-step.active .step-label {
    color: var(--c-heading);
    font-weight: 600;
}

/* Completed State Styles (for steps behind the active one) */
.progress-step.completed .step-dot {
    background-color: var(--c-primary);
    border-color: var(--c-primary);
}

.progress-step.completed .step-label {
    color: var(--c-text);
}

/* --- Form Steps --- */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.step-title {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

    .step-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    /* Progress bar adjustments for mobile */
    .progress-bar {
        margin-bottom: 2rem;
    }

    .step-label {
        font-size: 0.7rem;
        display: none;
        /* Hide labels to prevent squashing */
    }

    .progress-step.active .step-label {
        display: block;
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        white-space: nowrap;
    }

    .step-dot {
        width: 20px;
        height: 20px;
    }

    .progress-bar::before,
    .progress-bar .progress-line {
        top: 10px;
    }
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.checkbox-group {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.form-group.checkbox-group label {
    margin-bottom: 0;
}

hr {
    border: 0;
    height: 1px;
    background-color: var(--c-border);
    margin: 2rem 0;
}

.policy-box {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--c-border);
    padding: 1rem;
    border-radius: 8px;
    background-color: var(--c-bg-main);
    margin-bottom: 1.5rem;
}

/* --- Signature Pad --- */
.signature-pad-wrapper {
    margin: 2rem 0;
}

.signature-pad {
    border: 2px dashed var(--c-border);
    border-radius: 8px;
    width: 100%;
    height: 200px;
    cursor: crosshair;
}

.clear-signature-btn {
    margin-top: 1rem;
    background: none;
    border: none;
    color: var(--c-primary);
    font-family: var(--font-subheading);
    font-weight: 600;
    cursor: pointer;
}

/* --- Form Navigation --- */
.form-navigation {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--c-border);
    padding-top: 2rem;
}

#prevBtn,
#submitBtn {
    display: none;
    /* Hidden by default */
}

/* --- Consent Form Nested List Styles --- */
.policy-box ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 1rem;
}

.policy-box ul li::before {
    content: '–';
    /* En dash for first-level bullets */
    position: absolute;
    left: 0;
    color: var(--c-primary);
    font-weight: bold;
}

.policy-box ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 0.5rem;
}

.policy-box .nested-list {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.policy-box .nested-list li::before {
    content: '›';
    /* Arrow for second-level bullets */
    font-weight: bold;
}

/* ================================================= */
/* ===    DEFINITIVE CONSENT FORM STYLES         === */
/* ================================================= */
.form-static-header {
    text-align: center;
    padding: 1rem 1rem 2rem 1rem;
    border-bottom: 1px solid var(--c-border);
    margin-bottom: 1rem;
}

.form-static-header h4 {
    margin-bottom: 0.5rem;
}

.form-static-header p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.small-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #888;
}

.form-group label input[type="text"] {
    border: none;
    border-bottom: 1px solid var(--c-border);
    border-radius: 0;
    padding: 0.25rem;
    margin: 0 0.5rem;
    box-shadow: none;
    text-align: center;
}

.form-group label input[type="text"]:focus {
    border-color: var(--c-primary);
    box-shadow: none;
}

/* --- UPDATED: Policy Box List Styles --- */
.policy-box ul {
    list-style: none;
    padding: 0;
    /* Remove default padding */
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    /* Space between list items */
}

.policy-box ul li {
    font-family: var(--font-body);
    /* Ensure consistent font */
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.8;
}

.policy-box ul li::before {
    content: '›';
    /* Use the same fancy arrow */
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--c-primary);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.policy-box .nested-list {
    margin-top: 0.75rem;
    padding-left: 1rem;
    /* Indent nested lists */
}

.policy-box .nested-list-deep {
    margin-top: 0.75rem;
    padding-left: 1rem;
    /* Further indent deeply nested lists */
}

/* --- Form Status Messages --- */
#form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
    /* Hidden by default */
    font-weight: 500;
}

#form-status.status-sending {
    display: block;
    background-color: #e9ecef;
    color: var(--c-text);
}

#form-status.status-success {
    display: block;
    background-color: #d1e7dd;
    /* A gentle green */
    color: #0f5132;
}

#form-status.status-error {
    display: block;
    background-color: #f8d7da;
    /* A gentle red */
    color: #842029;
}


/* ================================================= */
/* ===   DEFINITIVE BLOG & POST STYLES (FIXED)   === */
/* ================================================= */
.blog-grid-section {
    background-color: var(--c-bg-tint);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* TWO-COLUMN LAYOUT */
    gap: 2.5rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background-color: var(--c-bg-card);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    color: var(--c-text);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.blog-card-image img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.blog-card h3 {
    font-size: 1.5rem;
    color: var(--c-heading);
    margin: 0.5rem 0 1rem 0;
}

.blog-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* --- Single Post Article Styles --- */
.single-post-section {
    padding-top: 60px;
}

.article-container {
    max-width: 800px;
}

.post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.post-header h1 {
    font-size: 3.2rem;
    line-height: 1.2;
}

.post-meta {
    font-family: var(--font-subheading);
    color: var(--c-text);
    margin-top: 1rem;
}

.post-featured-image {
    margin-bottom: 3rem;
}

.post-featured-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--c-text);
}

.post-content h2,
.post-content h3,
.post-content h4 {
    color: var(--c-heading);
    margin: 2.5rem 0 1.5rem 0;
    line-height: 1.4;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content a {
    text-decoration: underline;
    font-weight: 600;
}

.post-content blockquote {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 4px solid var(--c-primary);
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--c-heading);
}

.post-content ul,
.post-content ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.post-content li {
    margin-bottom: 0.75rem;
}

.post-divider {
    border: 0;
    height: 1px;
    background-color: var(--c-border);
    margin: 4rem auto;
}

/* --- Redesigned Comments Section --- */
.comments-section h3 {
    margin-bottom: 2rem;
    color: var(--c-heading);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item {
    border: 1px solid var(--c-border);
    background-color: var(--c-bg-card);
    padding: 1.5rem;
    border-radius: 8px;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--c-bg-tint);
    padding: 8px;
    color: var(--c-primary);
}

.comment-author-info {
    line-height: 1.3;
}

.comment-author {
    font-family: var(--font-subheading);
    font-weight: 600;
    color: var(--c-heading);
    display: block;
}

.comment-date {
    font-size: 0.85rem;
    color: #888;
}

.comment-body p {
    margin: 0;
    line-height: 1.7;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
    /* ... (all previous @media rules) ... */
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .post-header h1 {
        font-size: 2.5rem;
    }
}


/* --- Single Post Hero Header (Inspired Layout) --- */
.post-hero-header {
    position: relative;
    padding: 8rem 0;
    text-align: center;
    color: var(--c-text-light);
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 16px 16px;
}

.post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(82, 88, 102, 0.8), rgba(82, 88, 102, 0.6));
    border-radius: 0 0 16px 16px;
}

.post-hero-header .container {
    position: relative;
    z-index: 2;
}

.post-hero-header h1 {
    font-size: 3.5rem;
    color: var(--c-text-light);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.post-meta {
    font-family: var(--font-subheading);
    color: var(--c-text-light);
    opacity: 0.9;
    margin-top: 1rem;
}

/* --- NEW: Single Post Body & Content (Inspired Layout) --- */
.single-post-body {
    background-color: var(--c-bg-card);
    border-radius: 16px;
    padding: 4rem 0;
    margin: -120px auto 0 auto;
    /* Pulls the content up over the hero image */
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    /* Limit width on very large screens */
}

.article-container {
    max-width: 800px;
}

/* --- Responsive Styles for Blog --- */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .post-hero-header h1 {
        font-size: 2.5rem;
    }

    .single-post-body {
        padding: 2rem 0;
        margin-top: -80px;
    }
}

/* ================================================= */
/* ===      RESTORED MOBILE RESPONSIVENESS       === */
/* ================================================= */

/* Toggle Button Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--c-heading);
    transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Main Mobile Media Query */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    /* Navigation Visibility */
    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav.mobile-active,
    .header-cta.mobile-active {
        display: block;
    }

    /* Mobile Menu Drawer - SOLID BACKGROUND FIX */
    .main-nav.mobile-active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--c-bg-card) !important;
        /* Use Card White */
        background-color: var(--c-bg-card) !important;
        opacity: 1 !important;
        backdrop-filter: none !important;
        z-index: 999;
        padding-top: 100px;
        padding-bottom: 2rem;
        /* Add breathing room at bottom */
        text-align: left;
        /* FIX: Left Align */
        overflow-y: auto;
        /* Enable scrolling */
    }

    .main-nav.mobile-active .nav-links {
        flex-direction: column;
        width: 100%;
        padding: 1rem;
        gap: 0.5rem;
        /* Reduced gap */
        align-items: flex-start;
        /* FIX: Align items left */
    }

    .main-nav.mobile-active .nav-links a {
        font-size: 1.5rem;
        padding: 0.5rem;
        /* Reduced padding */
        text-align: left;
        /* FIX: Left Align */
        width: 100%;
        /* FIX: Full width */
        border-bottom: 1px solid var(--c-border);
        /* FIX: Separator */
    }

    /* Dropdown/Mega Menu on Mobile */
    .dropdown-menu {
        position: static;
        display: flex;
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0.5rem 0 0 1rem;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-width: 100%;
        width: 100%;
    }

    .mega-menu-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        /* Increased gap slightly for breathing room */
    }

    .mega-menu-list li a {
        padding: 0.75rem 0.5rem;
        /* More vertical padding for touch targets */
        text-align: left;
        /* Left align text */
        display: flex;
        align-items: center;
        /* Vertically center icon and text */
        justify-content: flex-start;
        border-bottom: 1px solid var(--c-border);
        /* Subtle separator */
    }

    /* Make the last item not have a border if preferred, or keep it for consistency */
    .mega-menu-list li:last-child a {
        border-bottom: none;
    }

    /* Smaller Icons for Mobile */
    .menu-item-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
        /* Space between icon and text */
    }

    .menu-item-text span {
        font-size: 1.1rem;
        /* Readable font size */
    }

    .menu-item-text small {
        display: none;
    }

    .full-width-link {
        border: none;
        padding: 0.5rem;
        margin-top: 0.5rem;
    }

    /* Header CTA on Mobile */
    .header-cta.mobile-active {
        position: fixed;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }

    /* Hero Section Responsive */
    .hero-section-v2 .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-section-v2 .button-primary,
    .hero-section-v2 .button-secondary {
        width: 100%;
        max-width: 300px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
        text-align: center;
    }

    .hero-image-wrapper {
        order: 1;
        margin-bottom: 3rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    /* About Intro Section Fix */
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-intro-image {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    /* FIX: Profile Hero Mobile Layout (Stacking) */
    .about-hero-grid {
        display: flex !important;
        /* Use Flexbox for easy reordering */
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .about-hero-content {
        order: 2;
        /* Text comes Second */
    }

    .hero-image-wrapper {
        order: 1;
        /* Image comes First */
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .profile-text-block h2,
    .profile-text-block h3 {
        text-align: center;
    }

    .focus-list {
        text-align: left;
        /* Keep list left aligned even if container is centered */
        display: inline-block;
        /* Helps centering the block */
        margin: 0 auto;
    }

    /* FIX: Profile Main Content Stack */
    .profile-main-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }

    .profile-sidebar {
        /* Sidebar contains portrait. Usually want to see who it is. */
        /* HTML order: Sidebar (Image), Content (Text). 
           So Image comes first naturally. Good. */
        margin-bottom: 2rem;
        text-align: center;
    }

    .profile-image-container {
        position: static;
        /* Remove sticky on mobile */
        max-width: 350px;
        margin: 0 auto;
    }
}

/* ================================================= */
/* ===           SOCIAL MEDIA STYLES             === */
/* ================================================= */

/* --- Footer Social Icons --- */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--c-bg-card);
    /* Light background */
    color: var(--c-heading);
    border-radius: 50%;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.social-icon:hover {
    background-color: var(--c-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* --- Instagram Feed Section --- */
.instagram-section {
    padding: 80px 0;
    background-color: var(--c-bg-main);
    /* Blush background to avoid plain white */
}

.insta-profile-header {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.insta-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--c-primary);
    padding: 3px;
    /* Gap between border and image */
}

.insta-header-text h3 {
    font-size: 1.5rem;
    color: var(--c-heading);
    margin: 0.5rem 0;
}

.insta-stats {
    display: flex;
    gap: 1.5rem;
    color: var(--c-text);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    justify-content: center;
}

.insta-bio {
    font-size: 0.9rem;
    color: var(--c-text-light);
    margin-bottom: 1rem;
}

.insta-feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns on desktop */
    gap: 1.5rem;
}

.insta-post {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    /* Square posts */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-icon {
    font-size: 2rem;
    color: #fff;
}

.insta-post:hover .insta-overlay {
    opacity: 1;
}

.insta-post:hover img {
    transform: scale(1.05);
    /* Zoom effect */
}

/* Responsiveness */
@media (max-width: 768px) {
    .insta-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on mobile */
        gap: 1rem;
    }
}

/* ================================================= */
/* ===         PARTNERSHIPS SECTION STYLES       === */
/* ================================================= */

.partnerships-section {
    padding-bottom: 80px;
    background-color: var(--c-bg-main);
    /* Reset to light blush to distinguish from Appearances (Tint) */
    border-top: 1px solid var(--c-border);
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.partnership-card {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.partnership-brand img {
    /* Removed grayscale filter */
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    /* Added radius for better look */
    margin-bottom: 1rem;
    object-fit: cover;
    max-height: 300px;
    /* Limit height so they don't dominate */
}

/* Removed hover effect since images are now always color */

.partnership-content h3 {
    font-size: 1.3rem;
    color: var(--c-heading);
    margin-bottom: 0.75rem;
}

.partnership-content p {
    font-size: 0.95rem;
    color: var(--c-text);
    line-height: 1.6;
}

/* --- TOGGLE SWITCH --- */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    margin-right: 10px;
    vertical-align: middle;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked+.toggle-slider {
    background-color: var(--c-primary);
}

input:checked+.toggle-slider:before {
    transform: translateX(22px);
}

.toggle-label {
    vertical-align: middle;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-heading);
    cursor: pointer;
}

/* --- JOURNAL & TIMELINE STYLES --- */
.journal-controls {
    background: #f8f9fa;
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--c-border);
}

.journal-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid #e1e1e1;
    margin-top: 2rem;
}

.journal-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.journal-card::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 1.5rem;
    width: 14px;
    height: 14px;
    background: var(--c-primary);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #e1e1e1;
}

.journal-date {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.journal-content {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--c-text);
    line-height: 1.7;
}

.journal-footer {
    border-top: 1px solid #f1f1f1;
    margin-top: 1.2rem;
    padding-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

/* Empty State Styling */
.empty-journal {
    text-align: center;
    padding: 4rem 2rem;
    background: #f9f9f9;
    border-radius: 16px;
    border: 2px dashed #ddd;
    color: #999;
}

/* --- JOURNAL SPEECH BUBBLE UPDATE --- */
.journal-controls {
    background: #eef2f5 !important;
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #dae1e7 !important;
}

/* --- JOURNAL & TIMELINE STYLES --- */
.journal-controls {
    background: #f8f9fa;
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--c-border);
}

.journal-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--c-border);
    margin-top: 2rem;
    margin-left: 1rem;
}

.journal-card {
    position: relative;
    background: transparent;
    padding: 0 0 2rem 1.5rem;
    margin-bottom: 0;
    border: none;
    box-shadow: none;
}

/* The Dot */
.journal-card::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--c-primary);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--c-border);
    z-index: 2;
}

.journal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.journal-date {
    font-size: 0.85rem;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.journal-delete {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    color: #999;
}

.journal-delete:hover {
    color: var(--c-error);
}

/* Speech Bubble Container */
.journal-bubble {
    background-color: var(--c-bg-card);
    padding: 1.8rem;
    border-radius: 0 16px 16px 16px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid var(--c-border);
    color: var(--c-text);
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Speech Bubble Tail */
.journal-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 15px solid var(--c-bg-card);
    border-left: 10px solid transparent;
    filter: drop-shadow(-1px 0 0 var(--c-border));
}

.journal-timeline {
    position: relative;
    padding-left: 40px !important;
    /* Fixed padding for precise alignment */
    border-left: 2px solid #e1e1e1 !important;
    margin-top: 2rem;
    margin-left: 10px;
}

.journal-card {
    position: relative;
    margin-bottom: 2rem;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* The Line Dot - Precisely Aligned */
.journal-card::before {
    content: '';
    position: absolute;
    /* -41px (padding start) - 9px (half dot width) + border compensation = approx -49px */
    left: -49px !important;
    top: 5px;
    /* Slight top offset to align with header text */
    width: 14px;
    height: 14px;
    background: var(--c-primary);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #e1e1e1;
    /* Subtle ring */
    z-index: 2;
}

.journal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.journal-date {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.journal-delete {
    background: none;
    border: 1px solid transparent;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.7;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 8px;
    border-radius: 4px;
}

.journal-delete:hover {
    opacity: 1;
    background: #fff0f0;
    border-color: #ffcccc;
}

/* Speech Bubble Container */
.journal-bubble {
    background-color: #f0f7f9;
    /* Distinct blue-ish tint */
    padding: 1.5rem;
    border-radius: 4px 18px 18px 18px;
    /* Classic speech bubble headers */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
    color: var(--c-heading);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
}

/* Little Triangle for Speech Bubble */
.journal-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 15px solid #f0f7f9;
    border-left: 10px solid transparent;
}

/* Empty State */
.empty-journal {
    text-align: center;
    padding: 3rem;
    background: #fafafa;
    border-radius: 12px;
    border: 2px dashed #e0e0e0;
    color: #aaa;
    margin-top: 2rem;
}

/* ================================================= */
/* ===           BLOG GRID & POST STYLES         === */
/* ================================================= */

.blog-grid-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background-color: var(--c-bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--c-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.blog-card-image {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: var(--c-bg-tint);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-date {
    font-size: 0.85rem;
    color: var(--c-accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 1.3rem;
    color: var(--c-heading);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 1rem;
    color: var(--c-text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card .learn-more-link {
    color: var(--c-primary);
    font-weight: 600;
    margin-top: auto;
}

/* --- SINGLE POST STYLES --- */
.post-hero-header {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    margin-top: -85px;
    /* Pull behind transparent header */
    padding-top: 85px;
}

.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(90, 74, 78, 0.4);
    /* Warm Charcoal overlay */
    z-index: 1;
}

.post-hero-header .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.post-hero-header h1 {
    color: #FFFFFF;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.post-meta {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.single-post-body {
    background-color: var(--c-bg-card);
    /* Readability vs Blush bg */
    max-width: 900px;
    margin: -80px auto 100px auto;
    /* Overlap effect */
    border-radius: 24px;
    padding: 4rem;
    box-shadow: var(--shadow-large);
    position: relative;
    z-index: 5;
    border: 1px solid var(--c-border);
}

.post-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--c-text);
}

.post-content h2 {
    font-size: 2rem;
    color: var(--c-heading);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-divider {
    border: 0;
    height: 1px;
    background: var(--c-bg-contrast);
    margin: 4rem 0;
}

@media (max-width: 768px) {
    .single-post-body {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 2rem 1.5rem;
        background-color: var(--c-bg-main);
    }

    .post-hero-header {
        margin-top: 0;
        padding-top: 0;
        height: 40vh;
    }

    .post-hero-header h1 {
        font-size: 2.2rem;
    }
}

/* --- TEAM GRID FIX (Appended) --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    /* Enforce 3 columns for better spacing */
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background-color: var(--c-bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.team-card-image {
    width: 100%;
    /* Aspect ratio to prevent squashing */
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--c-bg-tint);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image fills the box without distortion */
    object-position: top center;
    /* Focus on faces */
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.03);
}

.team-card-content {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card-content h3 {
    margin-bottom: 0.25rem;
    font-size: 1.4rem;
}

.team-card-title {
    color: var(--c-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-card-snippet {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--c-text);
}

/* Response: 2 columns on tablet, 1 on mobile */
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ================================================= */
/* ===       ADVOCACY SECTION (VIBRANT)          === */
/* ================================================= */

.advocacy-section {
    padding: 100px 0;
    background-color: var(--c-bg-tint);
    /* Keep consistent tint */
}

.advocacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Split 50/50 */
    gap: 3rem;
    margin-top: 3.5rem;
}

.advocacy-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.advocacy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.advocacy-image {
    position: relative;
    width: 100%;
    height: 400px;
    /* Force large, impactful height */
    overflow: hidden;
}

.advocacy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.advocacy-card:hover .advocacy-image img {
    transform: scale(1.05);
}

.advocacy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    opacity: 0.8;
}

.advocacy-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advocacy-badge {
    display: inline-block;
    background-color: var(--c-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    align-self: flex-start;
    box-shadow: var(--shadow-medium);
}

.advocacy-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--c-heading);
}

.advocacy-card p {
    font-size: 1.05rem;
    color: var(--c-text);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Mobile Response */
@media (max-width: 900px) {
    .advocacy-grid {
        grid-template-columns: 1fr;
        /* Stack on smaller screens */
        gap: 2.5rem;
    }

    .advocacy-image {
        height: 300px;
        /* Slightly smaller height on mobile */
    }
}

/* --- MOBILE BUTTON OPTIMIZATION --- */
@media (max-width: 600px) {

    .button-primary,
    .button-secondary {
        width: 100%;
        /* Full width for easier tapping */
        text-align: center;
        padding: 10px 20px !important;
        /* Reduced padding */
        font-size: 0.9rem !important;
        /* Sleek font size */
        margin-bottom: 0.5rem;
        /* Spacing if stacked */

    }
}

/* ========================================= */
/* FLOATING SHOP BUTTON */
/* ========================================= */
.floating-shop-btn {
    position: fixed;
    top: 50%;
    right: -120px;
    /* Hidden initially (off-screen) */
    transform: translateY(-50%) rotate(0deg);
    /* Or -90deg if vertically oriented text */
    background: var(--c-primary);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px 0 0 50px;
    /* Rounded left edge */
    text-decoration: none;
    font-weight: bold;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.floating-shop-btn.visible {
    right: 0;
    /* Slide in */
}

.floating-shop-btn:hover {
    background: var(--c-secondary);
    color: #fff;
    padding-right: 35px;
    /* Slide out slightly more on hover */
}

.floating-shop-btn .icon {
    font-size: 1.2rem;
}

.floating-shop-btn .text {
    font-family: var(--f-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================= */
/* ===         CONSENT FORM CHECKBOX GRID        === */
/* ================================================= */
/* Added to ensure checkboxes and radio buttons align nicely */

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--c-bg-card);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--c-border);
    transition: all 0.2s ease;
}

.checkbox-option:hover {
    border-color: var(--c-primary);
    background-color: #fcfcfc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.checkbox-option label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--c-text);
    user-select: none;
}

.checkbox-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--c-primary);
    margin: 0;
    box-shadow: none;
    flex-shrink: 0;
}

/* Ensure radio buttons in the grid look consistent */
.checkbox-option input[type="radio"] {
    border-radius: 50%;
}

/* --- CUSTOM MODAL FOR CONSENT FORM --- */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(90, 74, 78, 0.4);
    /* Darkened overlay */
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.custom-modal.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal-content {
    background: var(--c-bg-card);
    width: 90%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.custom-modal.active .custom-modal-content {
    transform: translateY(0);
}

.modal-header-organic {
    background: var(--c-bg-tint);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--c-border);
    text-align: center;
}

.modal-header-organic h3 {
    margin: 0;
    color: var(--c-heading);
    font-size: 1.5rem;
}

.modal-body-content {
    padding: 2rem;
}

.modal-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--c-text);
}

.benefits-box {
    background: #F9F4F5;
    /* Very light subtle pink */
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.benefits-box h4 {
    color: var(--c-primary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.5;
}

.benefits-list li::before {
    content: '•';
    color: var(--c-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.warning-box {
    border: 1px solid #FFCDD2;
    background: #FFEBEE;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.warning-box h4 {
    color: #C62828;
    /* Strong Red */
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.warning-box p {
    font-size: 0.9rem;
    color: #B71C1C;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.modal-actions .button-primary,
.modal-actions .button-secondary {
    width: 100%;
    text-align: center;
}

.text-link-button {
    background: none;
    border: none;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.text-link-button:hover {
    color: var(--c-text);
}

.text-link-button {
    background: none;
    border: none;
    color: #888;
    text-decoration: underline;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.text-link-button:hover {
    color: var(--c-text);
}

/* --- THERAPIST TOP BAR NOTIFICATION --- */
.top-bar-notification {
    background-color: var(--c-heading);
    /* Dark Rose-Charcoal */
    color: var(--c-text-light);
    /* White text */
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
    /* Above header */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    text-align: left;
}

@media (max-width: 600px) {
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        padding: 5px 0;
        text-align: center;
    }

    .top-bar-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .top-bar-actions {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .top-bar-btn {
        padding: 4px 12px;
        font-size: 0.75rem;
    }

    #close-top-bar {
        position: absolute;
        top: 5px;
        right: 10px;
        margin: 0;
    }
}

.top-bar-text {
    font-family: var(--font-body);
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-btn {
    background-color: var(--c-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.top-bar-btn:hover {
    background-color: var(--c-accent);
    color: #fff;
    opacity: 1;
}

#close-top-bar {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
}

#close-top-bar:hover {
    color: #fff;
}

/* --- FORM REQUIRED INDICATOR --- */
.required-label::after {
    content: " *";
    color: var(--c-error, #e74c3c);
    font-weight: bold;
    margin-left: 4px;
}

/* --- CLIENT PROFILE STYLES --- */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 30px;
}

.profile-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.consent-form-item {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- RESPONSIVE PROFILE PAGE --- */
@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .consent-form-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .consent-form-item .button-secondary {
        width: 100%;
        text-align: center;
    }

    .profile-card {
        padding: 1.5rem;
    }
}

/* --- MOBILE NAVIGATION CTA --- */
.mobile-nav-cta {
    display: none;
}

@media (max-width: 992px) {
    .mobile-nav-cta {
        display: block !important;
        margin-top: 1.5rem;
        padding: 0 1rem;
        width: 100%;
    }

    .mobile-nav-cta .button-primary {
        display: block;
        text-align: center;
        width: 100%;
    }
}

/* --- CLIENT HISTORY RESPONSIVENESS --- */
.journal-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.journal-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.share-settings-block {
    text-align: right;
    flex-shrink: 0;
}

.therapist-select-wrap {
    margin-bottom: 10px;
}

.form-select-sm {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 0.85rem;
    width: 200px;
    max-width: 100%;
}

.share-toggle-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 4px;
}

.journal-form-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.journal-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
}

.form-input-sm {
    border: 1px solid #ddd;
    padding: 0.5rem;
    border-radius: 8px;
    font-family: var(--font-body);
}

.btn-sm {
    font-size: 0.75rem !important;
    padding: 4px 12px !important;
    border-radius: 4px !important;
}

.btn-save {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.history-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.history-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    gap: 10px;
}

/* History Media Queries */
@media (max-width: 768px) {
    .journal-wrapper {
        padding: 1.5rem;
    }

    .journal-header-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .share-settings-block {
        text-align: left;
    }

    .share-toggle-row {
        justify-content: flex-start;
    }

    .form-select-sm {
        width: 100%;
    }

    .journal-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .journal-form-footer input {
        width: 100%;
    }

    .history-item-header {
        flex-direction: column;
        gap: 2px;
    }
}

/* FIX: Promote signature pad to own layer to prevent z-fighting with sticky header/backdrop-filter */
.signature-pad {
    transform: translateZ(0);
    will-change: transform;
    position: relative;
    z-index: 5;
}

/* ================================================= */
/* ===           CONTACT PAGE STYLES             === */
/* ================================================= */

.contact-main-section {
    padding: 80px 0;
}

.contact-main-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* Form takes more space */
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--c-border);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--c-heading);
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: var(--c-text);
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--c-heading);
    font-family: var(--font-subheading);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background-color: #fcfcfc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(197, 143, 154, 0.1);
}

.contact-sidebar {
    position: sticky;
    top: 120px;
    /* Stick when scrolling */
}

.sidebar-widget {
    background-color: var(--c-bg-tint);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    color: var(--c-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

.key-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.key-info-list li {
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.key-info-list li span {
    display: block;
    font-size: 0.95rem;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 900px) {
    .contact-main-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-sidebar {
        position: static;
        /* Stack naturally on mobile */
        order: -1;
        /* Optional: Move sidebar above form if desired, or keep default */
    }
}

@media (max-width: 600px) {

    /* GLOBAL MOBILE FIXES */
    html,
    body {
        overflow-x: hidden;
        max-width: 100%;
    }

    .container {
        width: 92%;
        /* Slightly wider on mobile */
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        /* Prevent ios zoom */
    }

    /* Mobile Optimization for Contact Details */
    .contact-sidebar,
    .sidebar-widget {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .sidebar-widget {
        padding: 1.25rem;
        margin-bottom: 2rem;
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-all;
        /* Force break specifically for long emails */
        hyphens: auto;
    }

    .key-info-list li {
        font-size: 0.9rem;
        gap: 10px;
        align-items: flex-start;
    }

    .key-info-list li span {
        word-break: break-word;
        /* Ensure text wraps */
    }

    .key-info-list li i {
        font-size: 1.1rem !important;
        margin-right: 5px !important;
        margin-top: 4px;
        /* Visual adjustment */
        flex-shrink: 0;
    }

    /* REDUCE GAP ON MOBILE */
    .contact-main-section {
        padding-top: 30px !important;
        /* Was 80px */
        padding-bottom: 40px !important;
    }

    .hero-section-v2 {
        padding-bottom: 40px !important;
        /* Was 120px */
        min-height: auto;
    }
}