/* 
 * MNM Threading Salon - "Vision Pro" Ultra-Premium Redesign
 * Dark mode, glassmorphism, fluid animations, deep corners
 */

 :root {
    --accent: #e51d65; /* Original Pink */
    --accent-glow: rgba(229, 29, 101, 0.4);
    
    /* Dark Theme Core */
    --bg-base: #0a0a0c; /* Deep space black */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(25, 25, 28, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 30px 60px rgba(0,0,0,0.4);
    --radius-large: 24px;
    --radius-pill: 100px;
    
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --max-width: 1200px;
}

/* Base Reset & Accessibility */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-stack);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }

/* Utilities */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gray { color: var(--text-secondary); }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 2rem; }
.mt-8 { margin-top: 3rem; }
.mt-10 { margin-top: 4rem; }
.pt-8 { padding-top: 4rem; }
.pb-6 { padding-bottom: 3rem; }
.pt-12 { padding-top: 6rem; }
.pb-12 { padding-bottom: 6rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 3rem; }
.flex-center { display: flex; flex-direction: column; justify-content: center; align-items: center; }

/* Screen Reader Skip Link */
.skip-link {
    position: absolute; top: -100px; left: 0; background: var(--accent); color: white; padding: 12px; z-index: 10000; font-weight: 600; border-radius: 0 0 12px 0;
}
.skip-link:focus { top: 0; }

/* Cinematic Background Details */
.cinematic-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -1;
    overflow: hidden;
    background-color: #0f0a08; /* Warm dark base */
}
.bg-video {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05); /* Slight scale to hide edges */
    filter: blur(1px) brightness(0.85) contrast(1.1); /* Brighter, slightly sharper, more contrast */
    transition: filter 0.5s ease;
}
.cinematic-overlay {
    position: absolute; inset: 0;
    /* Soft vignette instead of harsh black gradient */
    background: radial-gradient(circle at center, rgba(10,8,6,0.1) 0%, rgba(10,8,6,0.6) 70%, rgba(5,4,3,0.9) 100%);
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    border-bottom: 1px solid transparent;
}

/* Javascript toggles this class when user scrolls down */
.sticky-header.scrolled {
    background: rgba(10, 10, 12, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 10px 0; /* Shrink header slightly on scroll */
}

/* Dynamic Open/Closed Status Indicator */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.1);
    margin-left: 15px;
    transition: all 0.3s ease;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555; /* Default Unknown */
    position: relative;
}

.status-indicator.open .status-dot {
    background: #00e676; /* Bright Green */
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
    animation: pulse-green 2s infinite;
}

.status-indicator.closed .status-dot {
    background: #ff4757; /* Soft Red */
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

@media (max-width: 768px) {
    .status-indicator {
        display: none; /* Hide on mobile to save nav space */
    }
}

/* Success Panel Overlay */
.success-panel-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-large);
    box-shadow: var(--glass-shadow);
    padding: 40px;
    text-align: center;
    max-width: 450px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.success-panel-overlay.active .success-panel {
    transform: translateY(0);
    opacity: 1;
}

.success-panel h3 {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 15px;
}

.success-panel p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Glass UI Components */
.glass-nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px 0;
}
.glass-nav.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card, .glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-large);
    box-shadow: var(--glass-shadow);
    /* overflow:hidden removed — was clipping box-shadow. Card image rounding is handled by card-img-wrapper */
}

.glass-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Typography elements */
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-desc { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
/* Sub-section headings (e.g. membership title, pricing subtitles) */
.subsection-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; font-weight: 700; letter-spacing: -0.02em; }

/* Buttons & Links */
.glow-btn {
    display: inline-block;
    padding: 16px 36px;
    background: var(--accent);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-pill);
    box-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.glow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
    background: #ff2a7a;
}
/* Per-tier membership activation button */
.membership-tier-btn {
    width: 100%;
    margin-top: 16px;
    padding: 11px 16px;
    background: transparent;
    border: 1px solid rgba(229,29,101,0.35);
    border-radius: var(--radius-pill);
    color: rgba(229,29,101,0.9);
    font-family: var(--font-stack);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.25s ease;
}
.membership-tier-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(229,29,101,0.35);
}

.glass-btn {
    display: inline-block;
    padding: 16px 36px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.glass-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.icon-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent); font-weight: 600; transition: gap 0.3s ease;
}
.icon-link:hover { gap: 12px; }

