:root {
    /* Invisible Technology Palette (Luxury Spa + Clinical Precision) */
    --bg-light: #F9F7F4; /* Warmer, stone-like white */
    --bg-white: #FFFFFF;
    --text-dark: #1F2528; /* Deeper for better contrast */
    --text-medium: #6B7275;
    
    /* Brand Accents */
    --accent-primary: #8BA89A; /* Sage Green */
    --accent-secondary: #C5A059; /* Metallic Gold (Connected to Mother Site) */
    --accent-gold-gradient: linear-gradient(135deg, #C5A059 0%, #E2C997 50%, #C5A059 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Quiet Luxury UI Elements */
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(197, 160, 89, 0.15); /* Gold-tinted border */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 50px rgba(139, 168, 154, 0.1);
    --marble-overlay: url('https://www.transparenttextures.com/patterns/marble-similar.png');

    /* Dark Luxury (Footer, Pod) */
    --bg-dark: #1A1D1F;
    --bg-dark-lighter: #242729;
    --text-dim: rgba(255, 255, 255, 0.85);
    --gold: #C5A059;
    --sage: #8BA89A;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Gradients (Replacing harsh orbs) */
/* Removing Cyber Artifacts */
.bg-grid, .scanline {
    display: none !important;
}

.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    background: var(--bg-light);
}

/* Texture Overlay */
.bg-orbs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--marble-overlay);
    opacity: 0.15;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: -1;
    pointer-events: none;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--accent-primary);
    animation: float 20s infinite ease-in-out alternate;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--accent-secondary);
    animation: float 25s infinite ease-in-out alternate-reverse;
}

.orb-3 {
    top: 40%;
    left: 70%;
    width: 35vw;
    height: 35vw;
    background: var(--accent-primary);
    opacity: 0.2;
    animation: float 18s infinite ease-in-out alternate;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

p {
    font-size: 1.1rem;
    color: #4a4a4a; /* Darker for better legibility */
    max-width: 700px;
}

.gradient-text {
    color: var(--text-dark);
    /* Remove gradient text for luxury feel, keep class name to avoid breaking HTML easily */
}

/* Navigation */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 7%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.logo span {
    font-weight: 400;
    opacity: 0.8;
}

/* Image logo — nav */
.logo-nav-wrapper {
    display: block;
    height: 100px; /* Mărit pentru impact maxim, acum cu transparență reală */
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img-nav {
    height: 100%;
    width: auto;
    display: block;
}

/* Image logo — footer */
.logo-footer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    margin-bottom: 1rem;
    width: 100%;
}

.logo-img-footer {
    height: 100%;
    width: auto;
    display: block;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #1a1a1a;
    /* Even darker for visibility */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    /* Bolder */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-secondary);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
    color: var(--accent-secondary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-secondary);
}

/* Nu aplica bara de subliniere pentru butoanele de tip pill (btn-neon) */
.nav-links a.btn-neon::after {
    display: none;
}

.back-link {
    color: var(--accent-secondary) !important;
}

/* Disable pulse animation on nav button to prevent shadow ring artifacts */
.glass-nav .btn-neon {
    animation: none;
}

/* Buttons */
/* Buttons (Luxury Refinement) */
.btn-neon {
    background: var(--accent-gold-gradient);
    color: #4A3B1D; /* Deep bronze for contrast on gold */
    padding: 0.7rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.2);
    text-align: center;
    /* Custom luxury breath effect - extremely slow 4.5 seconds cycle */
    animation: pulse-breathe 4.5s ease-in-out infinite;
}

.btn-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.35);
    filter: brightness(1.1);
    animation-play-state: paused; /* Pause the breathing effect on hover so translation is 100% steady */
}

@keyframes pulse-breathe {
    0% {
        box-shadow: 0 10px 25px rgba(197, 160, 89, 0.20), 0 0 0 0 rgba(197, 160, 89, 0.35);
    }
    50% {
        box-shadow: 0 12px 30px rgba(197, 160, 89, 0.32), 0 0 0 10px rgba(197, 160, 89, 0);
    }
    100% {
        box-shadow: 0 10px 25px rgba(197, 160, 89, 0.20), 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

.btn-gold {
    background: transparent;
    color: var(--text-dark);
    padding: 1.1rem 2.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: 1.5px solid var(--accent-secondary);
    display: inline-block;
}

.btn-gold:hover {
    background: var(--accent-secondary);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--text-dark);
    padding: 1.1rem 2.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: 1.5px solid var(--accent-primary);
    display: inline-block;
}

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

/* Hero Section */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-light);
}

.hero-bg-video,
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle dark wash that keeps the image crystal clear while allowing white text to pop */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.45) 100%);
}

.hero-content .gradient-text {
    background: none;
    -webkit-text-fill-color: #FFFFFF;
    color: #FFFFFF;
}

.hero-content h1,
.hero-content p {
    color: #F9F7F4;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    z-index: 1;
}

.hero-content h1 {
    animation: fadeSlideUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 30px rgba(255,255,255,0.5);
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--accent-secondary); /* Gold/bright accent */
    letter-spacing: 0.04em;
    margin-bottom: 1rem !important;
    animation: fadeSlideUp 1s ease-out 0.35s both;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.hero-content p {
    margin: 0 auto 2.5rem auto;
    font-size: 1.25rem;
    color: #F9F7F4;
    animation: fadeSlideUp 1s ease-out 0.5s both;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeSlideUp 1s ease-out 0.8s both;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards & Layout */
.science-section {
    padding: 8rem 5%;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header p {
    margin: 0 auto;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-card {
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(197, 160, 89, 0.15), 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(197, 160, 89, 0.5);
    background: var(--bg-white);
    cursor: pointer;
}

.glass-card:hover::before {
    transform: scaleX(1);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* SVG Icon Container — replaces emoji icons for consistency */
.svg-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(139, 168, 154, 0.1);
    border: 1px solid rgba(139, 168, 154, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover .svg-icon-wrap {
    background: rgba(139, 168, 154, 0.18);
    border-color: rgba(197, 160, 89, 0.4);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(139, 168, 154, 0.2);
}

.glass-card:hover .svg-icon-wrap svg {
    stroke: var(--accent-secondary);
    transition: stroke 0.35s ease;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Interactive Cards */
.interactive-card {
    cursor: pointer;
}

.card-footer {
    margin-top: 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s;
}

.interactive-card:hover .card-footer {
    color: var(--accent-secondary);
}

/* Stats Section */
.stats-section {
    padding: 6rem 5%;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

#molecule-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Permite scroll fluid și selectarea textului */
}

#molecule-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-gold-gradient);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.stat-number {
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--accent-secondary);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-white);
    width: 90%;
    max-width: 600px;
    border-radius: 16px;
    padding: 3rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-medium);
    cursor: pointer;
    line-height: 1;
}

.modal-footer {
    margin-top: 2.5rem;
    text-align: right;
}

/* Pricing Page */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    padding: 3.5rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-primary);
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.price span {
    font-size: 1rem;
    color: var(--text-medium);
    font-family: var(--font-body);
}

/* Tech Page / Interior Section */
.tech-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 5%;
    border-radius: 24px;
}

