/* ========================================
   ACE Mobile Massage — Luxury Dark Theme
   ======================================== */

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

:root {
    --gold: #c9a96e;
    --gold-light: #e0c994;
    --gold-dark: #a8863e;
    --gold-glow: rgba(201, 169, 110, 0.15);
    --gold-glow-strong: rgba(201, 169, 110, 0.25);
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --bg-section: #0f0f0f;
    --bg-section-alt: #111;
    --text-primary: #f5f0eb;
    --text-secondary: #9a958e;
    --text-muted: #666;
    --border: #2a2a2a;
    --border-light: #333;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --accent-gold: #c9a96e;
    --accent-gold-rgb: 184, 155, 110;
    --font-heading: 'Playfair Display', Georgia, serif;
    /* Vegas neon accent colors */
    --neon-pink: #ff2d7b;
    --neon-blue: #00d4ff;
    --neon-purple: #b44dff;
    --neon-pink-glow: rgba(255, 45, 123, 0.3);
    --neon-blue-glow: rgba(0, 212, 255, 0.3);
    --neon-purple-glow: rgba(180, 77, 255, 0.25);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
}

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

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

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

/* Responsive utility classes */
.mobile-only { display: none; }
@media (max-width: 768px) {
    .mobile-only { display: inline; }
    .desktop-only { display: none; }
    html, body { overflow-x: hidden; }
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-icon {
    font-size: 32px;
    color: var(--gold);
    transition: transform var(--transition);
}

.logo-img {
    width: 40px;
    height: 40px;
    transition: transform var(--transition);
}

.logo:hover .logo-icon,
.logo:hover .logo-img {
    transform: rotate(45deg);
}

.logo-luxe {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 6px;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

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

.nav-cta {
    font-size: 13px !important;
    padding: 10px 24px !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1510 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-gallery-img {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(201, 169, 110, 0.2);
    transition: border-color var(--transition);
}

.hero-gallery-img:hover {
    border-color: var(--gold);
}

.hero-gallery-img.tall {
    grid-row: span 2;
}

.hero-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.hero-gallery-img:hover img {
    transform: scale(1.05);
}

.hero-tag {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.05;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Hero review teaser - hidden on desktop, shown on mobile */
.hero-review-teaser {
    display: none;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.stat {
    position: relative;
    padding: 12px 0;
}

.stat::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(201, 169, 110, 0.15);
}

.stat:last-child::after {
    display: none;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ========== How It Works Strip ========== */
.how-it-works-strip {
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}

.hiw-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.hiw-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hiw-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.hiw-step strong {
    font-size: 14px;
    color: var(--text-primary);
    display: block;
}

.hiw-step p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .hiw-grid {
        flex-direction: column;
        gap: 20px;
    }

    .hiw-step {
        gap: 14px;
        padding: 12px 16px;
        background: rgba(201, 169, 110, 0.04);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
    }

    .hiw-icon {
        font-size: 24px;
    }
}

/* ========== Sections ========== */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section:nth-child(even) {
    background: var(--bg-section);
}

/* Decorative glow orbs on alternating sections */
.section:nth-child(3n)::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section:nth-child(3n+1)::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-tag {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 12px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
    position: relative;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 48px;
}

/* ========== Therapists ========== */
.team-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.team-banner-img {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 2px solid var(--border);
    transition: border-color var(--transition);
}

.team-banner-img:hover {
    border-color: var(--gold);
}

.team-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.team-banner-img:hover img {
    transform: scale(1.03);
}

.therapists-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.therapist-card {
    text-align: center;
    transition: all var(--transition);
}

.therapist-card:hover {
    transform: translateY(-4px);
}

.therapist-img {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
    border: 2px solid var(--border);
    transition: border-color var(--transition);
}

.therapist-card:hover .therapist-img {
    border-color: var(--gold);
}

.therapist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.therapist-card:hover .therapist-img img {
    transform: scale(1.05);
}

.therapist-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.therapist-card p {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .team-banner {
        grid-template-columns: repeat(2, 1fr);
    }
    .therapists-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .team-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .therapists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ========== Services ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: all var(--transition);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.1), 0 0 0 1px var(--gold);
}

.service-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.08);
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.15);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(201, 169, 110, 0.15);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-duration {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========== Pricing ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 16px 48px rgba(201, 169, 110, 0.08);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(201, 169, 110, 0.1) 0%, var(--bg-card) 50%);
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(201, 169, 110, 0.08);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 20px 60px rgba(201, 169, 110, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 20px;
}

.pricing-duration {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.pricing-price {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-per {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    color: var(--text-secondary);
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

/* ========== Pricing Table ========== */
.pricing-table-wrap {
    margin-top: 40px;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.pricing-table th,
.pricing-table td {
    padding: 16px 24px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.pricing-table th {
    background: rgba(201, 169, 110, 0.1);
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
    text-align: left;
    color: var(--text-secondary);
}

.pricing-table td {
    color: var(--gold);
    font-size: 16px;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: rgba(201, 169, 110, 0.04);
}

/* ========== About / Why Choose ========== */
.about-story {
    max-width: 800px;
    margin-bottom: 48px;
    padding: 32px;
    border-left: 3px solid var(--gold);
    background: var(--bg-card);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.about-story p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    font-style: italic;
}

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

.about-card {
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    transition: all var(--transition);
}

.about-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.08);
}

.about-num {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.6;
    margin-bottom: 16px;
    transition: opacity var(--transition);
}

.about-card:hover .about-num {
    opacity: 1;
}

.about-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== Coverage ========== */
.coverage-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.area-tag {
    padding: 10px 24px;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.area-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
    transform: translateY(-2px);
}

.coverage-hotels h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.hotel-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hotel-logos span {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
}

/* ========== Reviews ========== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: all var(--transition);
}

.review-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.06);
    transform: translateY(-4px);
}

/* Google Rating Badge */
.google-rating {
    margin-bottom: 48px;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 36px;
}

.google-rating-logo {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #4285f4;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(66, 133, 244, 0.1);
    border-radius: 50%;
}

.google-rating-score {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.google-rating-stars {
    color: #fbbc04;
    font-size: 20px;
    letter-spacing: 2px;
}

.google-rating-count {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

.review-source {
    color: #fbbc04;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-source span {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 8px;
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

.review-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author strong {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
}

.review-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--gold);
    padding-left: 8px;
}

.faq-toggle {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: var(--gold);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding-bottom: 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========== Service Area ========== */
.service-area .section-desc {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.service-area-map iframe {
    width: 100%;
    min-height: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.service-area-locations h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.area-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.area-item:hover {
    background: rgba(var(--accent-gold-rgb, 184,155,110), 0.08);
    border-color: rgba(var(--accent-gold-rgb, 184,155,110), 0.2);
    transform: translateX(4px);
}

.area-icon {
    color: var(--accent-gold);
    font-size: 12px;
    flex-shrink: 0;
}

.area-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 15px;
    margin-bottom: 2px;
}

.area-item span {
    font-size: 13px;
    color: var(--text-secondary);
}

.area-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

@media (max-width: 768px) {
    .service-area-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .service-area-map iframe {
        min-height: 300px;
    }
}

/* ========== Contact ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    color: var(--gold);
    transition: all var(--transition);
}

.contact-item:hover .contact-icon {
    background: rgba(201, 169, 110, 0.12);
    transform: scale(1.05);
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-social h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ========== Footer ========== */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
    position: relative;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
    max-width: 280px;
}

.footer-links h4 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ========== Floating CTA ========== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn.whatsapp {
    background: #25D366;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.floating-btn.phone {
    background: var(--gold);
    color: #000;
}

.floating-btn.book {
    background: var(--bg-card);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* ========== Animations ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger animation for grid items */
.service-card.fade-in { transition-delay: calc(var(--i, 0) * 0.1s); }
.about-card.fade-in { transition-delay: calc(var(--i, 0) * 0.1s); }

/* Subtle continuous animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 169, 110, 0.1); }
    50% { box-shadow: 0 0 40px rgba(201, 169, 110, 0.2); }
}

.floating-cta .floating-btn.phone {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Fallback: ensure content is visible if JS fails or bot doesn't execute JS */
noscript .fade-in,
.no-js .fade-in {
    opacity: 1 !important;
    transform: none !important;
}

/* ========== Vegas Elements — Enhanced ========== */

/* --- Vegas Keyframe Animations --- */
@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow:
            0 0 7px var(--gold),
            0 0 15px var(--gold),
            0 0 30px var(--gold-light),
            0 0 50px rgba(201, 169, 110, 0.4);
    }
    20%, 24%, 55% {
        text-shadow:
            0 0 4px var(--gold),
            0 0 10px rgba(201, 169, 110, 0.3);
    }
}

@keyframes neon-pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(201, 169, 110, 0.2), 0 0 30px rgba(201, 169, 110, 0.1); }
    50% { box-shadow: 0 0 25px rgba(201, 169, 110, 0.4), 0 0 50px rgba(201, 169, 110, 0.2); }
}

@keyframes neon-multicolor-pulse {
    0%, 100% {
        box-shadow: 0 0 15px var(--neon-pink-glow), 0 0 30px rgba(201, 169, 110, 0.1);
        border-color: rgba(255, 45, 123, 0.3);
    }
    33% {
        box-shadow: 0 0 15px var(--neon-blue-glow), 0 0 30px rgba(0, 212, 255, 0.1);
        border-color: rgba(0, 212, 255, 0.3);
    }
    66% {
        box-shadow: 0 0 15px var(--neon-purple-glow), 0 0 30px rgba(180, 77, 255, 0.1);
        border-color: rgba(180, 77, 255, 0.3);
    }
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    25% { transform: translate(30px, -20px) scale(1.1); opacity: 0.6; }
    50% { transform: translate(-10px, -40px) scale(0.9); opacity: 0.3; }
    75% { transform: translate(-30px, -10px) scale(1.05); opacity: 0.5; }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes neon-line-glow {
    0%, 100% {
        box-shadow: 0 0 10px var(--neon-pink-glow), 0 0 20px rgba(201, 169, 110, 0.3);
        background: linear-gradient(90deg, transparent, var(--neon-pink), var(--gold-light), var(--neon-blue), transparent);
    }
    50% {
        box-shadow: 0 0 20px var(--neon-blue-glow), 0 0 40px rgba(201, 169, 110, 0.4);
        background: linear-gradient(90deg, transparent, var(--neon-blue), var(--gold-light), var(--neon-pink), transparent);
    }
}

@keyframes strip-text-glow {
    0%, 100% {
        text-shadow: 0 0 10px var(--neon-pink-glow), 0 0 30px rgba(201, 169, 110, 0.4);
        color: var(--neon-pink);
    }
    33% {
        text-shadow: 0 0 10px var(--neon-blue-glow), 0 0 30px rgba(0, 212, 255, 0.4);
        color: var(--neon-blue);
    }
    66% {
        text-shadow: 0 0 10px var(--neon-purple-glow), 0 0 30px rgba(180, 77, 255, 0.4);
        color: var(--neon-purple);
    }
}

/* --- Floating Neon Orbs (background decoration) --- */
.vegas-experiences::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--neon-pink-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-orb 8s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--neon-blue-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-orb 10s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

/* --- Hero Vegas Neon Enhancements --- */
.hero h1 .neon-vegas {
    position: relative;
    animation: neon-flicker 3s ease-in-out infinite;
    color: var(--gold-light);
}

.hero h1 em {
    text-shadow: 0 0 20px rgba(201, 169, 110, 0.3), 0 0 40px rgba(201, 169, 110, 0.1);
}

/* Vegas badge - more prominent */
.vegas-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 45, 123, 0.08), rgba(201, 169, 110, 0.1), rgba(0, 212, 255, 0.08));
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    animation: neon-multicolor-pulse 4s ease-in-out infinite;
}

.vegas-badge-icon {
    font-size: 18px;
    animation: icon-bounce 2s ease-in-out infinite;
}

/* Neon accent line under hero tag */
.hero-tag {
    position: relative;
}

.hero-tag::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    margin-top: 12px;
    background: linear-gradient(90deg, var(--neon-pink), var(--gold), var(--neon-blue));
    border-radius: 2px;
    box-shadow: 0 0 8px var(--neon-pink-glow);
}

