/* Exótica Maid RGV — Main Stylesheet v3 (Luxury Gold Design System) */

:root {
    /* === NEW DESIGN SYSTEM — Luxury Gold Palette === */
    /* Backgrounds */
    --color-bg-primary: #0A0A0F;
    --color-bg-secondary: #111118;
    --color-bg-footer: #050508;

    /* Accents */
    --color-accent-gold: #D4A843;
    --color-accent-gold-hover: #E8C567;
    --color-accent-purple: #6B2D8D;
    --color-accent-rose: #B76E79;

    /* Text */
    --color-text-primary: #F0E6D2;
    --color-text-secondary: #9B8B7A;
    --color-text-muted: #5A5048;

    /* Borders & Glows */
    --color-border-gold: rgba(212,168,67,0.15);
    --color-border-gold-hover: rgba(212,168,67,0.3);
    --shadow-gold: 0 0 20px rgba(212,168,67,0.3);
    --shadow-gold-lg: 0 0 40px rgba(212,168,67,0.4);

    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 80px;
    --content-max-width: 1280px;
    --grid-gap: 32px;

    /* === BACKWARD COMPATIBILITY — Mapped to new system === */
    --primary-red: #9B2335;
    --primary-red-dark: #6B1825;
    --primary-red-glow: rgba(155, 35, 53, 0.25);
    --gold: #D4A843;
    --gold-light: #E8C567;
    --gold-glow: rgba(212, 168, 67, 0.15);

    --dark-bg: #0A0A0F;
    --dark-bg-secondary: #111118;
    --dark-bg-tertiary: #1A1A1E;
    --dark-bg-elevated: #1E1E22;

    --surface: rgba(17,17,24,0.8);
    --surface-hover: rgba(17,17,24,0.95);
    --surface-elevated: #1A1A22;
    --border: rgba(212,168,67,0.15);
    --border-hover: rgba(212,168,67,0.3);
    --border-accent: rgba(212,168,67,0.25);

    --white: #F0E6D2;
    --off-white: #E5DCC8;
    --gray: #9B8B7A;
    --gray-light: #B8A99A;
    --gray-muted: #5A5048;

    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;

    /* Typography — New Luxury Fonts */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-10: 4rem;
    --space-12: 6rem;

    /* Effects — Sharp Luxury */
    --border-radius-sm: 4px;
    --border-radius: 4px;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;
    --border-radius-pill: 999px;
    --transition-fast: 0.15s ease;
    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.4);
    --shadow: 0 4px 16px rgba(0,0,0,0.5);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);

    /* Button Accent — Primary interactive color */
    --btn-accent: var(--gold);
    --btn-accent-hover: #B8941D;
    --btn-accent-shadow: var(--shadow-gold);
    --btn-accent-shadow-lg: var(--shadow-gold-lg);

    /* Layout */
    --max-width: 1280px;
    --header-height: 72px;
}

@media (max-width: 768px) {
    :root { --section-padding: 80px; }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0A0A0F; }
::-webkit-scrollbar-thumb { background: #D4A843; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #E8C567; }

/* ─── Reset & Base ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ─── Accessibility ─── */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 var(--border-radius-sm) 0;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.05;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p {
    margin-bottom: var(--space-4);
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.7;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary-red); }
.text-gold { color: var(--gold); }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--btn-accent);
    color: #fff;
    box-shadow: var(--btn-accent-shadow);
}

.btn-primary:hover {
    background: var(--btn-accent-hover);
    color: #fff;
    transform: scale(1.05);
    box-shadow: var(--btn-accent-shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--btn-accent);
    border: 1px solid var(--btn-accent);
}

.btn-secondary:hover {
    background: var(--btn-accent);
    color: #fff;
    transform: scale(1.05);
    box-shadow: var(--btn-accent-shadow);
}

.btn-gold {
    background: var(--btn-accent);
    color: #fff;
    box-shadow: var(--btn-accent-shadow);
}

.btn-gold:hover {
    background: var(--btn-accent-hover);
    transform: scale(1.05);
    box-shadow: var(--btn-accent-shadow-lg);
}

.btn-sm {
    padding: 10px 28px;
    font-size: 12px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 14px;
}

/* Icon inside buttons */
.btn i.ph,
.btn i.ph-fill {
    font-size: 1.25em;
    flex-shrink: 0;
}