.tech-content {
    flex: 1;
}

.tech-content h2 {
    color: var(--bg-light);
}

.tech-content .gradient-text {
    color: var(--bg-light);
}

.tech-content p {
    color: rgba(255,255,255,0.7);
}

.tech-features {
    list-style: none;
    margin: 2rem 0;
}

.tech-features li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.tech-features li span {
    color: var(--gold);
    margin-right: 10px;
}

.tech-image-container {
    flex: 1;
}

.image-placeholder {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.tech-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-placeholder:hover .tech-image {
    transform: scale(1.03);
}

/* Profiles Grid */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    text-align: center;
}

.profile-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.profile-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-medium);
    transition: color 0.3s;
    cursor: pointer;
}

.toggle-label.active {
    color: var(--text-dark);
}

.save-badge {
    background: var(--accent-primary);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-left: 0.5rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider.round {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0;
    transition: .4s;
    border-radius: 34px;
}

.slider.round:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--accent-primary);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

/* Luxury Footer — Dark Premium */
footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111314 100%);
    padding: 6rem 5% 3rem;
    border-top: none;
    margin-top: 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
}

.footer-brand .logo {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.footer-nav {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding: 2rem 0;
    width: 100%;
}

.footer-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-contact {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.medical-disclaimer {
    max-width: 800px;
    margin: 4rem auto 0;
    font-size: 0.72rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.25);
    text-align: center;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 5%;
    background: var(--bg-light);
    border-top: 1px solid var(--glass-border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--accent-secondary);
    /* Gold */
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.reviewer {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.reviewer strong {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.1rem;
}

.reviewer span {
    font-size: 0.85rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.review-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.review-cta p {
    margin: 0 auto 1.5rem auto;
    font-weight: 600;
    color: var(--text-dark);
}

/* Booking Section */
.booking-section {
    padding: 2rem 5% 6rem;
    max-width: 1000px;
    margin: 0 auto;
}

.widget-container {
    padding: 2rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 16px;
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-hover);
}

/* Booking Widget Styles */
.booking-steps {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    flex-wrap: wrap;
}

.booking-steps .step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-medium);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.booking-steps .step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e0e0e0;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.booking-steps .step.active {
    color: var(--text-dark);
    font-weight: 600;
}

.booking-steps .step.active span {
    background: var(--accent-primary);
}

.booking-steps .step.completed span {
    background: var(--accent-secondary);
}

.booking-panel {
    animation: fadeSlideIn 0.4s ease;
}

.booking-panel.hidden {
    display: none;
}

.booking-panel h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

/* Service Cards */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card input {
    display: none;
}

.service-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 1.5rem;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.service-inner:hover {
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.service-card input:checked+.service-inner {
    border-color: var(--accent-primary);
    background: rgba(139, 168, 154, 0.08);
    box-shadow: 0 4px 15px rgba(139, 168, 154, 0.15);
}

.service-icon {
    font-size: 2rem;
}

.service-duration {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent-secondary);
    font-weight: 700;
}

/* Calendar Widget */
.calendar-widget {
    max-width: 400px;
    margin: 0 auto 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cal-nav {
    background: none;
    border: 1px solid var(--glass-border);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-nav:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-medium);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.cal-day {
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: none;
    background: none;
    color: var(--text-dark);
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: rgba(139, 168, 154, 0.15);
}

.cal-day.selected {
    background: var(--accent-primary);
    color: white;
    font-weight: 700;
}

.cal-day.today {
    border: 2px solid var(--accent-secondary);
    font-weight: 600;
}

.cal-day.disabled {
    color: #ccc;
    cursor: default;
}

.cal-day.empty {
    cursor: default;
}

.selected-date-display {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-medium);
}

/* Time Slots */
.time-hint {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.8rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.time-slot input {
    display: none;
}

.time-slot span {
    display: block;
    padding: 0.8rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    background: var(--bg-light);
}

.time-slot span:hover {
    border-color: var(--accent-primary);
}

.time-slot input:checked+span {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    font-weight: 600;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--bg-light);
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

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

/* Confirmation */
.confirmation-box {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.confirm-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-primary);
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.summary-details {
    text-align: left;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.95rem;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    border-top: 2px solid var(--accent-primary);
    border-bottom: none;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.summary-row.total strong {
    color: var(--accent-secondary);
    font-size: 1.3rem;
}

.demo-note {
    font-size: 0.75rem;
    color: var(--text-medium);
    margin-top: 1.5rem;
    font-style: italic;
}

/* Navigation Buttons */
.booking-nav-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.booking-next,
.booking-back {
    min-width: 160px;
}

.booking-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* FAQ Accordion */
.faq-section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow-hover);
}

.accordion-btn {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.accordion-btn:hover {
    color: var(--accent-primary);
}

.accordion-btn.active {
    color: var(--accent-secondary);
}

.accordion-btn .icon {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-secondary); /* Elegant metallic gold instead of bright primary green */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    margin-bottom: 0;
}

.accordion-btn.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: var(--bg-light);
}

.accordion-content p {
    padding: 0 2rem 2rem 2rem;
    margin: 0;
    font-size: 1rem;
}

/* Pricing Calculator */
.calculator-section {
    padding: 2rem 5% 6rem;
    background: var(--bg-light);
}

.calculator-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
}