/* --- Vegas Marquee — Enhanced --- */
.vegas-marquee {
    background: linear-gradient(180deg, rgba(201, 169, 110, 0.06), rgba(255, 45, 123, 0.03), rgba(201, 169, 110, 0.06));
    border-top: 1px solid rgba(255, 45, 123, 0.15);
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.vegas-marquee::before,
.vegas-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.vegas-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.vegas-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

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

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marquee-scroll 25s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(201, 169, 110, 0.15);
}

.marquee-item .marquee-dot {
    color: var(--gold);
    font-size: 8px;
    text-shadow: 0 0 6px var(--gold-glow-strong);
}

/* --- Vegas Skyline Divider — Enhanced --- */
.vegas-skyline-divider {
    position: relative;
    height: 100px;
    background: var(--bg-dark);
    overflow: hidden;
}

.vegas-skyline-divider::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background:
        /* Stratosphere tower */
        linear-gradient(to top, #333 50%, transparent 50%) 8.75% 0 / 3px 100px no-repeat,
        linear-gradient(to top, #444 10%, transparent 10%) 8.25% 0 / 16px 100px no-repeat,
        /* Wide hotel left */
        linear-gradient(to top, #2a2a2a 35%, transparent 35%) 14% 0 / 60px 100px no-repeat,
        linear-gradient(to top, #333 50%, transparent 50%) 16% 0 / 25px 100px no-repeat,
        /* Luxor pyramid */
        linear-gradient(to top, #2a2a2a 30%, transparent 30%) 26% 0 / 55px 100px no-repeat,
        linear-gradient(to top, #333 22%, transparent 22%) 28% 0 / 35px 100px no-repeat,
        /* Tall hotel center */
        linear-gradient(to top, #333 60%, transparent 60%) 38% 0 / 35px 100px no-repeat,
        linear-gradient(to top, #444 72%, transparent 72%) 40% 0 / 20px 100px no-repeat,
        /* Wide resort */
        linear-gradient(to top, #2a2a2a 32%, transparent 32%) 50% 0 / 80px 100px no-repeat,
        linear-gradient(to top, #333 48%, transparent 48%) 52% 0 / 30px 100px no-repeat,
        /* Tall tower */
        linear-gradient(to top, #444 75%, transparent 75%) 65% 0 / 16px 100px no-repeat,
        /* Eiffel tower */
        linear-gradient(to top, #555 65%, transparent 65%) 72% 0 / 3px 100px no-repeat,
        linear-gradient(to top, #333 35%, transparent 35%) 70.5% 0 / 28px 100px no-repeat,
        /* Right buildings */
        linear-gradient(to top, #2a2a2a 40%, transparent 40%) 82% 0 / 50px 100px no-repeat,
        linear-gradient(to top, #333 55%, transparent 55%) 85% 0 / 22px 100px no-repeat,
        linear-gradient(to top, #2a2a2a 30%, transparent 30%) 92% 0 / 40px 100px no-repeat;
    opacity: 0.6;
}

/* Twinkling lights on buildings */
.vegas-skyline-divider .twinkle-lights {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 1;
}

.vegas-skyline-divider .twinkle-lights span {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--gold-light);
    animation: twinkle 2s ease-in-out infinite;
}

.vegas-skyline-divider .twinkle-lights span:nth-child(1) { left: 15%; bottom: 30px; animation-delay: 0s; background: var(--neon-pink); }
.vegas-skyline-divider .twinkle-lights span:nth-child(2) { left: 28%; bottom: 22px; animation-delay: 0.5s; background: var(--gold-light); }
.vegas-skyline-divider .twinkle-lights span:nth-child(3) { left: 39%; bottom: 52px; animation-delay: 1s; background: var(--neon-blue); }
.vegas-skyline-divider .twinkle-lights span:nth-child(4) { left: 41%; bottom: 60px; animation-delay: 0.3s; background: var(--neon-pink); }
.vegas-skyline-divider .twinkle-lights span:nth-child(5) { left: 52%; bottom: 38px; animation-delay: 1.5s; background: var(--gold-light); }
.vegas-skyline-divider .twinkle-lights span:nth-child(6) { left: 65%; bottom: 65px; animation-delay: 0.8s; background: var(--neon-purple); }
.vegas-skyline-divider .twinkle-lights span:nth-child(7) { left: 72%; bottom: 55px; animation-delay: 1.2s; background: var(--neon-blue); }
.vegas-skyline-divider .twinkle-lights span:nth-child(8) { left: 83%; bottom: 35px; animation-delay: 0.6s; background: var(--neon-pink); }
.vegas-skyline-divider .twinkle-lights span:nth-child(9) { left: 86%; bottom: 45px; animation-delay: 1.8s; background: var(--gold-light); }
.vegas-skyline-divider .twinkle-lights span:nth-child(10) { left: 93%; bottom: 25px; animation-delay: 0.9s; background: var(--neon-blue); }

/* Multi-color neon baseline */
.vegas-skyline-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 3%;
    right: 3%;
    height: 2px;
    animation: neon-line-glow 4s ease-in-out infinite;
    border-radius: 2px;
}

/* --- "The Strip Never Sleeps" Banner --- */
.vegas-strip-banner {
    text-align: center;
    padding: 48px 24px;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark), rgba(15, 10, 20, 1), var(--bg-dark));
    overflow: hidden;
}

.vegas-strip-banner::before,
.vegas-strip-banner::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
}

.vegas-strip-banner::before {
    top: 0;
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--gold), var(--neon-blue), transparent);
    box-shadow: 0 0 10px var(--neon-pink-glow);
}

.vegas-strip-banner::after {
    bottom: 0;
    background: linear-gradient(90deg, transparent, var(--neon-blue), var(--gold), var(--neon-pink), transparent);
    box-shadow: 0 0 10px var(--neon-blue-glow);
}

.strip-banner-text {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 4px;
    animation: strip-text-glow 6s ease-in-out infinite;
}

.strip-banner-sub {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-style: normal;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 12px;
}

/* --- Vegas Experiences Section — Enhanced --- */
.vegas-experiences {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #110f0a 30%, #0f0a10 70%, var(--bg-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.vegas-experiences::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--neon-pink), var(--gold));
}

.vegas-experiences .section-title {
    text-align: center;
    text-shadow: 0 0 30px rgba(201, 169, 110, 0.3), 0 0 60px rgba(255, 45, 123, 0.1);
}

.vegas-experiences .section-tag {
    text-align: center;
    display: block;
}

.vegas-experiences .section-tag::before {
    display: none;
}

.vegas-experiences .section-desc {
    text-align: center;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.vegas-exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.vegas-exp-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(20, 15, 25, 1) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vegas-exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--gold), var(--neon-blue));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vegas-exp-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--neon-pink-glow) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.vegas-exp-card:hover {
    border-color: rgba(255, 45, 123, 0.3);
    transform: translateY(-6px);
    animation: neon-multicolor-pulse 3s ease-in-out infinite;
}

.vegas-exp-card:hover::before {
    opacity: 1;
}

.vegas-exp-card:hover::after {
    opacity: 0.15;
}

.vegas-exp-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 0 12px rgba(255, 45, 123, 0.3));
    animation: icon-bounce 3s ease-in-out infinite;
}

.vegas-exp-card:nth-child(2) .vegas-exp-icon { animation-delay: 0.3s; filter: drop-shadow(0 0 12px var(--neon-blue-glow)); }
.vegas-exp-card:nth-child(3) .vegas-exp-icon { animation-delay: 0.6s; filter: drop-shadow(0 0 12px var(--neon-purple-glow)); }
.vegas-exp-card:nth-child(4) .vegas-exp-icon { animation-delay: 0.9s; filter: drop-shadow(0 0 12px var(--neon-pink-glow)); }

.vegas-exp-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold-light);
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(201, 169, 110, 0.2);
}

.vegas-exp-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .services-grid,
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

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

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-gallery {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-gallery-img {
        flex: 0 0 65%;
        scroll-snap-align: center;
        border-radius: var(--radius-sm);
        aspect-ratio: 3/4;
    }

    .hero-gallery-img.tall {
        grid-row: unset;
        flex: 0 0 65%;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-num {
        font-size: 22px;
    }

    .services-grid,
    .about-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section {
        padding: 64px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .booking-form {
        padding: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }
}

/* ========== Booking Contact Grid ========== */
.booking-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
}

.booking-contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 36px;
    text-align: center;
    transition: all var(--transition);
}

.booking-contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(201, 169, 110, 0.1);
}

.booking-contact-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.booking-contact-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.booking-contact-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.booking-contact-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .booking-contact-grid,
    .booking-contact-grid.three-col {
        grid-template-columns: 1fr;
    }
}