/* Navigation */
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { 
    height: 95px; /* Increased by ~35% from 70px */
    width: 150px; /* Explicit width prevents SVG from collapsing to 0 in flexbox */
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); 
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.2));
}
.logo-link {
    display: inline-flex;
    align-items: center;
    position: relative;
    /* Removed overflow: hidden so glow isn't clipped */
}



.logo-link:hover .logo {
    transform: scale(1.06) rotate(-1deg);
    filter: drop-shadow(0 0 16px rgba(229, 29, 101, 0.55));
}
.logo-link:active .logo {
    transform: scale(0.97);
    transition-duration: 0.1s;
}
.nav-menu { list-style: none; display: flex; align-items: center; gap: 32px; }
.nav-menu a { 
    font-size: 15px; 
    font-weight: 500; 
    color: rgba(255, 255, 255, 0.9); 
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: transparent;
}
.nav-menu a:hover, .nav-menu a.active { 
    color: white; 
}
.nav-menu a.nav-cta {
    background: var(--accent); /* Make it pop more with the brand pink */
    color: white !important; 
    padding: 10px 24px; 
    border-radius: var(--radius-pill); 
    font-weight: 600 !important; 
    transition: transform 0.3s ease, background 0.3s ease !important;
    border: none;
}
.nav-menu a.nav-cta:hover { 
    transform: scale(1.05); 
    background: #ff3377; /* Slightly brighter pink on hover */
}

/* Magic Sliding Pill */
.nav-menu { position: relative; }
.nav-pill-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-pill);
    pointer-events: none;
    z-index: 0;
    transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1), width 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    opacity: 0;
}

/* Mobile Menu Button */
.mobile-menu-toggle { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; }
.hamburger { display: block; width: 24px; height: 2px; background: white; position: relative; transition: background 0.3s; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 24px; height: 2px; background: white; left: 0; transition: transform 0.3s; }
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Hero Section */
.hero-section {
    height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding-top: 80px; /* Offset for nav */
}
.hero-title { font-size: 72px; margin-bottom: 24px; }
.hero-subtitle { font-size: 22px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ── Hero Slideshow ─────────────────────────────────── */
.hero-slides {
    position: relative;
    min-height: 220px;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ── Word-by-Word Breathing Animation ────────────── */
.hero-anim-title .hero-word,
.hero-anim-sub .hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    filter: blur(4px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.hero-slide.active .hero-anim-title .hero-word.revealed,
.hero-slide.active .hero-anim-sub .hero-word.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Subtle breathing pulse on revealed words */
.hero-slide.active .hero-anim-title .hero-word.revealed {
    animation: heroWordBreathe 4s ease-in-out infinite;
    animation-delay: inherit;
}

@keyframes heroWordBreathe {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.82; }
}

/* Keep gradient spans inline and pass gradient to child word spans */
.hero-anim-title .text-gradient {
    display: inline;
    /* Reset parent gradient since children will each carry their own */
    -webkit-text-fill-color: transparent;
}
.hero-anim-title .text-gradient .hero-word {
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── SVG Logo Animation ────────────────────────────── */
.sketch-anim path {
    stroke: #ffffff;
    stroke-width: 2;
    fill: transparent;
    stroke-dasharray: 4000;
    stroke-dashoffset: 4000;
    animation: sketchReveal 3s ease-in-out forwards;
}

@keyframes sketchReveal {
    0% {
        stroke-dashoffset: 4000;
        fill: transparent;
    }
    70% {
        stroke-dashoffset: 0;
        fill: transparent;
    }
    100% {
        stroke-dashoffset: 0;
        fill: #ffffff;
    }
}

.fade-in-text {
    opacity: 0;
    animation: textFadeIn 1s ease-in forwards;
    animation-delay: 2.2s; /* Starts right before the sketch completes */
}

@keyframes textFadeIn {
    to {
        opacity: 1;
    }
}
/* ── Dot Navigation ─────────────────────────────────── */
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    margin-bottom: 8px;
}
.hero-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 20px solid transparent;
    background-color: rgba(255, 255, 255, 0.5);
    background-clip: padding-box;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s ease;
}
.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}
.hero-dot.active {
    width: 64px;
    height: 48px;
    border-radius: 100px;
    border: 20px solid transparent;
    background: linear-gradient(135deg, var(--accent), #ff6b9d);
    background-clip: padding-box;
    box-shadow: 0 0 12px rgba(229, 29, 101, 0.45);
}

/* ── Mobile: center phone button + all hero buttons ── */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .glow-btn,
    .hero-buttons .glass-btn,
    .hero-buttons .hero-phone-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: center;
    }
    .hero-slides {
        min-height: 200px;
    }
}