.calc-left {
    flex: 2;
    min-width: 300px;
}

.calc-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calc-group {
    margin-bottom: 2.5rem;
}

.calc-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Custom Slider */
.duration-display {
    font-size: 1.1rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.luxury-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 5px;
    outline: none;
    margin: 1rem 0;
}

.luxury-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-primary);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.luxury-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-medium);
}

/* Bundle Options */
.bundle-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.bundle-radio input {
    display: none;
}

.bundle-btn {
    display: block;
    padding: 1rem 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 500;
}

.bundle-btn span {
    font-size: 0.8rem;
    color: var(--accent-primary);
    margin-left: 10px;
}

.bundle-radio input:checked+.bundle-btn {
    border-color: var(--accent-primary);
    background: rgba(139, 168, 154, 0.05);
    box-shadow: 0 4px 10px rgba(139, 168, 154, 0.1);
}

/* Addons */
.addon-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.addon-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.addon-checkbox input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-primary);
}

/* Total Box */
.total-box {
    background: var(--bg-white);
    border: 1px solid var(--accent-primary);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.total-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.total-price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--accent-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
}

.total-breakdown {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.calc-book-btn {
    width: 100%;
}

.calc-disclaimer {
    font-size: 0.75rem;
    color: var(--text-medium);
    margin-top: 1.5rem;
    font-style: italic;
}



/* Review CTA & Modal */
.review-cta {
    margin-top: 4rem;
    text-align: center;
    background: rgba(139, 168, 154, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px dashed var(--accent-secondary);
}

.review-cta p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.review-modal-card {
    max-width: 500px !important;
}

.review-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-form-fields input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1.5px solid #d0d7d4;
    /* More visible border */
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.review-form-fields input:focus,
#review-comment:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(139, 168, 154, 0.1);
    background: white;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.star {
    font-size: 2rem;
    color: #e0e0e0;
    cursor: pointer;
    transition: color 0.2s;
}

.star:hover,
.star:hover~.star {
    color: #D4AF37;
}

.star.active,
.star.active~.star {
    color: #D4AF37;
}

#review-comment {
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.8);
    border: 1.5px solid #d0d7d4;
    /* More visible border */
    border-radius: 12px;
    padding: 1rem;
    font-family: inherit;
    margin-top: 0.5rem;
    resize: none;
    transition: all 0.3s ease;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), #D4AF37);
    z-index: 10000;
    transition: width 0.15s linear;
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.6);
    opacity: 1 !important;
}

/* Before/After Slider */
/* Before/After Section Refinement */
.before-after-section {
    padding: 8rem 5%;
    background: var(--bg-light);
}

.ba-container {
    max-width: 800px;
    margin: 0 auto;
}

/* --- Before/After Zen-Tech Aesthetic --- */
.before-after-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, rgba(139, 168, 154, 0.08) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.ba-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* The 'Aura' Glow behind the scan */
.ba-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: var(--sage);
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulseGlow 8s infinite ease-in-out;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.ba-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 40px;
    overflow: hidden;
    cursor: ew-resize;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.ba-before {
    width: 50%;
    overflow: hidden;
    z-index: 2;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.ba-label {
    position: absolute;
    bottom: 30px;
    padding: 0.6rem 1.5rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 5;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-label-before {
    left: 30px;
    background: rgba(220, 80, 60, 0.2);
    color: #ffbba1;
}

.ba-label-after {
    right: 30px;
    background: rgba(139, 168, 154, 0.2);
    color: #e0f2e9;
}

.ba-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 10;
    transform: translateX(-50%);
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ba-wrapper:hover .ba-handle {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
}

.ba-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    text-align: center;
}

.ba-stat strong {
    display: block;
    font-size: 2.8rem;
    font-weight: 200;
    color: var(--gold);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.ba-stat span {
    font-size: 0.75rem;
    color: var(--text-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- About Us / Sanctuary Section --- */
.contact-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.contact-section p, .contact-section .detail-text p {
    color: rgba(255, 255, 255, 0.85);
}

.contact-section .gradient-text {
    color: var(--gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #fff;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 3rem;
}

.detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.detail-icon {
    font-size: 1.5rem;
    background: rgba(139, 168, 154, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(139, 168, 154, 0.2);
}

.detail-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.detail-text p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.contact-map {
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.map-wrapper {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.contact-map:hover .map-wrapper {
    filter: grayscale(0.2) contrast(1) invert(0);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-map {
        height: 400px;
    }
}

/* Clean up old elements */
.scanline,
.badge-futuristic {
    display: none;
}

.ticker-wrap {
    display: none;
}

/* Responsive */
@media (max-width: 480px) {
    /* Fix CTA button text overflow on small phones */
    .btn-neon,
    .btn-ghost {
        font-size: 0.65rem;
        padding: 0.85rem 1.6rem;
        letter-spacing: 1.5px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Single column cards on mobile */
    .cards-container,
    .profiles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .glass-nav {
        padding: 1rem 5%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }

    .nav-links.open {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--text-dark);
        margin: 5px auto;
        transition: 0.3s;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .tech-section {
        flex-direction: column;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .footer-contact {
        gap: 2rem;
    }

    .footer-nav {
        gap: 1.5rem;
    }

    /* Fix card grid on tablet */


    .profiles-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Scroll Reveal System ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.4s; }

.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-stagger > * {
        transition: none;
        opacity: 1;
        transform: none;
    }
    .hero-content h1,
    .hero-content p,
    .hero-buttons {
        animation: none;
    }
}

/* ===== Toast Notification System ===== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    max-width: 320px;
    opacity: 1;
    transition: opacity 0.3s ease;
    animation: toastIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.toast-success {
    border-left: 3px solid var(--accent-primary);
}

.toast-error {
    border-left: 3px solid #c0392b;
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
    .toast-container {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    .toast {
        max-width: 100%;
    }
}

/* ===== Curated Sessions Menu ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.session-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    position: relative;
    border-radius: 20px;
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    min-height: 450px;
    overflow: hidden;
}

.session-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.session-card.featured {
    border: 1px solid var(--accent-secondary);
    box-shadow: 0 15px 35px rgba(212, 184, 149, 0.15);
}

.featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-secondary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(212, 184, 149, 0.4);
}

.session-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.session-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.session-duration {
    font-size: 1.1rem;
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.session-desc {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.session-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.session-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

.session-benefits li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .session-card {
        min-height: auto;
    }
}

/* ===== HBOT Package Cards ===== */
.pkg-card {
    text-align: center;
    padding: 3rem 2.5rem;
    min-height: 620px;
}

.pkg-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.pkg-count {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.pkg-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1;
}

.pkg-count-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-medium);
}

.pkg-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.pkg-duration {
    display: block;
    width: 85%;
    margin: 0 auto 1.5rem auto;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.04);
    padding: 0.6rem 1rem;
    border-radius: 25px;
    letter-spacing: 0.5px;
}

.pkg-pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.pkg-price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1;
}

.pkg-per {
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: 400;
}

.pkg-savings {
    display: inline-block;
    background: var(--accent-gold-gradient);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    margin-left: 0.2rem;
}

.pkg-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 1.5rem 0;
}

.pkg-card .session-desc {
    text-align: left;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.pkg-includes-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-medium);
    text-align: left;
    margin-bottom: 1rem;
}

.pkg-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
    text-align: left;
}

.pkg-includes li {
    position: relative;
    padding: 0.7rem 0;
    padding-left: 1.2rem;
    font-size: 0.92rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1.4;
}

.pkg-includes li:last-child {
    border-bottom: none;
}

.pkg-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-secondary);
    font-size: 1.2rem;
    line-height: 1.4;
}