/* ─── Container ─── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.section {
    padding: var(--space-12) 0;
    position: relative;
}

.section-alt {
    background: var(--dark-bg-secondary);
}

/* ─── Wave Dividers ─── */
.wave-top,
.wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.wave-top {
    top: -1px;
}

.wave-bottom {
    bottom: -1px;
    transform: rotate(180deg);
}

.wave-top svg,
.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-top svg path,
.wave-bottom svg path {
    fill: var(--dark-bg-secondary);
}

/* Wave transitioning from alt section back to default */
.wave-bottom-light svg path {
    fill: var(--dark-bg);
}

/* ─── Decorative Background Shapes ─── */
.section-decor {
    overflow: hidden;
    padding-top: var(--header-height);
}

.section-decor::before,
.section-decor::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.04;
}

.section-decor::before {
    width: 500px;
    height: 500px;
    background: var(--primary-red);
    top: -150px;
    right: -100px;
}

.section-decor::after {
    width: 400px;
    height: 400px;
    background: var(--gold);
    bottom: -100px;
    left: -80px;
}

/* ─── Section Accent Top Line ─── */
.section-accent-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-10);
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: var(--space-3);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    border-radius: 2px;
}

.section-title p {
    margin-top: var(--space-3);
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Section Dividers ─── */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    margin: 0 auto;
    max-width: 200px;
}

.angle-top {
    clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
    margin-top: -4vw;
    padding-top: calc(var(--space-12) + 4vw);
}

.angle-bottom {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
    padding-bottom: calc(var(--space-12) + 4vw);
}

/* ─── Background Image Sections ─── */
.bg-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13,13,13,0.80) 0%, rgba(13,13,13,0.65) 50%, rgba(13,13,13,0.80) 100%);
    z-index: 0;
}

.bg-section > * {
    position: relative;
    z-index: 1;
}

.bg-dim-light::before { background: linear-gradient(to bottom, rgba(13,13,13,0.70) 0%, rgba(13,13,13,0.55) 100%); }
.bg-dim-heavy::before { background: linear-gradient(to bottom, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.85) 100%); }

.bg-dim-red::before {
    background: linear-gradient(to bottom, rgba(13,13,13,0.88), rgba(13,13,13,0.72));
}

.bg-dim-accent::before {
    background: linear-gradient(135deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.65) 50%, rgba(13,13,13,0.80) 100%);
}

.bg-dim-top::before {
    background: linear-gradient(to bottom, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.70) 100%);
}

.bg-dim-bottom::before {
    background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.70) 100%);
}

/* Parallax background option */
.bg-parallax {
    background-attachment: fixed;
}
@media (max-width: 768px) {
    .bg-parallax { background-attachment: scroll; }
}

/* ─── Header / Navigation ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(13, 13, 13, 1);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

.logo span {
    color: var(--primary-red);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav a {
    color: var(--gray-light);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: var(--space-1) 0;
    font-family: var(--font-body);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    transition: var(--transition);
    border-radius: 1px;
}

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

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

.nav a.active {
    color: var(--white);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--space-2);
    line-height: 1;
}

/* ─── Hero Section ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Hero with background image */
.hero.bg-section {
    height: 100vh;
    min-height: 600px;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Hide particles when hero has a photo background */
.hero.bg-section .hero-particles {
    display: none;
}

/* Subtle ambient gradient when no image */
.hero:not(.bg-section)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(230,0,18,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255,215,0,0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Hero photo background overlay — smooth gradient dim */
.hero.bg-section::before {
    background: linear-gradient(
        to bottom,
        rgba(13,13,13,0.78) 0%,
        rgba(13,13,13,0.55) 35%,
        rgba(13,13,13,0.45) 55%,
        rgba(13,13,13,0.78) 100%
    );
}

/* Minimal floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.2;
    animation: float-particle 10s ease-in-out infinite;
}

.hero-particles::before {
    top: 25%;
    left: 20%;
    animation-delay: 0s;
}

.hero-particles::after {
    top: 65%;
    right: 25%;
    width: 4px;
    height: 4px;
    animation-delay: -5s;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
    50% { transform: translateY(-25px) scale(1.1); opacity: 0.4; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: var(--space-6);
    text-align: center;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: var(--space-3);
    opacity: 0.9;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 7.5rem);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    line-height: 0.9;
    color: var(--white);
}

.hero-headline .accent {
    color: var(--primary-red);
    display: inline;
}

.hero-subline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-light);
    margin-bottom: var(--space-8);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-6);
}

.hero-trust {
    font-size: 0.85rem;
    color: var(--off-white);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}

.hero-trust .stars {
    color: var(--gold);
    letter-spacing: 1px;
    margin-right: var(--space-2);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-1);
    color: var(--gray-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 1;
    transition: var(--transition);
    animation: bounce-scroll 2s ease-in-out infinite;
}

.hero-scroll:hover {
    color: var(--white);
}

.hero-scroll i.ph {
    font-size: 1.25rem;
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Trust Badges ─── */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-5);
    padding: var(--space-8) 0;
}