/* Services section */
.services-wrapper {
    position: relative;
}
.services-wrapper .container { position: relative; z-index: 2; }

/* Service Grid */
.service-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px;
}

.card-img-wrapper {
    height: 240px; overflow: hidden; border-radius: var(--radius-large) var(--radius-large) 0 0;
}
.card-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover .card-img-wrapper img { transform: scale(1.05); }
.card-content { padding: 32px; }
.card-content h3 { font-size: 24px; margin-bottom: 12px; }
.card-content p { color: var(--text-secondary); font-size: 15px; }

.hover-lift { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease; }
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.2);
}

.hero-card {
    background: linear-gradient(135deg, rgba(25,25,28,0.4) 0%, rgba(229,29,101,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}
.hero-card .flex-center {
    width: 100%;
    height: 100%;
    flex: 1;
    padding: 32px;
    text-align: center;
}
.hero-card .flex-center h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 20px;
    color: #fff;
}


/* Pricing */
.membership-header { margin-bottom: 0; }
.membership-eyebrow-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(229,29,101,0.1);
    border: 1px solid rgba(229,29,101,0.25);
    border-radius: var(--radius-pill);
    padding: 5px 14px;
    margin-bottom: 20px;
}

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

/* Base card */
.pricing-card {
    border-radius: 28px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 40px 80px rgba(0,0,0,0.55);
}

/* Featured (middle) card */
.pricing-card--featured {
    background: rgba(229,29,101,0.06);
    border-color: rgba(229,29,101,0.35);
    transform: scale(1.04);
    box-shadow: 0 32px 80px rgba(229,29,101,0.12), 0 0 0 1px rgba(229,29,101,0.2) inset;
}
.pricing-card--featured:hover {
    transform: scale(1.04) translateY(-8px); /* Added translateY to match other cards */
    border-color: rgba(229,29,101,0.55);
    box-shadow: 0 48px 100px rgba(229,29,101,0.3), 0 0 0 1px rgba(229,29,101,0.3) inset;
}