/* ========== Blog Listing Page ========== */
.blog-hero {
    padding: 140px 0 60px;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1510 50%, #0a0a0a 100%);
    position: relative;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.blog-hero .section-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 12px;
}

.blog-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.blog-filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
}

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

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition);
}

.blog-card h3 a:hover {
    color: var(--gold);
}

.blog-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold);
    transition: all var(--transition);
}

.blog-read-more:hover {
    color: var(--gold-light);
    letter-spacing: 1px;
}

.blog-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* ========== Article Page ========== */
.article-breadcrumb {
    padding: 100px 0 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.article-breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.article-breadcrumb span {
    margin: 0 8px;
    color: var(--gold);
}

.article-header {
    padding: 20px 0 48px;
    max-width: 760px;
}

.article-header .blog-category {
    margin-bottom: 20px;
    display: inline-block;
}

.article-header h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
    line-height: 1.15;
}

.article-meta {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-content {
    max-width: 760px;
    padding-bottom: 64px;
}

.article-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
}

.article-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-content li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.article-content strong {
    color: var(--text-primary);
}

.article-cta {
    max-width: 760px;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    margin-bottom: 64px;
}

.article-cta h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.article-cta p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 16px;
}

.article-cta .btn {
    margin: 0 8px;
}

.related-articles {
    padding: 64px 0;
    border-top: 1px solid var(--border);
}