.badge {
    text-align: center;
    padding: var(--space-6);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.badge:hover {
    background: var(--surface-hover);
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.badge-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230,0,18,0.15), rgba(255,215,0,0.08));
    border: 1px solid rgba(230,0,18,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.badge:hover .badge-icon-wrap {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(230,0,18,0.2), rgba(255,215,0,0.1));
}

.badge-icon-wrap i.ph {
    font-size: 1.75rem;
    color: var(--gold);
}

.badge h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-1);
    color: var(--white);
}

.badge p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* ─── Cards ─── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-5);
}

.card {
    background: var(--surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-gold-hover);
    box-shadow: var(--shadow-gold);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--dark-bg-tertiary), #1f0f0f);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image i.ph {
    font-size: 3.5rem;
    color: var(--primary-red);
    opacity: 0.7;
    transition: var(--transition);
}

.card:hover .card-image i.ph {
    opacity: 1;
    transform: scale(1.1);
}

.card-body {
    padding: var(--space-5);
}

.card-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--white);
}

.card-text {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.card-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-body);
}

/* Service card image area */
.service-card .card-image {
    position: relative;
}

.service-card .duration {
    position: absolute;
    bottom: var(--space-3);
    right: var(--space-3);
    background: rgba(0,0,0,0.7);
    padding: var(--space-1) var(--space-3);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.08);
}

/* ─── How It Works ─── */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-6);
    counter-reset: step;
}

.step {
    text-align: center;
    position: relative;
    padding: var(--space-6);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.step:hover {
    background: var(--surface-hover);
    border-color: var(--color-border-gold-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #B8941D);
    color: var(--color-bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--space-4);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-gold);
}

.step h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ─── Cities Grid ─── */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-3);
}

.city-item {
    background: var(--surface);
    padding: var(--space-4) var(--space-3);
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    font-weight: 500;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.city-item:hover {
    background: var(--surface-hover);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.city-item i.ph {
    display: block;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: var(--space-1);
}

/* ─── Maid Cards ─── */
.maids-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-5);
}

.maid-card {
    background: var(--surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.maid-card:hover {
    transform: translateY(-4px);
    background: var(--surface-hover);
    border-color: var(--color-border-gold-hover);
    box-shadow: var(--shadow-gold);
}

.maid-photo {
    width: 100%;
    height: 340px;
    object-fit: cover;
    background: linear-gradient(135deg, #1a1a2e, #2a1520);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maid-avatar-fallback {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #B8941D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-bg-primary);
    letter-spacing: 2px;
    box-shadow: var(--shadow-gold);
}

.maid-info {
    padding: var(--space-5);
}

.maid-name {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-1);
}

.maid-alias {
    color: var(--gold);
    font-size: 0.875rem;
    margin-bottom: var(--space-2);
    font-weight: 500;
}

.maid-meta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.875rem;
    color: var(--gray);
}

.maid-rating {
    color: var(--gold);
    letter-spacing: 1px;
}

.maid-rating i.ph-fill {
    font-size: 0.875rem;
}

/* ─── Maid Profile ─── */
.profile-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 3rem;
    align-items: start;
}

/* ─── Gallery Column ─── */
.profile-gallery-col {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
}

.profile-main-photo {
    position: relative;
    aspect-ratio: 3/4;
    max-height: 560px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #2a1520);
    border: 1px solid var(--border);
}

.profile-main-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.profile-main-photo:hover img {
    transform: scale(1.03);
}

.profile-photo-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
}

.profile-photo-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.profile-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.profile-thumbs::-webkit-scrollbar {
    height: 4px;
}