/* Ambient glow orb under featured card */
.pricing-featured-glow {
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229,29,101,0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-card-inner {
    position: relative;
    z-index: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* "Most Popular" badge */
.pricing-badge {
    display: inline-flex;
    align-self: flex-start;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(229,29,101,0.4);
}

.pricing-card-top { text-align: center; margin-bottom: 32px; }

.pricing-icon {
    font-size: 14px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.2);
    margin-bottom: 16px;
}
.pricing-icon--featured { color: var(--accent); }

.pricing-name {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.pricing-amount-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}
.pricing-currency {
    font-size: 28px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
    line-height: 1;
}
.pricing-amount {
    font-size: 72px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
}
.pricing-period {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    font-weight: 400;
}

/* Feature checklist */
.pricing-features {
    list-style: none;
    margin: 0 0 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}
.feature-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(229,29,101,0.15);
    border: 1px solid rgba(229,29,101,0.3);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* Per-tier membership activation button */
.membership-tier-btn {
    width: 100%;
    margin-top: auto;
    padding: 14px 20px;
    background: transparent;
    border: 1px solid rgba(229,29,101,0.3);
    border-radius: var(--radius-pill);
    color: rgba(229,29,101,0.9);
    font-family: var(--font-stack);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.membership-tier-btn:hover {
    background: rgba(229,29,101,0.12);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(229,29,101,0.25);
}
.membership-tier-btn--featured {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(229,29,101,0.4);
}
.membership-tier-btn--featured:hover {
    background: #ff2a7a;
    border-color: #ff2a7a;
    box-shadow: 0 8px 32px rgba(229,29,101,0.5);
}

/* Footer note */
.membership-footer {
    text-align: center;
    margin-top: 40px;
}
.membership-footnote {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Profiles */
.profile-row { display: flex; align-items: center; gap: 60px; }
.profile-row.reverse { flex-direction: row-reverse; }
.profile-img-glow {
    flex: 1; position: relative;
}
.profile-img-glow::after {
    content: ''; position: absolute; inset: -20px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1; border-radius: 50%;
}
.avatar-large {
    width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-large);
    border: 1px solid var(--glass-border);
}
.profile-row .glass-card { flex: 1.2; padding: 48px; }
.profile-row h2 { font-size: 40px; margin-bottom: 24px; }
.profile-row p { font-size: 18px; color: var(--text-secondary); margin-bottom: 16px; }

/* Scroll Reveal Text Effect */
.scroll-reveal-text .reveal-word {
    opacity: 0.2;
    transition: opacity 0.1s ease-in-out, color 0.1s ease-in-out;
}
.scroll-reveal-text .reveal-word.active {
    opacity: 1;
    color: var(--text-primary, #ffffff);
}

/* Reviews (Horizontal Scroll Simulation) */
.review-track-container { 
    width: 100%; 
    overflow: hidden; 
    padding: 20px 24px 60px 24px; /* Bottom padding prevents shadow clipping */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.review-track-container::-webkit-scrollbar { display: none; }
.review-track { 
    display: flex; 
    gap: 24px; 
    width: max-content; 
    padding-right: 24px;
    animation: scroll-reviews 60s linear infinite;
}
.review-track:hover {
    animation-play-state: paused; /* Pause on hover for readability */
}

@keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); } /* 12px is half gap */
}
.review-card { width: 400px; padding: 40px; display: flex; flex-direction: column; }
.stars { font-size: 20px; margin-bottom: 24px; letter-spacing: 2px; }
.review-card blockquote { font-size: 18px; line-height: 1.5; color: white; flex-grow: 1; margin-bottom: 24px; }
.reviewer { font-weight: 600; color: var(--text-secondary); }

/* Modern FAQ Accordion */
.faq-accordion { max-width: 800px; margin: 0 auto; padding: 40px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 8px; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
    padding: 24px 0; font-size: 20px; font-weight: 500; cursor: pointer; list-style: none; position: relative; color: white;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--accent); transition: transform 0.3s;
}
.faq-item[open] summary::after { content: '−'; transform: translateY(-50%) rotate(180deg); }
.faq-content { padding: 0 0 24px 0; color: var(--text-secondary); font-size: 16px; line-height: 1.6; animation: slideDown 0.3s ease-out; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Footer */
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { padding: 40px; }
.footer-col h3 { font-size: 22px; margin-bottom: 24px; color: white; }
.footer-link { font-size: 18px; color: var(--text-secondary); display: block; margin-bottom: 12px; transition: color 0.3s; }
.footer-link:hover { color: white; }
address { font-style: normal; color: var(--text-secondary); line-height: 1.6; }
.social-list { list-style: none; }
.social-list li { margin-bottom: 16px; }

/* Scroll Animations Engine */
.fade-up-anim {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up-anim.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .service-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
    .pricing-card--featured { transform: scale(1); }
    .pricing-card--featured:hover { transform: translateY(-8px); }
    .hero-title { font-size: 56px; }
    .profile-row { gap: 40px; }
}

@media (max-width: 768px) {
    .service-grid, .footer-grid, .pricing-grid { grid-template-columns: 1fr; }
    .profile-row, .profile-row.reverse { flex-direction: column; text-align: center; }
    .hero-title { font-size: 44px; }
    .hero-subtitle { font-size: 18px; }
    .hero-buttons { flex-direction: column; }
    .glass-panel { padding: 32px; }
    .faq-accordion { padding: 24px; }
    
    /* Mobile Nav */
    .mobile-menu-toggle { display: block; }
    .nav-pill-slider { display: none !important; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        width: auto;
        background: rgba(14, 14, 18, 0.92);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        flex-direction: column;
        padding: 20px 24px;
        gap: 4px;
        margin-top: 8px;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.03) inset;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-menu a {
        padding: 12px 16px;
        font-size: 16px;
        border-radius: 12px;
        text-align: center;
        transition: background 0.2s ease;
    }
    .nav-menu a:hover,
    .nav-menu a:active {
        background: rgba(255, 255, 255, 0.06);
    }
    .nav-menu a.nav-cta {
        margin-top: 8px;
        padding: 14px 24px;
    }
}

/* === Contact Grid (Map & Form) === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.map-container {
    padding: 0; /* Remove padding to let map hit the glass edges */
    min-height: 400px;
    border-radius: var(--radius-large);
    overflow: hidden;
}

.map-wrapper {
    display: flex;
    flex-direction: column;
}