.related-articles h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 32px;
}

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

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

@media (max-width: 768px) {
    .blog-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .article-cta,
    .blog-cta-box {
        padding: 32px 24px;
    }

    .article-cta .btn,
    .blog-cta-box .btn {
        display: block;
        margin: 8px 0;
    }
}

/* ========== Blog Article Page (agent classes) ========== */
.breadcrumb {
    padding: 100px 0 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition);
}

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

.blog-article-header {
    max-width: 760px;
    padding-bottom: 32px;
}

.blog-article-header .section-title {
    margin-bottom: 16px;
}

.blog-article-content {
    max-width: 760px;
    padding-bottom: 64px;
}

.blog-article-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
}

.blog-article-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.blog-article-content li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.blog-article-content strong {
    color: var(--text-primary);
}

.blog-cta-box {
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    margin-top: 48px;
}

.blog-cta-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 12px;
}

.blog-cta-box p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 16px;
}

.blog-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-cta-buttons .btn {
    min-width: 200px;
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

.blog-related {
    border-top: 1px solid var(--border);
}

.blog-hero .breadcrumb {
    padding-top: 0;
    padding-bottom: 0;
}

/* ========================================
   MOBILE OPTIMIZATION
   ======================================== */

/* Sticky bottom CTA bar — always visible on mobile */
.mobile-cta-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 998;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(201, 169, 110, 0.2);
        padding: 10px 12px;
        gap: 8px;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
    }

    .mobile-cta-bar a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 14px 8px;
        border-radius: var(--radius-sm);
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
    }

    .mobile-cta-bar .cta-call {
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        color: #000;
    }

    .mobile-cta-bar .cta-text {
        background: transparent;
        color: var(--gold);
        border: 1px solid var(--gold);
    }

    .mobile-cta-bar .cta-whatsapp {
        background: #25D366;
        color: #fff;
    }

    /* Hide floating CTA on mobile — replaced by bottom bar */
    .floating-cta {
        display: none !important;
    }

    /* Add bottom padding to body so content isn't hidden behind CTA bar */
    body {
        padding-bottom: 72px;
    }

    /* ===== Hero mobile optimization ===== */
    .hero {
        min-height: auto;
        padding-bottom: 0;
        background: linear-gradient(180deg, #0a0a0a 0%, #1a1510 40%, #0a0a0a 100%);
    }

    .hero::before {
        background: radial-gradient(
            ellipse 80% 50% at 50% 20%,
            rgba(201, 169, 110, 0.08) 0%,
            transparent 70%
        );
    }

    .hero-content {
        padding: 90px 0 40px;
        gap: 32px;
    }

    .hero-tag {
        font-size: 11px;
        letter-spacing: 3px;
        text-align: center;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.1;
        text-align: center;
    }

    .hero-desc {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 24px;
        text-align: center;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn {
        padding: 16px 24px;
        font-size: 15px;
        min-height: 52px;
        text-align: center;
        justify-content: center;
    }

    /* Mobile hero gallery - horizontal scroll strip */
    .hero-gallery {
        order: -1;
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px 12px;
        margin: 0 -20px;
        scrollbar-width: none;
    }

    .hero-gallery::-webkit-scrollbar {
        display: none;
    }

    .hero-gallery-img {
        flex: 0 0 55%;
        scroll-snap-align: center;
        border-radius: var(--radius);
        aspect-ratio: 3/4;
        border: 2px solid rgba(201, 169, 110, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }

    .hero-gallery-img.tall {
        grid-row: unset;
        flex: 0 0 55%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding-top: 24px;
    }

    .stat::after {
        display: none;
    }

    .stat {
        text-align: center;
        padding: 14px 8px;
        background: rgba(201, 169, 110, 0.06);
        border: 1px solid rgba(201, 169, 110, 0.15);
        border-radius: var(--radius-sm);
    }

    .stat-num {
        font-size: 20px;
    }

    /* ===== Nav mobile optimization ===== */
    .navbar {
        padding: 12px 0;
    }

    .logo-icon {
        font-size: 24px;
    }

    .logo-luxe {
        font-size: 22px;
        letter-spacing: 4px;
    }

    .logo-sub {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .nav-links.active {
        padding: 20px 16px;
        gap: 4px;
    }

    .nav-links.active a {
        padding: 14px 16px;
        font-size: 15px;
        border-bottom: 1px solid var(--border);
        display: block;
    }

    /* ===== Team section mobile ===== */
    .team-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 24px;
    }

    .therapists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .therapist-card h3 {
        font-size: 15px;
    }

    .therapist-card p {
        font-size: 12px;
    }

    /* ===== Services mobile ===== */
    .service-card {
        padding: 24px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    /* ===== Pricing mobile ===== */
    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-price {
        font-size: 44px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .pricing-table-wrap {
        margin-top: 24px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .pricing-table td:first-child,
    .pricing-table th:first-child {
        white-space: normal;
        min-width: 140px;
    }

    /* ===== Hero review teaser (mobile only) ===== */
    .hero-review-teaser {
        display: block;
        text-align: center;
        padding: 16px 20px;
        background: rgba(201, 169, 110, 0.06);
        border: 1px solid rgba(201, 169, 110, 0.15);
        border-radius: var(--radius);
        margin-top: 8px;
    }

    .hero-review-stars {
        color: var(--gold);
        font-size: 16px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .hero-review-teaser p {
        font-size: 14px;
        color: var(--text-primary);
        font-style: italic;
        line-height: 1.5;
        margin-bottom: 6px;
    }

    .hero-review-author {
        font-size: 12px;
        color: var(--text-secondary);
    }

    /* ===== About mobile ===== */
    .about-story {
        padding: 24px;
        margin-bottom: 32px;
    }

    .about-story p {
        font-size: 14px;
    }

    .about-card {
        padding: 24px;
    }

    .about-num {
        font-size: 32px;
    }

    /* ===== Reviews mobile ===== */
    .google-rating-badge {
        padding: 20px 24px;
        gap: 16px;
    }

    .google-rating-score {
        font-size: 28px;
    }

    .google-rating-logo {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .review-card {
        padding: 24px;
    }

    .review-card p {
        font-size: 14px;
    }

    /* ===== Booking mobile ===== */
    .booking-contact-grid.three-col {
        grid-template-columns: 1fr;
    }

    .booking-contact-card {
        padding: 32px 24px;
    }

    .booking-contact-icon {
        font-size: 32px;
    }

    /* ===== FAQ mobile ===== */
    .faq-question {
        font-size: 16px;
        padding: 20px 0;
    }

    .faq-answer p {
        font-size: 14px;
    }

    /* ===== Contact mobile ===== */
    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    /* ===== Footer mobile ===== */
    .footer {
        padding: 48px 0 24px;
    }

    .footer-grid {
        gap: 32px;
    }

    .footer-bottom {
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    /* ===== Section headers mobile ===== */
    .section {
        padding: 56px 0;
    }

    .section-tag {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-desc {
        font-size: 14px;
        margin-bottom: 32px;
    }

    /* ===== Touch-friendly targets ===== */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
    }

    .btn-lg {
        min-height: 52px;
        padding: 16px 28px;
    }

    .area-tag {
        padding: 12px 20px;
        font-size: 13px;
    }

    .social-link {
        padding: 14px 20px;
        min-height: 48px;
    }

    /* ===== Coverage mobile ===== */
    .coverage-areas {
        gap: 8px;
    }

    .hotel-logos {
        gap: 8px;
    }

    .hotel-logos span {
        padding: 10px 16px;
        font-size: 12px;
    }

    /* ===== Vegas elements mobile ===== */
    .vegas-skyline-divider {
        height: 60px;
    }

    .vegas-skyline-divider .twinkle-lights span {
        width: 1.5px;
        height: 1.5px;
    }

    .vegas-exp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .vegas-exp-card {
        padding: 24px 16px;
    }

    .vegas-exp-icon {
        font-size: 30px;
    }

    .vegas-exp-card h3 {
        font-size: 16px;
    }

    .vegas-exp-card p {
        font-size: 13px;
    }

    .vegas-experiences {
        padding: 56px 0;
    }

    .marquee-item {
        font-size: 11px;
        gap: 6px;
    }

    .marquee-track {
        gap: 32px;
    }

    .vegas-strip-banner {
        padding: 32px 16px;
    }

    .strip-banner-text {
        letter-spacing: 2px;
    }

    .strip-banner-sub {
        letter-spacing: 3px;
        font-size: 11px;
    }

    .hero-tag::after {
        width: 40px;
    }
}

/* ========================================
   NEW: Scroll Indicator, Social Proof,
   Neon Divider, How-It-Works Upgrade,
   SVG Icons, Stats Counter
   ======================================== */

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-text {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}

.scroll-arrow {
    color: var(--gold);
    animation: scroll-bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 6px var(--gold-glow-strong));
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* --- Social Proof Ticker --- */
.social-proof-ticker {
    background: linear-gradient(90deg, rgba(255, 45, 123, 0.05), rgba(201, 169, 110, 0.08), rgba(0, 212, 255, 0.05));
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
    padding: 12px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ticker-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ticker-icon {
    color: var(--neon-blue);
    flex-shrink: 0;
    animation: neon-pulse 3s ease-in-out infinite;
}

.ticker-message {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    min-width: 200px;
    transition: opacity 0.4s ease;
}

.ticker-message.fade-out {
    opacity: 0;
}

/* --- Neon Divider Strip --- */
.neon-divider-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-dark);
}

.neon-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--gold), var(--neon-blue), transparent);
    box-shadow: 0 0 8px var(--neon-pink-glow), 0 0 16px rgba(201, 169, 110, 0.15);
    animation: neon-line-glow 4s ease-in-out infinite;
}

.neon-diamond {
    color: var(--gold);
    filter: drop-shadow(0 0 6px var(--gold-glow-strong));
    animation: icon-bounce 3s ease-in-out infinite;
    flex-shrink: 0;
}

/* --- How-It-Works Upgrade --- */
.how-it-works-strip {
    background: linear-gradient(180deg, var(--bg-section), rgba(15, 12, 8, 1), var(--bg-section));
    border-top: 1px solid rgba(201, 169, 110, 0.12);
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
    padding: 40px 0;
}

.hiw-step {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    padding: 16px 20px;
    background: rgba(201, 169, 110, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius);
    transition: all 0.4s ease;
}

.hiw-step:hover {
    background: rgba(201, 169, 110, 0.06);
    border-color: rgba(201, 169, 110, 0.25);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.08);
    transform: translateY(-2px);
}

.hiw-icon {
    font-size: 28px;
    flex-shrink: 0;
    color: var(--gold);
    filter: drop-shadow(0 0 4px var(--gold-glow-strong));
}

.hiw-icon svg {
    stroke: var(--gold);
    filter: drop-shadow(0 0 4px var(--gold-glow-strong));
}

.hiw-arrow {
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    opacity: 0.4;
}

.hiw-arrow svg {
    stroke: var(--gold);
}

/* --- SVG Icon Styling for Service Cards --- */
.service-icon svg {
    stroke: var(--gold);
    filter: drop-shadow(0 0 6px var(--gold-glow));
    transition: all 0.4s ease;
}

.service-card:hover .service-icon svg {
    stroke: var(--gold-light);
    filter: drop-shadow(0 0 12px var(--gold-glow-strong));
    transform: scale(1.1);
}

/* --- SVG Icon Styling for Vegas Experience Cards --- */
.vegas-exp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.vegas-exp-icon svg {
    stroke: var(--neon-pink);
    filter: drop-shadow(0 0 8px var(--neon-pink-glow));
    transition: all 0.4s ease;
}

.vegas-exp-card:nth-child(2) .vegas-exp-icon svg {
    stroke: var(--neon-blue);
    filter: drop-shadow(0 0 8px var(--neon-blue-glow));
}

.vegas-exp-card:nth-child(3) .vegas-exp-icon svg {
    stroke: var(--neon-purple);
    filter: drop-shadow(0 0 8px var(--neon-purple-glow));
}

.vegas-exp-card:nth-child(4) .vegas-exp-icon svg {
    stroke: var(--gold);
    filter: drop-shadow(0 0 8px var(--gold-glow-strong));
}

.vegas-exp-card:hover .vegas-exp-icon svg {
    transform: scale(1.15);
    filter: drop-shadow(0 0 16px var(--neon-pink-glow));
}

.vegas-exp-card:nth-child(2):hover .vegas-exp-icon svg {
    filter: drop-shadow(0 0 16px var(--neon-blue-glow));
}

.vegas-exp-card:nth-child(3):hover .vegas-exp-icon svg {
    filter: drop-shadow(0 0 16px var(--neon-purple-glow));
}

.vegas-exp-card:nth-child(4):hover .vegas-exp-icon svg {
    filter: drop-shadow(0 0 16px var(--gold-glow-strong));
}

/* --- Vegas Badge SVG --- */
.vegas-badge-svg {
    color: var(--gold);
    fill: var(--gold);
    filter: drop-shadow(0 0 4px var(--gold-glow-strong));
    animation: icon-bounce 2s ease-in-out infinite;
}

/* --- Stats Counter Animation --- */
.stat-num {
    transition: color 0.3s ease;
}

.stat-num.counting {
    color: var(--gold-light);
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-text {
        font-size: 10px;
    }

    .social-proof-ticker {
        padding: 10px 16px;
    }

    .ticker-message {
        font-size: 12px;
        min-width: auto;
    }

    .neon-divider-strip {
        padding: 14px 16px;
    }

    .neon-line {
        max-width: 100px;
    }

    .hiw-arrow {
        display: none;
    }

    .hiw-step {
        padding: 14px 16px;
    }

    .vegas-exp-icon svg {
        width: 32px;
        height: 32px;
    }
}

/* --- Payment Methods --- */
.payment-methods {
    margin-top: 48px;
    text-align: center;
}

.payment-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.payment-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 100px;
    transition: all 0.3s ease;
}

.payment-item:hover {
    border-color: rgba(201, 169, 110, 0.3);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.08);
}

.payment-icon {
    stroke: var(--gold);
    filter: drop-shadow(0 0 4px var(--gold-glow));
}

.payment-item span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.payment-item:hover span {
    color: var(--gold-light);
}

@media (max-width: 768px) {
    .payment-grid {
        gap: 10px;
    }

    .payment-item {
        min-width: 80px;
        padding: 12px 14px;
    }

    .payment-icon {
        width: 22px;
        height: 22px;
    }

    .payment-item span {
        font-size: 10px;
    }
}

/* ========================================
   MOBILE OPTIMIZATION PASS
   ======================================== */

/* --- Available Now Badge --- */
.available-now-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #25D366;
    margin-bottom: 12px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-green 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(37, 211, 102, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 12px rgba(37, 211, 102, 0.9); }
}