.profile-thumbs::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.profile-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    background: var(--dark-bg-secondary);
    transition: border-color 0.2s, transform 0.2s;
}

.profile-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-thumb:hover,
.profile-thumb.active {
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ─── Info Column ─── */
.profile-info-col {
    padding-top: 0.5rem;
}

.profile-name-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1;
    margin: 0;
}

.profile-status-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 100px;
}

.profile-status-badge.status-active {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.profile-status-badge.status-inactive {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.profile-meta-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.profile-meta-dot {
    color: var(--gray-muted);
}

.profile-rating {
    color: var(--gold);
}

/* ─── Info Grid ─── */
.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.profile-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    transition: background 0.2s, border-color 0.2s;
}

.profile-info-card:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
}

.profile-info-card i.ph {
    font-size: 1.25rem;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.info-card-label {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.info-card-value {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

/* ─── Sections ─── */
.profile-section {
    margin-bottom: 1.75rem;
}

.profile-section-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.profile-section-title i.ph {
    font-size: 1rem;
    color: var(--gold);
}

.profile-bio {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--off-white);
    margin: 0;
}

.profile-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.profile-specialty-tag {
    background: rgba(197, 160, 89, 0.08);
    color: var(--gold);
    border: 1px solid rgba(197, 160, 89, 0.18);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ─── Availability ─── */
.profile-availability {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.75rem;
}

.profile-availability i.ph {
    font-size: 1.25rem;
    color: #4ade80;
    flex-shrink: 0;
    margin-top: 2px;
}

.profile-availability strong {
    display: block;
    color: #4ade80;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.profile-availability p {
    margin: 0;
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* ─── Rate Box ─── */
.profile-rate-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius);
    flex-wrap: wrap;
}

.profile-rate-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.profile-rate-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.5px;
    line-height: 1;
}

.profile-rate-value small {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 400;
}

/* ─── Lightbox ─── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1001;
    line-height: 1;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
    color: var(--gray);
    margin-top: var(--space-4);
    font-size: 0.9rem;
}

/* ─── Testimonials ─── */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-5);
}

.testimonial {
    background: var(--surface);
    padding: var(--space-6);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-red);
    border: 1px solid var(--border);
    border-left-color: var(--primary-red);
    transition: var(--transition);
}

.testimonial:hover {
    background: var(--surface-hover);
    border-color: var(--border-accent);
    border-left-color: var(--primary-red);
    transform: translateY(-4px);
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: var(--space-3);
    display: flex;
    gap: 2px;
}

.testimonial-rating i.ph-fill {
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--space-4);
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

/* ─── FAQ Accordion ─── */
.faq-item {
    background: var(--surface);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-3);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.1);
}

.faq-question {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    gap: var(--space-3);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question .icon-toggle {
    font-size: 1.25rem;
    color: var(--gray);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question .icon-toggle {
    transform: rotate(45deg);
    color: var(--primary-red);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 var(--space-5) var(--space-4);
    color: var(--gray-light);
    line-height: 1.7;
}

/* ─── CTA Banner ─── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    padding: var(--space-12) var(--space-6);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dot pattern for solid-gradient CTA */
.cta-banner:not(.bg-section)::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.3;
    pointer-events: none;
}

/* CTA with background image */
.cta-banner.bg-section {
    background: none;
}

.cta-banner.bg-section::before {
    z-index: 0;
    background: linear-gradient(
        135deg,
        rgba(13,13,13,0.82) 0%,
        rgba(13,13,13,0.60) 50%,
        rgba(13,13,13,0.82) 100%
    );
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.cta-banner .btn-secondary {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-banner .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--white);
}

/* ─── Forms ─── */
.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--off-white);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--dark-bg-tertiary);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(230,0,18,0.1);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a0a0'%3E%3Cpath d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-4);
}

.form-hint {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: var(--space-1);
}

.form-input-wrap {
    position: relative;
}

.form-input-wrap i.ph {
    position: absolute;
    left: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-muted);
    font-size: 1.25rem;
    pointer-events: none;
}

.form-input-wrap .form-input,
.form-input-wrap .form-select {
    padding-left: 2.75rem;
}

/* ─── Booking Page ─── */
.booking-page {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-6);
    background: var(--surface);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
}

.booking-summary {
    background: var(--dark-bg-tertiary);
    padding: var(--space-5);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-6);
    border: 1px solid rgba(255,255,255,0.05);
}