.map-actions {
    display: flex;
    gap: 16px;
    margin-top: -8px; /* Pulled up slightly to align with the form better */
}

.flex-1 {
    flex: 1;
}

.form-container {
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.glass-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.glass-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px var(--accent-glow);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.glass-input {
    resize: vertical;
    min-height: 120px;
}

.w-100 {
    width: 100%;
}

select.glass-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}
select.glass-input option {
    background-color: var(--bg-base);
    color: white;
}

@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        min-height: 300px;
    }
}

/* === ADA Floating Widget (Premium Glassmorphism) === */
.ada-widget {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-end;
}

.ada-btn {
    width: auto;
    height: 48px;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    background: rgba(20, 20, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-stack);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.ada-btn:hover {
    background: rgba(35, 35, 40, 0.95);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

.ada-btn svg { flex-shrink: 0; opacity: 0.9; }
.ada-btn-label { white-space: nowrap; }

.ada-menu {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 340px;
    background: rgba(14, 14, 18, 0.92);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset, 0 1px 0 rgba(255,255,255,0.08) inset;
    transform: translateY(12px) scale(0.97);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom left;
    overflow: hidden;
}

.ada-menu.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.ada-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.02);
}

.ada-header-left { display: flex; align-items: center; gap: 12px; }

.ada-header-icon {
    width: 36px; height: 36px;
    background: rgba(229,29,101,0.15);
    border: 1px solid rgba(229,29,101,0.3);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.ada-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 3px;
    letter-spacing: -0.01em;
}

.ada-wcag-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 1px 6px;
}

.ada-close {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.ada-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.ada-body { padding: 16px 16px 12px; }

.ada-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin: 0 0 10px 4px;
}

.ada-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ada-option-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-stack);
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    overflow: hidden;
}

.ada-option-btn:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.15);
}

.ada-option-btn.active {
    background: rgba(229,29,101,0.12);
    border-color: rgba(229,29,101,0.35);
    color: #fff;
}

.ada-opt-icon { flex-shrink: 0; display: flex; align-items: center; }
.ada-opt-label { flex: 1; font-size: 12px; line-height: 1.2; }

.ada-toggle-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
    transition: background 0.2s;
}

.ada-option-btn.active .ada-toggle-dot {
    background: var(--accent);
    box-shadow: 0 0 6px rgba(229,29,101,0.6);
}

.ada-reset-btn {
    width: 100%;
    margin-top: 12px;
    padding: 11px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-stack);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}
.ada-reset-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }

.ada-footer {
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 10px;
    color: rgba(255,255,255,0.2);
    text-align: center;
    letter-spacing: 0.04em;
}

/* Reading guide line */
#reading-guide-line {
    display: none;
    position: fixed;
    left: 0; right: 0;
    height: 36px;
    background: rgba(255,255,200,0.08);
    border-top: 1px solid rgba(255,255,150,0.2);
    border-bottom: 1px solid rgba(255,255,150,0.2);
    pointer-events: none;
    z-index: 8000;
    transition: top 0.05s linear;
}
html.ada-reading-guide #reading-guide-line { display: block; }

/* === Branding Badges === */
.footer-badges-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.dfw-badge, .os-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-pill);
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    overflow: hidden;
}

/* Continuous Shimmer Animation */
.dfw-badge::before, .os-badge::before {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-20deg);
    animation: badge-shimmer 3s infinite;
}

@keyframes badge-shimmer {
    0% { left: -150%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

.dfw-badge:hover, .os-badge:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05) inset;
}

.dfw-badge img { height: 18px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; transition: opacity 0.3s; }
.dfw-badge:hover img { opacity: 1; }

.os-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FF6B6B, #556270);
    border-radius: 5px;
    color: #fff;
    font-size: 10px;
    box-shadow: 0 2px 8px rgba(255,107,107,0.4);
    transition: transform 0.4s ease;
}
.os-badge:hover .os-badge-icon {
    transform: rotate(360deg) scale(1.1);
}

.badge-text { display: flex; flex-direction: column; line-height: 1.2; text-align: left;}
.badge-text span:first-child { font-size: 9px; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.3s; }
.badge-text span:last-child { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.8); transition: color 0.3s;}