/* --- Promo Banner --- */
.promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(255, 45, 123, 0.08), rgba(201, 169, 110, 0.1));
    border-top: 1px solid rgba(255, 45, 123, 0.2);
    border-bottom: 1px solid rgba(255, 45, 123, 0.2);
    flex-wrap: wrap;
}

.promo-badge {
    background: var(--neon-pink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.promo-text {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
}

.promo-text strong {
    color: var(--gold-light);
}

.promo-cta {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--neon-pink);
    border: 1px solid var(--neon-pink);
    padding: 6px 16px;
    border-radius: 100px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-cta:hover {
    background: var(--neon-pink);
    color: #fff;
}

/* === Mobile-specific optimizations === */
@media (max-width: 768px) {

    /* --- Mobile section reordering via flexbox --- */
    main {
        display: flex;
        flex-direction: column;
    }

    /* Target order:
       Hero (0) > Social Proof (1) > Promo (2) > Neon Divider (3) > How-It-Works (4) >
       Services (5) > Pricing (6) > Reviews (7) > Therapists (8) > Marquee (9) >
       About (10) > Coverage (11) > Vegas Skyline (12) > Strip Banner (13) >
       Vegas Experiences (14) > Booking (15) > FAQ (16) > Service Area (17) > Contact (18) */
    .hero { order: 0; }
    .social-proof-ticker { order: 1; }
    .promo-banner { order: 2; }
    .neon-divider-strip { order: 3; }
    .how-it-works-strip { order: 4; }
    .vegas-marquee { order: 5; }
    #services { order: 6; }
    #pricing { order: 7; }
    #reviews { order: 8; }
    /* #therapists moved inline to hero */
    #about { order: 10; }
    .coverage { order: 11; }
    .vegas-skyline-divider { order: 12; }
    .vegas-strip-banner { order: 13; }
    .vegas-experiences { order: 14; }
    #booking { order: 15; }
    #faq { order: 16; }
    #service-area { order: 17; }
    #contact { order: 18; }

    /* --- Hide pricing comparison table on mobile --- */
    .pricing-table-wrap {
        display: none;
    }

    /* --- Therapist cards: horizontal scroll on mobile --- */
    .therapists-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 0 16px;
        scrollbar-width: none;
    }

    .therapists-grid::-webkit-scrollbar {
        display: none;
    }

    .therapist-card {
        flex: 0 0 42%;
        scroll-snap-align: center;
    }

    /* Team banner: also horizontal scroll */
    .team-banner {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding-bottom: 12px;
        scrollbar-width: none;
        grid-template-columns: unset !important;
    }

    .team-banner::-webkit-scrollbar {
        display: none;
    }

    .team-banner-img {
        flex: 0 0 70%;
        scroll-snap-align: center;
    }

    /* --- Fix footer tap targets --- */
    .footer-links a {
        padding: 10px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        margin-bottom: 0;
    }

    /* --- Fix contact section tap targets --- */
    .contact-item a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* --- Promo banner mobile --- */
    .promo-banner {
        padding: 12px 16px;
        gap: 8px;
    }

    .promo-text {
        font-size: 12px;
    }

    .promo-cta {
        width: 100%;
        text-align: center;
        padding: 10px 16px;
    }

    /* --- Available Now badge centered on mobile --- */
    .available-now-badge {
        align-self: center;
    }

    /* --- WhatsApp CTA bar improvement --- */
    .mobile-cta-bar .cta-whatsapp {
        font-size: 12px;
    }

    .mobile-cta-bar .cta-whatsapp svg {
        flex-shrink: 0;
    }
}

/* ========================================
   Therapist Preview (Homepage) +
   Therapist Page + Lightbox
   ======================================== */

/* --- Homepage: Compact Therapist Preview --- */
.therapists-preview {
    text-align: center;
}

.therapist-preview-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 32px auto 28px;
}