.booking-summary h3 {
    margin-bottom: var(--space-4);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}

.booking-summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    border-bottom: none;
    padding-top: var(--space-3);
}

/* Square Payment */
#sq-card-container {
    min-height: 50px;
    padding: var(--space-4);
    background: var(--dark-bg-tertiary);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--space-4);
}

/* ─── Footer ─── */
.footer {
    background: var(--dark-bg-secondary);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: var(--space-10) 0 var(--space-6);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-brand .logo {
    margin-bottom: var(--space-3);
    display: inline-block;
    font-size: 1.75rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    margin-bottom: var(--space-3);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--gray);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-links a i.ph {
    font-size: 0.875rem;
    color: var(--gray-muted);
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-contact i.ph {
    color: var(--gold);
    font-size: 1rem;
}

.footer-contact a {
    color: var(--off-white);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: var(--space-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0;
}

.age-disclaimer {
    background: rgba(230,0,18,0.08);
    border: 1px solid rgba(230,0,18,0.15);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    color: var(--primary-red);
    text-align: center;
    margin-top: var(--space-4);
}

/* ─── Alerts ─── */
.alert {
    padding: var(--space-3) var(--space-5);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-5);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.alert i.ph {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.alert-success {
    background: rgba(34,197,94,0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid var(--error);
    color: var(--error);
}

.alert-info {
    background: rgba(59,130,246,0.1);
    border: 1px solid var(--info);
    color: var(--info);
}

/* ─── Animations ─── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ─── Page Header ─── */
.page-header {
    background: linear-gradient(180deg, var(--dark-bg-secondary) 0%, var(--dark-bg) 100%);
    padding: calc(var(--header-height) + var(--space-10)) 0 var(--space-10);
    text-align: center;
    margin-bottom: var(--space-4);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.page-header h1 {
    margin-bottom: var(--space-2);
}

.page-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ─── Content Pages ─── */
.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-6) 0;
}

.content-page h2 {
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
    color: var(--gold);
    font-size: 1.75rem;
}

.content-page p {
    margin-bottom: var(--space-4);
}

.content-page ul {
    margin-left: var(--space-5);
    margin-bottom: var(--space-4);
}

.content-page li {
    margin-bottom: var(--space-2);
    color: var(--gray-light);
}

/* ─── Contact Page ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: start;
}

.contact-info-box {
    background: var(--surface);
    padding: var(--space-6);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.contact-info-item .icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background: linear-gradient(135deg, rgba(230,0,18,0.15), rgba(255,215,0,0.08));
    border: 1px solid rgba(230,0,18,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon-wrap i.ph {
    font-size: 1.25rem;
    color: var(--gold);
}

.contact-info-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-1);
    color: var(--white);
}

.contact-info-item p {
    color: var(--gray);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ─── Apply Page ─── */
.apply-notice {
    background: var(--surface);
    padding: var(--space-5);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-6);
    border-left: 3px solid var(--gold);
    border: 1px solid var(--border);
    border-left-color: var(--gold);
}

.apply-notice h3 {
    color: var(--gold);
    margin-bottom: var(--space-2);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
}

/* ─── Modal ─── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal {
    background: var(--dark-bg-secondary);
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border);
    transform: scale(0.95);
    transition: var(--transition);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    padding: var(--space-5);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-sm);
}

.modal-close:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

.modal-body {
    padding: var(--space-5);
}

/* ─── Pagination ─── */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-8);
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--space-3);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius-sm);
    color: var(--off-white);
    font-weight: 500;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(230,0,18,0.3);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: var(--space-6);
        gap: var(--space-4);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .profile-layout {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .profile-gallery-col {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .profile-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .profile-rate-box {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .page-header {
        padding: calc(var(--header-height) + var(--space-8)) 0 var(--space-8);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section {
        padding: var(--space-8) 0;
    }
    
    .hero-logo {
        letter-spacing: 2px;
    }
}

/* ─── Utility ─── */
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.d-flex { display: flex; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }


/* ═══════════════════════════════════════════════════════
   DESIGN SYSTEM v3 — Luxury Gold Overrides
   Appended to existing stylesheet. These override
   earlier rules with the new visual language.
   ═══════════════════════════════════════════════════════ */

/* ─── Typography Utilities ─── */
.font-display {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    line-height: 1;
}

.font-section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    line-height: 1.1;
}

.font-subheading {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-primary);
}

.font-body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: var(--color-text-secondary);
}