.dfw-badge:hover .badge-text span:last-child, .os-badge:hover .badge-text span:last-child { color: #fff; }
.dfw-badge:hover .badge-text span:first-child, .os-badge:hover .badge-text span:first-child { color: rgba(255,255,255,0.6); }

/* Custom Colors for SalonOS */
.os-badge:hover {
    border-color: rgba(255,107,107,0.4);
    box-shadow: 0 8px 20px rgba(255,107,107,0.15), 0 0 0 1px rgba(255,107,107,0.1) inset;
}

/* === ADA Feature Overrides === */

/* High Contrast mode */
html.ada-high-contrast {
    --bg-base: #000000;
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --accent: #ffff00;
    --accent-glow: transparent;
    --glass-bg: #000000;
    --glass-border: #ffffff;
}

html.ada-high-contrast .glass-nav.scrolled,
html.ada-high-contrast .glass-card,
html.ada-high-contrast .glass-panel {
    background: #000;
    backdrop-filter: none;
}

html.ada-high-contrast .cinematic-bg { display: none; }

/* Large Text Mode */
html.ada-large-text body { font-size: 120%; }
html.ada-large-text h1 { font-size: 130%; }
html.ada-large-text h2 { font-size: 130%; }
html.ada-large-text p { font-size: 120%; }

/* Line Height Mode */
html.ada-line-height body,
html.ada-line-height p,
html.ada-line-height li { line-height: 2.2 !important; }

/* Highlight Links */
html.ada-highlight-links a:not(.nav-cta):not(.glow-btn):not(.social-icon-premium):not(.dfw-badge) {
    background: rgba(255, 255, 0, 0.15) !important;
    outline: 1px solid rgba(255, 255, 0, 0.5) !important;
    color: #fff !important;
    border-radius: 3px;
    padding: 0 2px;
}

/* Dyslexic Font */
html.ada-dyslexic-font body,
html.ada-dyslexic-font h1,
html.ada-dyslexic-font h2,
html.ada-dyslexic-font h3,
html.ada-dyslexic-font button,
html.ada-dyslexic-font a {
    font-family: "Comic Sans MS", "Arial", sans-serif !important;
    letter-spacing: 0.05em;
    word-spacing: 0.1em;
}

/* Pause Animations */
html.ada-pause-animations * {
    transition: none !important;
    animation: none !important;
    transform: none !important;
}
html.ada-pause-animations .cinematic-bg { display: none; }

/* Big Cursor */
html.ada-big-cursor,
html.ada-big-cursor * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24'%3E%3Cpath fill='white' stroke='black' stroke-width='1' d='M4 4l7 19 3-7 7-3-17-9z'/%3E%3C/svg%3E") 4 4, auto !important;
}



/* =========================================
   LIGHT THEME TRANSITION & PARALLAX SECTIONS 
   ========================================= */

/* The fade gradient to break out of cinematic dark mode */
.light-transition-start {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.8) 70%, #ffffff 100%);
    z-index: 5;
    pointer-events: none;
    margin-top: -300px;
}