.therapist-preview-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--bg-dark);
    margin-left: -12px;
    position: relative;
    transition: transform 0.3s ease;
}

.therapist-preview-img:first-child {
    margin-left: 0;
}

.therapist-preview-img:hover {
    transform: scale(1.1);
    z-index: 2;
}

.therapist-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.therapist-preview-more {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.15);
    border: 2px solid var(--gold);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.therapist-view-all {
    display: inline-block;
}

/* --- Hero Therapist Card --- */
.hero-therapist-card {
    display: block;
    text-decoration: none;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 45, 123, 0.06), rgba(0, 212, 255, 0.06), rgba(180, 77, 255, 0.06));
    border: 1.5px solid rgba(255, 45, 123, 0.3);
    border-radius: var(--radius);
    margin-bottom: 32px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 45, 123, 0.08), 0 0 40px rgba(0, 212, 255, 0.05);
}

.hero-therapist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--gold-light), var(--neon-blue));
    animation: neon-line-glow 4s ease-in-out infinite;
}

.hero-therapist-card:hover {
    background: linear-gradient(135deg, rgba(255, 45, 123, 0.1), rgba(0, 212, 255, 0.1));
    border-color: var(--neon-pink);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 45, 123, 0.15), 0 0 40px rgba(0, 212, 255, 0.1);
}