.font-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-gold);
}

.font-nav {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-primary);
}

/* ─── Header scroll state ─── */
.header.scrolled {
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-primary);
}

.logo span {
    color: var(--gold);
}

.nav a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    position: relative;
    padding-bottom: 4px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    transform: scaleX(1);
}

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

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

/* ─── Hero Overrides ─── */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    line-height: 0.95;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-4);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 500px;
}

/* ─── Page Header Overrides ─── */
.page-header {
    background: linear-gradient(to bottom, rgba(10,10,15,0.7) 0%, rgba(10,10,15,0.95) 100%);
    padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-10);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-primary);
}

/* ─── Section Title Overrides ─── */
.section-title h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-primary);
}

.section-title p {
    font-family: var(--font-body);
    color: var(--color-text-secondary);
    font-size: 1rem;
}

/* ─── Form Input Overrides ─── */
.form-input,
.form-textarea,
.form-select {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border-gold);
    border-radius: 0;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 0;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-bottom-color: var(--gold);
    outline: none;
    box-shadow: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-muted);
}

.form-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form-select option {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
}

/* ─── CTA Banner Overrides ─── */
.cta-banner {
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-primary);
}

/* ─── Trust Badge Overrides ─── */
.trust-badge .icon-wrap {
    background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(212,168,67,0.05));
    border: 1px solid var(--color-border-gold);
}

.trust-badge .icon-wrap i.ph {
    color: var(--gold);
}

/* ─── FAQ Overrides ─── */
.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-text-primary);
}

.faq-question:hover {
    color: var(--gold);
}

/* ─── Breadcrumb ─── */
.breadcrumb a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

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

/* ─── CSS Scroll Animations (GSAP replacement) ─── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

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

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.visible {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* Stagger children */
.stagger-children > * {
    opacity: 0;
}

.stagger-children.visible > *:nth-child(1) { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards; }
.stagger-children.visible > *:nth-child(2) { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards; }
.stagger-children.visible > *:nth-child(3) { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards; }
.stagger-children.visible > *:nth-child(4) { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards; }
.stagger-children.visible > *:nth-child(5) { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards; }
.stagger-children.visible > *:nth-child(6) { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards; }

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-on-scroll,
    .stagger-children > * {
        opacity: 1;
        animation: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}


/* ─── Hero Accent Override ─── */
.hero-headline .accent {
    color: var(--gold);
}

/* ─── Trust Badge Icon Wrap Override ─── */
.badge-icon-wrap {
    background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(212,168,67,0.05));
    border: 1px solid var(--color-border-gold);
}

.badge-icon-wrap i.ph {
    color: var(--gold);
}


/* ═══════════════════════════════════════════════════════
   LUXURY GOLD THEME — Complete Section Redesign
   ═══════════════════════════════════════════════════════ */

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.7) 50%, rgba(10,10,15,0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--space-6);
}

.hero-eyebrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.hero-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    line-height: 0.9;
    margin-bottom: var(--space-6);
}

.hero-headline em {
    font-style: normal;
    color: var(--gold);
}

.hero-subline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    max-width: 520px;
    margin: 0 auto var(--space-8);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.hero-trust .stars {
    font-size: 1.25rem;
    color: var(--gold);
    letter-spacing: 4px;
}

.hero-trust span:last-child {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ─── Trust Section ─── */
.trust-section {
    padding: var(--space-8) 0;
    background: var(--color-bg-primary);
}

.trust-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-gold), transparent);
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    padding: var(--space-6) 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
}

.trust-item i.ph-fill {
    font-size: 1.25rem;
    color: var(--gold);
}

.trust-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-border-gold);
}

/* ─── Section Header ─── */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-10);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--color-border-gold);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
    line-height: 1.1;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.section-dark {
    background: var(--color-bg-secondary);
}