/* Package CTA Buttons */
.btn-pkg {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    background: transparent;
    border-radius: 8px;
    margin-top: auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-pkg:hover, .btn-pkg:active {
    background: var(--accent-gold-gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35);
}

.btn-pkg-gold {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    background: var(--accent-gold-gradient);
    color: #4A3B1D !important;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-pkg-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.35);
    filter: brightness(1.1);
}

/* Featured Package Card (Sage Background) */
.pkg-featured {
    background: #4a5e52 !important;
    border-color: #4a5e52 !important;
}

.pkg-featured .pkg-label,
.pkg-featured .pkg-count-text,
.pkg-featured .pkg-per,
.pkg-featured .pkg-includes-label {
    color: rgba(255, 255, 255, 0.85);
}

.pkg-featured .pkg-number,
.pkg-featured .pkg-price,
.pkg-featured .pkg-name {
    color: #fff;
}

.pkg-featured .pkg-name {
    color: rgba(255, 255, 255, 0.9);
}

.pkg-featured .pkg-duration {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.pkg-featured .pkg-divider {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.pkg-featured .session-desc {
    color: rgba(255, 255, 255, 0.7);
}

.pkg-featured .pkg-includes li {
    color: rgba(255, 255, 255, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pkg-featured .pkg-savings {
    background: var(--accent-gold-gradient);
}

.pkg-featured .btn-pkg-gold {
    background: var(--accent-gold-gradient);
    color: #fff;
}

.pkg-featured .featured-tag {
    background: var(--accent-secondary);
}

/* Responsive Package Cards */
@media (max-width: 992px) {
    .pkg-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .pkg-number {
        font-size: 3.5rem;
    }
    .pkg-price {
        font-size: 2.2rem;
    }
    .pkg-card {
        padding: 2.5rem 2rem;
    }
}

/* ===== Interactive Clinical Evidence Carousel ===== */
.clinical-evidence-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
    color: var(--bg-white);
}

/* Light Background Override */
.clinical-evidence-section[style*="background: transparent"],
.clinical-evidence-section[style*="--bg-light"] {
    color: var(--text-dark);
}


.clinical-evidence-section .section-header p {
    color: var(--text-muted);
}

.clinical-evidence-section[style*="background: transparent"] .section-header p,
.clinical-evidence-section[style*="--bg-light"] .section-header p {
    color: #4a4a4a;
}


.evidence-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    align-items: flex-start;
}

/* Sidebar Menu */
.evidence-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.evidence-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.evidence-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    transform: translateX(5px);
}

.evidence-tab.active {
    background: rgba(212, 184, 149, 0.1);
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    box-shadow: 0 4px 20px rgba(212, 184, 149, 0.15);
}

.tab-icon {
    font-size: 1.2rem;
}

/* Content Area */
.evidence-content-area {
    position: relative;
    min-height: 500px;
}

.evidence-content {
    display: none;
    animation: fadeInSlideUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.evidence-content.active {
    display: block;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.evidence-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px dashed rgba(212, 184, 149, 0.3) !important;
    border-radius: 20px;
    margin-top: 2rem;
}

.placeholder-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.evidence-placeholder h4 {
    color: var(--accent-secondary);
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

@media (max-width: 992px) {
    .evidence-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .evidence-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .evidence-tab {
        white-space: nowrap;
    }
    
    .evidence-tab:hover {
        transform: translateY(-3px);
    }
}
/* ============================================ */
/* Evidence Compare (Before/After Side-by-Side) */
/* ============================================ */
.evidence-compare {
    padding: 1.5rem;
    border-radius: 18px;
    background: rgba(26, 29, 31, 0.55);
    border: 1px solid rgba(197, 160, 89, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.evidence-compare .ec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.evidence-compare .ec-side {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-dark);
    aspect-ratio: 9 / 7;
}

.evidence-compare .ec-side img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.evidence-compare .ec-side:hover img {
    transform: scale(1.04);
}

.evidence-compare .ec-label {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.evidence-compare .ec-label-before {
    background: rgba(220, 100, 100, 0.7);
    border: 1px solid rgba(255, 180, 180, 0.3);
}

.evidence-compare .ec-label-after {
    background: rgba(139, 168, 154, 0.85);
    border: 1px solid rgba(197, 160, 89, 0.4);
}

.evidence-compare .ec-caption {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    text-align: center;
}

.evidence-compare .ec-caption h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #fff;
    margin: 0 0 0.4rem 0;
    letter-spacing: 0.5px;
}

.evidence-compare .ec-caption p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin: 0;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .evidence-compare .ec-grid {
        grid-template-columns: 1fr;
    }
    .evidence-compare .ec-caption h4 {
        font-size: 1.15rem;
    }
}

/* Override .glass-card:hover for evidence-compare cards
   (these are display-only, not interactive — no white flash, no lift) */
.evidence-compare.glass-card:hover,
.evidence-compare:hover {
    background: rgba(26, 29, 31, 0.55) !important;
    transform: none !important;
    box-shadow: none !important;
    border-color: rgba(197, 160, 89, 0.35) !important;
    cursor: default !important;
}

.evidence-compare.glass-card:hover::before {
    transform: scaleX(0) !important;
}

/* ============================================ */
/* Citation markers in stats                    */
/* ============================================ */
.ba-stat sup.cite {
    color: var(--accent-secondary, #C5A059);
    font-size: 0.40em;
    font-weight: 600;
    margin-left: 10px;
    letter-spacing: 1px;
    vertical-align: super;
    opacity: 0.8;
    font-family: var(--font-body, 'Montserrat', sans-serif);
    /* subtle visual lift so brackets read as a footnote, not part of the number */
    position: relative;
    top: -0.2em;
}

/* ============================================ */
/* Clinical Sources & Methodology disclosure    */
/* ============================================ */
.clinical-sources {
    max-width: 1100px;
    margin: 5rem auto 0;
    padding: 2.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.clinical-sources h4 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.4rem;
    color: var(--accent-secondary, #C5A059);
    margin: 0 0 1rem 0;
    letter-spacing: 0.5px;
}

.clinical-sources .sources-intro {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.clinical-sources .sources-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2rem;
}

.clinical-sources .sources-list li {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    padding-left: 1.2rem;
    text-indent: -1.2rem;
}

.clinical-sources .sources-list sup {
    color: var(--accent-secondary, #C5A059);
    font-weight: 600;
    margin-right: 4px;
}

.clinical-sources .sources-list em {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.clinical-sources .sources-disclaimer {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin: 1.5rem 0 0 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(197, 160, 89, 0.12);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .clinical-sources {
        padding: 1.5rem 1.5rem;
        margin: 3rem 1rem 0;
    }
    .clinical-sources .sources-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================ */
/* Clinical Sources — Collapsible (override)    */
/* ============================================ */
details.clinical-sources {
    max-width: 1100px;
    margin: 5rem auto 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
}

details.clinical-sources[open] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(197, 160, 89, 0.35);
}

details.clinical-sources summary {
    list-style: none;
    cursor: pointer;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    user-select: none;
    transition: background 0.25s ease;
}

details.clinical-sources summary::-webkit-details-marker {
    display: none;
}

details.clinical-sources summary:hover {
    background: rgba(197, 160, 89, 0.04);
}

details.clinical-sources .sources-label {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.1rem;
    color: var(--accent-secondary, #C5A059);
    letter-spacing: 0.5px;
    font-weight: 500;
}

details.clinical-sources .sources-chevron {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--accent-secondary, #C5A059);
    font-size: 1.4rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
    flex-shrink: 0;
}

details.clinical-sources[open] .sources-chevron {
    transform: rotate(45deg);
    background: rgba(197, 160, 89, 0.18);
}

details.clinical-sources .sources-body {
    padding: 0 2.5rem 2.5rem;
    border-top: 1px solid rgba(197, 160, 89, 0.12);
    margin-top: 0;
    padding-top: 1.5rem;
    animation: sources-fade-in 0.4s ease;
}

@keyframes sources-fade-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    details.clinical-sources summary { padding: 1.2rem 1.5rem; }
    details.clinical-sources .sources-body { padding: 1.2rem 1.5rem 1.5rem; }
    details.clinical-sources .sources-label { font-size: 0.95rem; }
}

/* ============================================ */
/* Evidence Toggle (Section-level Accordion)    */
/* ============================================ */
details.evidence-toggle {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

details.evidence-toggle > summary.evidence-summary {
    list-style: none;
    cursor: pointer;
    padding: 0;
    display: block;
    user-select: none;
    transition: opacity 0.3s ease;
    margin: 0 auto;
    max-width: 1000px;
    text-align: center;
}

details.evidence-toggle > summary.evidence-summary::-webkit-details-marker {
    display: none;
}

details.evidence-toggle > summary.evidence-summary:hover {
    opacity: 0.92;
}

details.evidence-toggle .evidence-summary-inner {
    padding: 1rem 2rem 2rem;
}

details.evidence-toggle .evidence-summary h2 {
    margin: 0 0 1rem 0;
}

details.evidence-toggle .evidence-summary p {
    margin: 0 0 2rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #4a4a4a; /* Ensured dark enough for light backgrounds */
}

details.evidence-toggle .evidence-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 28px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    border-radius: 40px;
    background: rgba(197, 160, 89, 0.08);
    color: #8c6d1f; /* Darker gold for visibility on light backgrounds */
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

details.evidence-toggle .evidence-summary:hover .evidence-cta {
    background: rgba(197, 160, 89, 0.18);
    border-color: rgba(197, 160, 89, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(197, 160, 89, 0.15);
}

details.evidence-toggle .evidence-cta-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.18);
    border: 1px solid rgba(197, 160, 89, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
}

details.evidence-toggle[open] .evidence-cta-icon {
    transform: rotate(135deg);
    background: rgba(197, 160, 89, 0.3);
}

details.evidence-toggle[open] .evidence-cta-text::before {
    content: "Hide ";
}
details.evidence-toggle[open] .evidence-cta-text {
    color: inherit;
}

/* Hide the original "Explore the Evidence" text and replace via ::before */
details.evidence-toggle[open] .evidence-cta-text {
    font-size: 0;
}
details.evidence-toggle[open] .evidence-cta-text::before {
    content: "Hide the Evidence";
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

details.evidence-toggle .evidence-body {
    overflow: hidden;
    animation: evidence-fade-in 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2rem;
}

@keyframes evidence-fade-in {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    details.evidence-toggle .evidence-summary-inner {
        padding: 1rem 1rem 1.5rem;
    }
    details.evidence-toggle .evidence-cta {
        padding: 10px 22px;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
}

/* Make gradient-text visible inside dark Clinical Evidence section */
.clinical-evidence-section .gradient-text,
details.evidence-toggle .gradient-text {
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ============================================ */
/* General dark-section gradient-text override */
/* Ensures gold gradient text is visible on    */
/* any dark background (inline or class-based) */
/* ============================================ */
section[style*="bg-dark"] .gradient-text,
section[style*="--bg-dark"] .gradient-text,
.tech-section[style*="bg-dark"] .gradient-text,
.tech-section[style*="--bg-dark"] .gradient-text,
.cta-dark-section .gradient-text,
.clinical-evidence-section .gradient-text,
details.evidence-toggle .gradient-text,
.evidence-content .gradient-text {
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ============================================ */
/* Cookie Consent Banner                        */
/* ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(26, 29, 31, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(197, 160, 89, 0.05);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cookie-banner-text h4 {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 1.15rem;
    color: var(--accent-secondary, #C5A059);
    margin: 0 0 0.4rem 0;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.cookie-banner-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    line-height: 1.55;
}

.cookie-banner-text a {
    color: var(--accent-secondary, #C5A059);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-banner-text a:hover {
    color: #E2C997;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 11px 22px;
    border-radius: 30px;
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--accent-secondary, #C5A059);
    border-color: var(--accent-secondary, #C5A059);
    color: #1A1D1F;
}

.cookie-btn-primary:hover {
    background: #D4B074;
    border-color: #D4B074;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(197, 160, 89, 0.3);
}

.cookie-btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
}

/* Footer link to re-open settings */
.cookie-settings-link {
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 1.25rem 1.25rem;
    }
    .cookie-banner-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .cookie-banner-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }
    .cookie-btn {
        padding: 12px 14px;
        font-size: 0.72rem;
        letter-spacing: 1.2px;
    }
}
/* --- Legibility Fixes for Light Backgrounds (Technology Page) --- */
#evidence-library .evidence-summary h2 .gradient-text {
    background: linear-gradient(135deg, #8c6d1f 0%, #c5a059 50%, #8c6d1f 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

#evidence-library .profile-tag {
    background: rgba(139, 168, 154, 0.15);
    color: #3e4f45 !important; /* Deeper sage for contrast */
    border: 1px solid rgba(139, 168, 154, 0.4);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
}

#evidence-library .evidence-cta {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(197, 160, 89, 0.4);
    color: var(--text-dark);
}

.section-header p {
    color: #4a4a4a !important; /* Global header description contrast */
}

/* --- Evidence Library Card Contrast & Layout --- */
#evidence-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5rem !important;
    width: 100%;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    #evidence-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    #evidence-grid {
        grid-template-columns: 1fr !important;
    }
}

.evidence-card {
    background: rgba(255, 255, 255, 0.7); /* Increased opacity for readability */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2.2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.evidence-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(197, 160, 89, 0.5);
}

.evidence-tag {
    color: #4a5e52 !important; /* Deeper sage for high contrast */
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.evidence-card h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.3rem;
    margin: 0;
    font-weight: 500;
}

.evidence-card p {
    color: #4a4a4a !important;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.evidence-link {
    margin-top: 1rem;
    color: #6b5317 !important; /* Deeper bronze/gold for legibility */
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.evidence-card:hover .evidence-link {
    opacity: 1;
    transform: translateX(5px);
}


/* ── PRICING TABS (Moved from pricing.html) ── */

        /* ── Pricing Tab Navigation ── */
        .pricing-tabs {
            display: flex;
            justify-content: center;
            gap: 0;
            margin: 3rem auto 0;
            max-width: 560px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50px;
            padding: 5px;
        }

        .pricing-tab {
            flex: 1;
            padding: 0.75rem 1.5rem;
            border: none;
            background: transparent;
            color: var(--text-medium);
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.35s ease;
            white-space: nowrap;
        }

        .pricing-tab:hover {
            color: var(--text-dark);
        }

        .pricing-tab.active {
            background: var(--accent-gold-gradient);
            color: #1a1200;
            font-weight: 600;
            box-shadow: 0 4px 20px rgba(197,160,89,0.35);
        }

        /* ── Tab Content Panels ── */
        .pricing-panel {
            display: none;
            animation: fadeTabIn 0.45s ease both;
        }
        .pricing-panel.active {
            display: block;
        }

        @keyframes fadeTabIn {
            from { opacity: 0; transform: translateY(16px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ── Section Badge ── */
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        .section-badge.badge-blush {
            background: rgba(196,149,122,0.15);
            color: #c4957a;
            border: 1px solid rgba(196,149,122,0.25);
        }
        .section-badge.badge-mauve {
            background: rgba(154,122,158,0.15);
            color: #9a7a9e;
            border: 1px solid rgba(154,122,158,0.25);
        }


        /* ── Shared discount pill ── */
        .pkg-discount-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.3rem 0.9rem;
            border-radius: 50px;
            margin-bottom: 0.5rem;
        }
        .pkg-discount-pill.blush {
            background: rgba(196,149,122,0.18);
            color: #d4856a;
        }
        .pkg-discount-pill.mauve {
            background: rgba(154,122,158,0.18);
            color: #9a7a9e;
        }

        
        .btn-pkg {
            display: block;
            width: 100%;
            padding: 1rem;
            text-align: center;
            font-family: var(--font-body);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            background: transparent;
            color: #c4957a;
            border: 1px solid rgba(196,149,122,0.5);
            border-radius: 2px;
            cursor: pointer;
            text-decoration: none;
            margin-top: auto;
            transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
        }
        .btn-pkg:hover {
            background: linear-gradient(135deg, #c4957a, #d4a58a);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 6px 20px rgba(196,149,122,0.35);
        }

        .btn-pkg {
            display: block;
            width: 100%;
            padding: 1rem;
            text-align: center;
            font-family: var(--font-body);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            background: transparent;
            color: #9a7a9e;
            border: 1px solid rgba(154,122,158,0.5);
            border-radius: 2px;
            cursor: pointer;
            text-decoration: none;
            margin-top: auto;
            transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
        }
        .btn-pkg:hover {
            background: linear-gradient(135deg, #9a7a9e, #b090b6);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 6px 20px rgba(154,122,158,0.35);
        }

        /* ── Per-person note ── */
        .pkg-per-person-note {
            font-size: 0.72rem;
            color: var(--text-medium);
            margin-top: 0.25rem;
            opacity: 0.7;
            letter-spacing: 0.04em;
        }

        /* ── Shared info banner ── */
        .shared-info-banner {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            max-width: 700px;
            margin: 2rem auto 0;
            font-size: 0.85rem;
            color: var(--text-medium);
            line-height: 1.6;
        }
        .shared-info-banner .icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        /* ── Ensure pkg-card has position relative for pseudo ── */
        .pkg-card { position: relative; overflow: hidden; }

        /* ── 4-column grid for pricing ── */
        .menu-grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.6rem;
            margin-top: 2.5rem;
        }
        @media (max-width: 1200px) {
            .menu-grid-4 { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 640px) {
            .menu-grid-4 { grid-template-columns: 1fr; }
        }

        /* ==========================================================================
           VIRTUAL TOUR SECTION (ULTRA-PREMIUM GLASSMORPHISM & QUIET LUXURY)
           ========================================================================== */
        
        .tour-section {
            padding: 8rem 5% 6rem;
            position: relative;
            background: linear-gradient(180deg, transparent 0%, rgba(26, 29, 31, 0.02) 100%);
        }

        .tour-container {
            max-width: 1100px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.45);
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .tour-container:hover {
            box-shadow: 0 30px 60px rgba(197, 160, 89, 0.08);
        }

        /* Zone Selector Tabs */
        .tour-tabs {
            display: flex;
            justify-content: center;
            background: rgba(26, 29, 31, 0.03);
            border-bottom: 1px solid rgba(197, 160, 89, 0.1);
            padding: 1rem;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .tour-tab {
            background: transparent;
            border: 1px solid transparent;
            padding: 0.8rem 1.6rem;
            border-radius: 50px; /* Pill effect */
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.5px;
        }

        .tour-tab .tab-dot {
            width: 6px;
            height: 6px;
            background: var(--text-medium);
            border-radius: 50%;
            display: inline-block;
            transition: all 0.3s ease;
            opacity: 0.5;
        }

        .tour-tab:hover {
            background: rgba(197, 160, 89, 0.06);
            color: var(--accent-secondary);
        }

        .tour-tab.active {
            background: var(--bg-white);
            color: var(--accent-secondary);
            border-color: rgba(197, 160, 89, 0.25);
            box-shadow: 0 4px 15px rgba(197, 160, 89, 0.08);
            font-weight: 600;
        }

        .tour-tab.active .tab-dot {
            background: var(--accent-secondary);
            opacity: 1;
            transform: scale(1.5);
            box-shadow: 0 0 8px var(--accent-secondary);
        }

        /* Main Viewer Window */
        .tour-viewer-wrapper {
            position: relative;
            width: 100%;
            height: 550px;
            background: #111;
            overflow: hidden;
        }

        .tour-viewer {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Zones */
        .tour-zone {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            z-index: 1;
        }

        .tour-zone.active {
            opacity: 1;
            pointer-events: auto;
            z-index: 2;
        }

        .tour-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.02);
            transition: transform 15s cubic-bezier(0.1, 0.8, 0.3, 1);
        }

        /* Ken Burns Effect when active */
        .tour-zone.active .tour-img {
            transform: scale(1.07);
        }

        /* Hotspots */
        .tour-hotspot {
            position: absolute;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(197, 160, 89, 0.85); /* Accent secondary gold */
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 0 0 rgba(197, 160, 89, 0.5);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: pulse-gold 2.5s infinite;
            z-index: 5;
            user-select: none;
        }

        .tour-hotspot:hover {
            background: #fff;
            color: var(--accent-secondary);
            transform: scale(1.2);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
            animation: none;
        }

        @keyframes pulse-gold {
            0% {
                box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(197, 160, 89, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
            }
        }

        /* Floating Info Card */
        .tour-info-card {
            position: absolute;
            bottom: 6rem;
            left: 2rem;
            max-width: 380px;
            padding: 1.8rem;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid var(--glass-border);
            border-radius: 18px;
            backdrop-filter: blur(25px) saturate(110%);
            -webkit-backdrop-filter: blur(25px) saturate(110%);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            z-index: 10;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(0);
            opacity: 1;
        }

        .tour-info-card.updating {
            opacity: 0;
            transform: translateY(10px);
        }

        .tour-info-card h4 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            font-family: var(--font-heading);
            letter-spacing: 0.5px;
        }

        .tour-info-card p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--text-medium);
            margin: 0;
        }

        /* Control Bar with Sound Toggle and Video Modal */
        .tour-controls-bar {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            left: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
            pointer-events: none;
        }

        .btn-play-tour, .btn-audio-toggle {
            pointer-events: auto;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-play-tour {
            background: var(--accent-gold-gradient);
            color: #4A3B1D; /* Warm bronze text to match prices */
            padding: 0.9rem 1.8rem;
            border-radius: 50px;
        }

        .btn-play-tour:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(197, 160, 89, 0.3);
            filter: brightness(1.05);
        }

        .btn-play-tour .play-icon {
            font-size: 0.85rem;
            transition: transform 0.3s ease;
        }

        .btn-play-tour:hover .play-icon {
            transform: scale(1.2) translateX(1px);
        }

        .btn-audio-toggle {
            background: rgba(255, 255, 255, 0.85);
            color: var(--text-dark);
            border: 1px solid var(--glass-border);
            padding: 0.9rem 1.4rem;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .btn-audio-toggle:hover {
            transform: translateY(-3px);
            background: var(--bg-white);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }

        .btn-audio-toggle.active {
            background: rgba(139, 168, 154, 0.9); /* Subtle Sage Green when active */
            color: #fff;
            border-color: rgba(139, 168, 154, 0.3);
            animation: pulse-audio-button 2s infinite alternate;
        }

        @keyframes pulse-audio-button {
            0% { box-shadow: 0 8px 20px rgba(139, 168, 154, 0.2); }
            100% { box-shadow: 0 8px 25px rgba(139, 168, 154, 0.45); }
        }

        /* Video Modal Overrides */
        .video-modal-card {
            max-width: 800px;
            width: 90%;
            border-radius: 20px;
            overflow: hidden;
            padding: 0;
            background: rgba(26, 29, 31, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .video-modal-card .modal-header {
            padding: 1.5rem 2rem;
            background: rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .video-modal-card .modal-header h3 {
            color: #fff;
            font-family: var(--font-heading);
            font-size: 1.35rem;
            margin: 0;
        }

        .video-modal-card .close-btn {
            color: rgba(255, 255, 255, 0.85);
        }

        .video-modal-card .close-btn:hover {
            color: #fff;
        }

        .video-container-wrapper {
            padding: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* RESPONSIVE OVERRIDES */
        @media (max-width: 992px) {
            .tour-viewer-wrapper {
                height: 480px;
            }
            .tour-info-card {
                max-width: 320px;
                left: 1.5rem;
                bottom: 5.5rem;
                padding: 1.4rem;
            }
        }

        @media (max-width: 768px) {
            .tour-viewer-wrapper {
                height: 400px;
            }
            .tour-info-card {
                position: relative;
                bottom: auto;
                left: auto;
                max-width: 100%;
                margin: 1.5rem;
                border-radius: 14px;
                background: rgba(255, 255, 255, 0.9);
                transform: none !important;
                opacity: 1 !important;
                box-shadow: var(--shadow-soft);
            }
            .tour-controls-bar {
                position: relative;
                bottom: auto;
                right: auto;
                left: auto;
                padding: 0 1.5rem 1.5rem;
                display: flex;
                flex-direction: column;
                gap: 0.8rem;
                width: 100%;
            }
            .btn-play-tour, .btn-audio-toggle {
                width: 100%;
                justify-content: center;
                box-shadow: var(--shadow-soft);
            }
        }

        @media (max-width: 480px) {
            .tour-viewer-wrapper {
                height: 300px;
            }
            .tour-hotspot {
                width: 26px;
                height: 26px;
                font-size: 0.9rem;
            }
            .tour-tabs {
                padding: 0.6rem;
                gap: 0.4rem;
            }
            .tour-tab {
                padding: 0.6rem 1.2rem;
                font-size: 0.78rem;
            }
        }

/* ==========================================================================
   WHAT TO EXPECT & PRE-BOOKING MODAL STYLES (LUXURY OXYGEN THERAPY)
   ========================================================================== */

/* What to Expect Section */
.what-to-expect-section {
    padding: 5rem 5%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(20, 24, 27, 0.98) 100%);
    position: relative;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.expect-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

.expect-steps-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-secondary), transparent);
    z-index: 1;
}

.expect-step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.expect-step-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-secondary);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.step-number-bubble {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-secondary), #8A6E34);
    color: #121618;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.expect-step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--accent-secondary);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.expect-step-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Pre-Booking Modal Overlay */
.pre-booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 14, 16, 0.85);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.5rem;
}

.pre-booking-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.pre-booking-modal-card {
    background: linear-gradient(145deg, rgba(25, 30, 33, 0.96), rgba(15, 18, 20, 0.98));
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 24px;
    width: 100%;
    max-width: 650px;
    max-height: 92vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 160, 89, 0.4) transparent;
    padding: 1.8rem 2.2rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(197, 160, 89, 0.1);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pre-booking-modal-card::-webkit-scrollbar {
    width: 6px;
}

.pre-booking-modal-card::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.4);
    border-radius: 4px;
}

.pre-booking-modal-overlay.active .pre-booking-modal-card {
    transform: scale(1) translateY(0);
}

.pre-booking-close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.pre-booking-close-btn:hover {
    color: var(--accent-secondary);
}

.modal-step-badge {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--accent-secondary);
    border-radius: 20px;
    color: var(--accent-secondary);
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.modal-header-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.modal-header-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
}

.goal-selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-bottom: 1.2rem;
}

.goal-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.goal-card:hover {
    border-color: rgba(197, 160, 89, 0.5);
    background: rgba(197, 160, 89, 0.06);
}

.goal-card.selected {
    border-color: var(--accent-secondary);
    background: rgba(197, 160, 89, 0.12);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

.goal-icon {
    font-size: 1.8rem;
}

.goal-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 600;
}

.goal-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

.safety-check-container {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.1rem;
}

.safety-check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.35;
    cursor: pointer;
}

.safety-check-item:last-child {
    margin-bottom: 0;
}

.safety-check-item input[type="checkbox"] {
    accent-color: var(--accent-secondary);
    width: 15px;
    height: 15px;
    margin-top: 1px;
    flex-shrink: 0;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Mobile Sticky Booking Bar */
.mobile-sticky-booking {
    display: none;
}

@media (max-width: 768px) {
    .expect-steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .expect-steps-grid::before {
        display: none;
    }
    .goal-selection-grid {
        grid-template-columns: 1fr;
    }
    .pre-booking-modal-card {
        padding: 1.8rem 1.2rem;
    }
    
    .mobile-sticky-booking {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(20, 24, 27, 0.92);
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(197, 160, 89, 0.3);
        padding: 12px 20px;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.5);
    }
    .mobile-sticky-info {
        display: flex;
        flex-direction: column;
    }
    .mobile-sticky-title {
        font-family: var(--font-heading);
        font-size: 0.95rem;
        color: var(--accent-secondary);
        font-weight: 700;
        letter-spacing: 1px;
    }
    .mobile-sticky-sub {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.7);
    }
    .mobile-sticky-btn {
        padding: 8px 18px !important;
        font-size: 0.82rem !important;
    }
}


    