/* Base Light Theme Container */
.light-theme-wrapper {
    position: relative;
    background: #faf9f7;
    color: #333333;
    z-index: 5;
}
.light-theme-wrapper h2 { color: #111; font-weight: 300; letter-spacing: 0.02em; }
.light-theme-wrapper .text-dark { color: #111; }
.bg-light-cream { background: #faf9f7; }

/* Elegant Bio Layout */
.bio-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.bio-wrapper.reverse { grid-template-columns: 1fr 1.2fr; }
.bio-image-full { width: 100%; border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }

.bio-text-area { padding-right: 40px; }
.bio-header-chic {
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
.bio-text-area h2 { font-size: 2.2rem; margin-bottom: 24px; font-weight: 600; }
.bio-text-area p { color: #555; font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }

/* Vibrant Parallax Sections */
.parallax-vibrant {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0;
    display: flex;
    align-items: center;
}
.parallax-henna { background-image: url('https://mnmsanleandro.com/wp-content/uploads/2025/06/drawing-mehndi-on-the-hand-of-a-girl-2024-10-18-08-21-07-utc-scaled.jpg'); }
.parallax-services { background-image: url('https://mnmsanleandro.com/wp-content/uploads/2025/06/eyelash-extensions-in-a-beauty-salon-a-young-girl-2025-01-08-02-52-14-utc-1024x683.jpg'); }

.parallax-overlay-teal {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(90deg, rgba(43, 135, 218, 0) 0%, rgba(42, 170, 190, 0.58) 50%, #04bc66 81%, #04bc66 100%);
}
.parallax-overlay-warm {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(90deg, rgba(43, 135, 218, 0) 0%, rgba(42, 170, 190, 0.58) 50%, #b73d6f 81%, #b73d6f 100%);
}

.parallax-text-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
}
.parallax-text-content h2 { color: white; font-size: 3.5rem; font-weight: 300; margin-bottom: 24px; line-height: 1.1; }
.parallax-text-content p { font-size: 1.15rem; line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.parallax-content-right { margin-left: auto; text-align: left; }

/* Pricing - Unlimited */
.unlimited-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.unlimited-tier {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.unlimited-tier:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.unlimited-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.unlimited-price span { font-size: 1.5rem; margin-top: 10px; color: #666;}
.unlimited-label {
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 10px;
}
.unlimited-sub {
    color: #888;
    font-size: 1rem;
}

/* Warm Contact Section (Original Refab) */
.contact-warm-bg {
    background: linear-gradient(135deg, #e8d7d0 0%, #c1a99a 100%);
    padding: 100px 0;
}
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.contact-info-clean h2 { font-size: 2.5rem; color: #222; margin-bottom: 40px; }
.contact-info-clean p { color: #333; font-weight: 500; margin-bottom: 5px;}
.contact-info-clean .light-detail { font-weight: 400; color: #555; margin-bottom: 20px;}

.clean-form .form-group { margin-bottom: 15px; }
.clean-input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 8px;
    border: none;
    background: white;
    font-family: inherit;
    font-size: 14px;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.clean-input::placeholder { color: #aaa; text-transform: uppercase; font-size: 11px; letter-spacing: 1px;}
.btn-submit-clean {
    background: #aab8c2;
    color: #222;
    border: none;
    padding: 14px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-submit-clean:hover { background: #94a3af; }

/* Minimalist Footer */
.ultra-clean-footer {
    background: #faf9f7;
    color: #333;
    border-top: 1px solid #eee;
    padding: 80px 0 40px;
    position: relative;
    z-index: 5;
}
.footer-minimal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-minimal-col h3 { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 24px; display: flex; align-items: center;}
.footer-minimal-col h3::before {
    content: '';
    display: inline-block;
    width: 12px; height: 12px;
    border-radius: 50%;
    border: 2px solid #ccc;
    margin-right: 10px;
    border-top-color: #111;
    transform: rotate(45deg);
}
.footer-minimal-col p, .footer-minimal-col address { color: #666; font-size: 14px; line-height: 2; font-style: normal; }
.footer-minimal-col a { color: #111; text-decoration: none; font-weight: 600; font-size: 13px; display: block; margin-bottom: 15px; transition: color 0.3s;}
.footer-minimal-col a:hover { color: var(--accent); }
.footer-minimal-col a span { font-size: 10px; margin-left: 5px; color: #888;}
.footer-copyright { border-top: 1px solid #eee; margin-top: 60px; padding-top: 30px; text-align: center; font-size: 13px; color: #888;}

html.ada-pause-animations .fade-up-anim {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Glass Footer */
.premium-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 16px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.premium-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.premium-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.premium-footer-section {
    position: relative;
    background: #050505;
    overflow: hidden;
    padding: 100px 0 0;
}

.premium-footer-glow-1 {
    position: absolute; top: -20%; left: -10%; width: 60%; height: 80%; background: radial-gradient(circle, rgba(180, 20, 80, 0.15) 0%, transparent 60%); filter: blur(80px); pointer-events: none;
}
.premium-footer-glow-2 {
    position: absolute; bottom: -20%; right: -10%; width: 60%; height: 80%; background: radial-gradient(circle, rgba(20, 80, 150, 0.15) 0%, transparent 60%); filter: blur(80px); pointer-events: none;
}

/* ═══ 3-Column Footer Grid (menu.html, about.html) ═══ */
.premium-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.footer-map-container {
    /* Middle column: Google Map */
    min-height: 400px;
}

.social-icon-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}
.social-icon-premium:hover {
    background: rgba(229,29,101,0.15);
    border-color: rgba(229,29,101,0.4);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .premium-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-map-container {
        grid-column: 1 / -1;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .premium-footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-info-grid {
        grid-template-columns: 1fr;
    }
    .footer-map-container {
        grid-column: auto;
        min-height: 240px;
    }
}

/* ═══ LAYER 1: CTA Hero Bar ═══ */
.footer-cta-bar {
    margin-bottom: 48px;
}
.footer-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 40px 48px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(229,29,101,0.12) 0%, rgba(183,148,244,0.10) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
}
.footer-cta-phones {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e51d65, #c41856);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(229,29,101,0.25);
}
.footer-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229,29,101,0.35);
}
.footer-phone-btn-alt {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: none;
}
.footer-phone-btn-alt:hover {
    background: rgba(255,255,255,0.14);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ═══ LAYER 2: Map + Form Row ═══ */
.footer-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-map-wide {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    min-height: 450px;
}
.footer-map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.footer-map-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
}
.footer-form-wide {
    display: flex;
    align-items: stretch;
}
.footer-form-card {
    flex: 1;
    padding: 50px;
    border-radius: 20px;
    background: rgba(15,15,20,0.6);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
}

/* ═══ LAYER 3: Accessibility Section ═══ */
.footer-a11y-section {
    margin-bottom: 48px;
}
.footer-a11y-inner {
    padding: 40px 48px;
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
}
.footer-a11y-header {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-a11y-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(99,179,237,0.15), rgba(183,148,244,0.15));
    border: 1px solid rgba(99,179,237,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #63b3ed;
    flex-shrink: 0;
}
.footer-wcag-badge {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(99,179,237,0.12);
    border: 1px solid rgba(99,179,237,0.25);
    border-radius: 6px;
    color: #63b3ed;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.footer-a11y-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-a11y-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}
.footer-a11y-pill:hover {
    background: rgba(99,179,237,0.1);
    border-color: rgba(99,179,237,0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(99,179,237,0.15);
}

/* ═══ LAYER 4: Info Grid ═══ */
.footer-info-layer {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 48px;
    padding: 48px 0;
    margin-bottom: 0;
}
.footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
    margin: 0 0 18px;
    text-transform: uppercase;
}
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-link-list li {
    margin-bottom: 10px;
}
.footer-link-list a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s, padding-left 0.3s;
}
.footer-link-list a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-hours-row span:last-child {
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ═══ LAYER 5: Copyright Bar ═══ */
.footer-copyright-bar {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom-link {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-bottom-link:hover {
    color: #fff;
}

/* ═══ Footer Responsive ═══ */
@media (max-width: 1024px) {
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
    .footer-cta-phones {
        justify-content: center;
    }
    .footer-contact-row {
        grid-template-columns: 1fr;
    }
    .footer-map-wide {
        min-height: 350px;
    }
    .footer-a11y-inner {
        padding: 32px;
    }
    .footer-info-layer {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-info-layer {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 0;
    }
    .footer-form-card {
        padding: 32px;
    }
    .footer-a11y-tools {
        justify-content: center;
    }
    .footer-copyright-bar {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

.social-icon-premium {
    color: #aaa;
    display: flex; justify-content: center; align-items: center;
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.social-icon-premium:hover {
    color: #fff;
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* ═══════ Google Reviews Carousel ═══════ */
.reviews-section {
    background: linear-gradient(180deg, transparent 0%, rgba(229,29,101,0.02) 50%, transparent 100%);
}

.reviews-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 24px;
    animation: reviewsScroll 60s linear infinite;
    width: max-content;
    padding: 20px 0 80px 0; /* Huge bottom padding so 60px box-shadow doesn't clip */
}
.reviews-track:hover { animation-play-state: paused; }

@keyframes reviewsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    flex: 0 0 360px;
    padding: 32px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: default;
}
.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(229,29,101,0.2);
}

.review-stars {
    font-size: 18px;
    color: #fbbf24;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin: 0 0 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #b794f4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.review-date {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin-top: 1px;
}

@media (max-width: 768px) {
    .review-card { flex: 0 0 290px; padding: 24px; }
    .reviews-track { animation-duration: 40s; }
}

/* Mobile Navigation Panel */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(15, 10, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255,255,255,0.05);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 30px;
}
.mobile-nav-panel.active {
    right: 0;
}
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}
.mobile-nav-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.mobile-menu-close {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.mobile-menu-close:hover {
    transform: rotate(90deg) scale(1.1);
}
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}
.mobile-nav-list li {
    margin-bottom: 20px;
}
.mobile-nav-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
}
.mobile-nav-list a:hover, .mobile-nav-list a.active {
    color: #e51d65;
}
.mobile-nav-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
    .desktop-only { display: none !important; }
}