/* ─── Services Grid ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6);
}

.service-card-lux {
    background: rgba(17, 17, 24, 0.6);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--border-radius);
    padding: var(--space-8) var(--space-6);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-lux::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,168,67,0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-lux:hover {
    border-color: var(--color-border-gold-hover);
    box-shadow: var(--shadow-gold);
    transform: translateY(-6px);
}

.service-card-lux:hover::before {
    opacity: 1;
}

.svc-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-5);
    border-radius: 50%;
    border: 1px solid var(--color-border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,168,67,0.05);
    position: relative;
    z-index: 1;
}

.svc-icon-wrap i.ph {
    font-size: 1.75rem;
    color: var(--gold);
}

.service-card-lux h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 1;
}

.service-card-lux p {
    font-size: 0.925rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-5);
    position: relative;
    z-index: 1;
}

.svc-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}

.svc-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.svc-duration {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border: 1px solid var(--color-border-gold);
    border-radius: 100px;
}

.svc-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    position: relative;
    z-index: 1;
    transition: gap 0.3s ease;
}

.svc-book:hover {
    gap: 10px;
    color: var(--gold-light);
}

/* ─── Steps ─── */
.steps-lux {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-4);
    max-width: 1000px;
    margin: 0 auto;
}

.step-lux {
    flex: 1;
    text-align: center;
    padding: var(--space-6);
}

.step-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-4);
    opacity: 0.8;
}

.step-lux h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
}

.step-lux p {
    font-size: 0.925rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.step-connector {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-gold), transparent);
    margin-top: 5rem;
    flex-shrink: 0;
}

/* ─── Process Carousel ─── */
.process-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: var(--border-radius);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    flex: 0 0 33.333%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.carousel-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--border-radius);
    padding: var(--space-6);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.carousel-slide.active .carousel-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(212,168,67,0.15);
}

.carousel-step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-4);
    opacity: 0.8;
}

.carousel-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
}

.carousel-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212,168,67,0.3);
    background: rgba(0,0,0,0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.carousel-arrow:hover:not(:disabled) {
    background: var(--gold);
    color: var(--color-bg-primary);
    border-color: var(--gold);
}

.carousel-arrow:disabled {
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-6);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(212,168,67,0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--gold);
    border-color: var(--gold);
}

.carousel-counter {
    text-align: center;
    margin-top: var(--space-3);
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.carousel-counter span {
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 900px) {
    .carousel-slide {
        flex: 0 0 100%;
        padding: 0 0.25rem;
    }

    .carousel-card {
        padding: var(--space-5);
    }

    .carousel-step-num {
        font-size: 2.5rem;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .process-carousel {
        gap: 0.5rem;
    }
}

/* ─── Cities ─── */
.cities-lux {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    max-width: 900px;
    margin: 0 auto;
}

.city-lux {
    padding: var(--space-3) var(--space-5);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--border-radius-pill);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: default;
}

.city-lux:hover {
    border-color: var(--gold);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* ─── Maids ─── */
.maids-lux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-6);
}

.maid-lux-card {
    background: rgba(17, 17, 24, 0.5);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.4s ease;
}

.maid-lux-card:hover {
    border-color: var(--color-border-gold-hover);
    box-shadow: var(--shadow-gold);
    transform: translateY(-6px);
}

.maid-lux-photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #2a1520);
}

.maid-lux-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.maid-lux-card:hover .maid-lux-photo img {
    transform: scale(1.05);
}

.maid-lux-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--color-text-primary);
    background: linear-gradient(135deg, var(--gold), #B8941D);
}

.maid-lux-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,15,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: var(--space-5);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.maid-lux-card:hover .maid-lux-overlay {
    opacity: 1;
}

.maid-lux-overlay span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.maid-lux-info {
    padding: var(--space-5);
    text-align: center;
}

.maid-lux-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: var(--space-1);
}

.maid-lux-spec {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-3);
    letter-spacing: 0.02em;
}

.maid-lux-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.maid-lux-meta .stars {
    color: var(--gold);
}

/* ─── Testimonials ─── */
.testimonials-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: var(--space-12) 0;
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.92) 100%);
    z-index: 1;
}

.testimonials-lux {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    position: relative;
    z-index: 2;
}

.testimonial-lux {
    background: rgba(17, 17, 24, 0.6);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--border-radius);
    padding: var(--space-8) var(--space-6);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-lux:hover {
    border-color: var(--color-border-gold-hover);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: var(--space-2);
}

.testimonial-lux p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--space-5);
}