.hero-therapist-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.hero-therapist-faces {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

.hero-face {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid var(--bg-dark);
    margin-left: -10px;
    transition: transform 0.3s ease;
    position: relative;
}

.hero-face:first-child {
    margin-left: 0;
}

.hero-therapist-card:hover .hero-face {
    transform: scale(1.05);
}

.hero-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-face.more {
    background: linear-gradient(135deg, rgba(255, 45, 123, 0.2), rgba(180, 77, 255, 0.2));
    border: 2px solid var(--neon-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--neon-pink);
}

.hero-therapist-cta {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--neon-pink);
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border: 1px solid var(--neon-pink);
    border-radius: 100px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 45, 123, 0.3);
}

.hero-therapist-card:hover .hero-therapist-cta {
    background: var(--neon-pink);
    color: #fff;
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 45, 123, 0.4);
}

@media (max-width: 768px) {
    .hero-therapist-card {
        padding: 18px 16px;
    }

    .hero-face {
        width: 48px;
        height: 48px;
    }

    .hero-therapist-cta {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* --- Therapist Page Hero --- */
.therapist-page-hero {
    padding: 120px 0 40px;
    background: linear-gradient(180deg, #0a0a0a, var(--bg-section));
}

.back-link {
    display: inline-block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--gold);
}

/* --- Therapist Thumbnail Grid --- */
.therapist-thumb-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.therapist-thumb {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    aspect-ratio: 3/4;
}

.therapist-thumb:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.15);
}

.therapist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.therapist-thumb:hover img {
    transform: scale(1.05);
}

.thumb-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 8px 8px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.therapist-page-cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.therapist-page-cta p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius);
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-caption {
    margin-top: 16px;
    font-size: 16px;
    color: var(--gold-light);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(201, 169, 110, 0.3);
    border-color: var(--gold);
    color: var(--gold);
}

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

/* --- Mobile: Therapist Thumb Grid --- */
@media (max-width: 768px) {
    .therapist-thumb-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .therapist-page-hero {
        padding: 90px 0 24px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

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

    .lightbox-close {
        top: 12px;
        right: 12px;
    }

    .lightbox-content img {
        max-height: 65vh;
    }

    .therapist-preview-img {
        width: 56px;
        height: 56px;
    }

    .therapist-preview-more {
        width: 56px;
        height: 56px;
        font-size: 15px;
    }
}