.testimonial-lux-author {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.testimonial-lux-author .name {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 0.95rem;
}

.testimonial-lux-author .stars {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ─── FAQ ─── */
.faq-lux {
    max-width: 800px;
    margin: 0 auto;
}

.faq-lux-item {
    border-bottom: 1px solid var(--color-border-gold);
    transition: all 0.3s ease;
}

.faq-lux-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) 0;
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-lux-q:hover {
    color: var(--gold);
}

.faq-lux-q i.ph {
    font-size: 1.25rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-lux-item.active .faq-lux-q i.ph {
    transform: rotate(180deg);
}

.faq-lux-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-lux-item.active .faq-lux-a {
    max-height: 300px;
}

.faq-lux-inner {
    padding-bottom: var(--space-5);
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ─── CTA ─── */
.cta-lux {
    position: relative;
    padding: var(--space-12) 0;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1210 50%, #0a0a0f 100%);
    overflow: hidden;
}

.cta-lux::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(212,168,67,0.06) 0%, transparent 50%);
    z-index: 1;
}

.cta-lux-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.7) 100%);
    z-index: 1;
}

.cta-lux .container {
    position: relative;
    z-index: 2;
}

.cta-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--color-border-gold);
}

.cta-lux h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}

.cta-lux p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto var(--space-8);
    line-height: 1.7;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .trust-sep {
        display: none;
    }
    
    .steps-lux {
        flex-direction: column;
    }
    
    .step-connector {
        width: 1px;
        height: 40px;
        margin: 0 auto;
    }
    
    .step-lux {
        padding: var(--space-4);
    }
}


/* ─── Age Verification Gate ─── */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.age-gate-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.94);
}

.age-gate-card {
    position: relative;
    z-index: 1;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border-gold);
    border-radius: 4px;
    padding: 64px 48px;
    max-width: 520px;
    width: 90%;
    text-align: center;
}

.age-gate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-gold), transparent);
}

.age-gate-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-text-primary);
    letter-spacing: 3px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.age-gate-logo span {
    color: var(--color-accent-gold);
}

.age-gate-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 28px;
}

.age-gate-icon i.ph {
    font-size: 3rem;
    color: var(--color-accent-gold);
    opacity: 0.8;
}

.age-gate-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-gate-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.age-gate-buttons .btn {
    width: 100%;
    justify-content: center;
}

.age-gate-buttons .btn-secondary {
    border-color: rgba(240,230,210,0.15);
}

.age-gate-buttons .btn-secondary:hover {
    border-color: rgba(240,230,210,0.3);
    background: rgba(240,230,210,0.05);
}

.age-gate-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

@media (min-width: 480px) {
    .age-gate-card {
        padding: 64px 56px;
    }
    
    .age-gate-buttons {
        flex-direction: row;
        gap: 20px;
    }
    
    .age-gate-buttons .btn {
        width: auto;
        flex: 1;
    }
}

/* ─── Age Gate Form (DOB + Agreement) ─── */
.age-gate-form { text-align: left; }
.age-gate-dob {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.age-gate-field { flex: 1; }
.age-gate-field label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.age-gate-field select {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--color-text-primary);
    font-size: 0.9rem;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239B8B7A' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}
.age-gate-field select:focus {
    outline: none;
    border-color: var(--color-accent-gold);
}
.age-gate-field select option {
    background: var(--color-bg-secondary);
    color: var(--color-text-primary);
}
.age-gate-agree {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}
.age-gate-agree input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    accent-color: var(--color-accent-gold);
    flex-shrink: 0;
}
.age-gate-agree label { margin: 0; cursor: pointer; }
.age-gate-agree a {
    color: var(--color-accent-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.age-gate-agree a:hover { color: var(--color-text-primary); }

/* ─── Content Blur When Gate Active ─── */
.age-content-wrap.age-locked {
    filter: blur(16px);
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    transition: filter 0.6s ease;
}
.age-content-wrap:not(.age-locked) {
    filter: blur(0);
    transition: filter 0.6s ease;
}

/* ─── Primary Accent Color Selector ─── */
/* Default: Gold accent. Override to Red via data-accent="red" */
/* Primary Accent: RED — only affects buttons and nav, decorative gold stays gold */
[data-accent="red"] {
    --btn-accent: var(--primary-red);
    --btn-accent-hover: #6B1825;
    --btn-accent-shadow: 0 0 20px rgba(155, 35, 53, 0.3);
    --btn-accent-shadow-lg: 0 0 40px rgba(155, 35, 53, 0.4);
}

/* ─── Shake Animation for Form Validation ─── */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}
.shake {
    animation: shake 0.4s ease-in-out;
}
