/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (LIGHT & DARK)
   ========================================================================== */
:root {
    /* Light Theme Colors (Default) */
    --bg-primary: #FAF8F5;       /* Seda/Off-White leve */
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #F3EFEA;      /* Bege Mármore */
    --text-primary: #1A1A1A;     /* Preto Suave */
    --text-secondary: #5A5A5A;   /* Cinza Elegante */
    --text-light: #8C8C8C;
    
    /* Accent Colors - Brushed Gold Premium */
    --gold-1: #BF953F;
    --gold-2: #FCF6BA;
    --gold-3: #B38728;
    --gold-4: #FBF5B7;
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --gold-solid: #C5A059;
    
    /* Glassmorphism Elements Light */
    --glass-bg: rgba(250, 248, 245, 0.85);
    --glass-border: rgba(191, 149, 63, 0.15);
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    
    /* Common Constants */
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-med: all 0.3s ease;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}

/* Dark Theme Overrides */
[data-theme="dark"] {
    --bg-primary: #0F0F0F;       /* Preto Absoluto */
    --bg-secondary: #161616;     /* Cinza Ônix */
    --bg-tertiary: #1F1F1F;
    --text-primary: #F5F5F5;     /* Off-white */
    --text-secondary: #BBBBBB;   /* Cinza suave */
    --text-light: #888888;
    
    /* Glassmorphism Elements Dark */
    --glass-bg: rgba(15, 15, 15, 0.85);
    --glass-border: rgba(191, 149, 63, 0.25);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    transition: background-color 0.6s ease, color 0.6s ease;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0F0F0F; /* Always starts dark for luxury feel */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.preloader-content {
    text-align: center;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    letter-spacing: 12px;
    color: #FFFFFF;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    animation: logoFadeIn 1.5s ease;
}

.logo-subtext {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 6px;
    color: var(--gold-solid);
    text-transform: uppercase;
    display: block;
    margin-top: 10px;
    opacity: 0.8;
    animation: logoFadeIn 2s ease;
}

.loader-line {
    width: 0%;
    height: 1px;
    background: var(--gold-gradient);
    margin-top: 15px;
    animation: lineExpand 1.8s ease forwards;
}

@keyframes logoFadeIn {
    0% { opacity: 0; transform: translateY(10px); letter-spacing: 4px; }
    100% { opacity: 1; transform: translateY(0); letter-spacing: 12px; }
}

@keyframes lineExpand {
    0% { width: 0%; margin-left: 50%; }
    100% { width: 100%; margin-left: 0%; }
}

/* ==========================================================================
   TYPOGRAPHY SYSTEM
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 15px;
}

.section-subtitle {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold-solid);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

.title-divider {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 20px 0;
}

.title-divider.center {
    margin: 20px auto;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   BUTTONS & CALL TO ACTIONS
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gold-gradient);
    color: #000 !important;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    cursor: pointer;
    z-index: 1;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: -70%;
    width: 42%;
    z-index: 2;
    transform: skewX(-22deg);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.48),
        transparent
    );
    animation: buttonLight 3.8s ease-in-out infinite;
}

@keyframes buttonLight {
    0%, 52% {
        left: -70%;
    }
    100% {
        left: 130%;
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1A1A1A;
    color: #FFF;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.btn-primary:hover {
    color: #FFFFFF !important;
    box-shadow: 0 10px 25px rgba(191, 149, 63, 0.3);
    transform: translateY(-3px);
}

.btn-primary:hover::before {
    transform: scaleY(1);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--gold-solid);
    background: transparent;
    color: var(--text-primary);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transition: var(--transition-slow);
    z-index: -1;
}

.btn-outline:hover {
    color: #000 !important;
    border-color: transparent;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--text-primary);
    padding: 5px 0;
    border-bottom: 1px solid transparent;
}

.btn-text-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-text-link:hover {
    border-bottom-color: var(--gold-solid);
}

.btn-text-link:hover svg {
    transform: translateX(8px);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-med);
    padding: 25px 0;
}

.navbar.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    text-decoration: none;
}

.brand-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--text-primary);
    transition: var(--transition-med);
}

.brand-subtitle {
    font-family: var(--font-sans);
    font-size: 0.5rem;
    letter-spacing: 3px;
    color: var(--gold-solid);
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 1px;
    transition: var(--transition-med);
}

.navbar.scrolled .brand-title {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-solid);
    transition: var(--transition-med);
}

.nav-link:hover {
    opacity: 1;
    color: var(--gold-solid);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Theme Toggle Switch styling */
.theme-btn {
    background: none;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-med);
}

.theme-btn:hover {
    border-color: var(--gold-solid);
    background: var(--glass-bg);
}

.theme-btn svg {
    width: 18px;
    height: 18px;
    position: absolute;
    transition: var(--transition-med);
}

.whatsapp-nav-btn {
    text-decoration: none;
    color: var(--text-primary);
}

.whatsapp-nav-btn svg {
    position: static;
    fill: currentColor;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.whatsapp-nav-btn:hover {
    color: #25D366;
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.08);
}

.whatsapp-nav-btn:hover svg {
    transform: scale(1.1);
}

/* Toggle visibility logic */
[data-theme="light"] .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.5); }
[data-theme="light"] .icon-moon { opacity: 1; transform: rotate(0) scale(1); }

[data-theme="dark"] .icon-sun { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.5); }

/* Mobile toggle button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0F0F0F; /* Keep dark base for contrast */
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Darken photo for typography visibility */
    transform: scale(1.05);
    transition: transform 0.5s ease-out;
}

.hero-bg-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.6) 0%, rgba(15, 15, 15, 0.8) 80%, rgba(15, 15, 15, 1) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.hero-content {
    max-width: 750px;
    color: #FFFFFF;
}

.hero-content .subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--gold-solid);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    font-family: var(--font-serif);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Scroll indicator animation */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 3;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 2px;
    height: 8px;
    background-color: var(--gold-solid);
    border-radius: 2px;
    animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ==========================================================================
   PHILOSOPHY & STATS
   ========================================================================== */
.philosophy-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.grid-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding-top: 60px;
    padding-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold-solid);
    opacity: 0.6;
    display: block;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.stat-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================================================
   ABOUT SECTION & VIDEO PLACEHOLDER
   ========================================================================== */
.about-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
}

.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

/* Luxury Video Placeholder Frame */
.about-image-wrapper {
    position: relative;
}

.luxury-video-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #161616;
    border: 1px solid rgba(191, 149, 63, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.video-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.play-btn-icon {
    width: 64px;
    height: 64px;
    color: var(--gold-solid);
    stroke-width: 1px;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    padding: 15px;
    border: 1px solid var(--gold-solid);
    transition: var(--transition-slow);
}

.luxury-video-placeholder:hover .play-btn-icon {
    transform: scale(1.15);
    background: var(--gold-gradient);
    color: #000;
}

.video-overlay span {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.video-fallback-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(191,149,63,0.1) 0%, rgba(0,0,0,0) 60%);
    top: -25%;
    left: -25%;
    animation: slowRotate 20s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-text .lead-paragraph {
    font-size: 1.3rem;
    font-family: var(--font-serif);
    color: var(--text-primary);
    margin-bottom: 20px;
    font-style: italic;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.luxury-list {
    margin-top: 30px;
}

.luxury-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-primary);
}

.gold-icon {
    color: var(--gold-solid);
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   FEATURED SECTION: HEAD SPA
   ========================================================================== */
.headspa-section {
    padding: 120px 0;
    background-color: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: radial-gradient(#C5A059 1px, transparent 1px);
    background-size: 20px 20px;
}

.badge-gold {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--gold-solid);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold-solid);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.headspa-content .sub-headline {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.headspa-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.benefits-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.benefit-mini-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-secondary);
    padding: 20px;
    border-left: 3px solid var(--gold-solid);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: var(--transition-med);
}

.benefit-mini-card:hover {
    transform: translateX(10px);
    box-shadow: var(--card-shadow);
}

.benefit-mini-card svg {
    color: var(--gold-solid);
    width: 28px;
    height: 28px;
}

.benefit-mini-card h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Image styling */
.headspa-image-frame {
    position: relative;
}

.gold-border-behind {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-solid);
    z-index: 0;
}

.img-lux-reveal {
    position: relative;
    z-index: 1;
    box-shadow: var(--card-shadow);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* ==========================================================================
   SERVICES SECTION (GRID OF LUXURY CARDS)
   ========================================================================== */
.services-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-solid);
    box-shadow: 0 20px 40px rgba(191, 149, 63, 0.08);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-overlay {
    display: none;
}

.service-overlay-gold {
    display: none;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-gradient);
    color: #000000;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    transition: var(--transition-med);
}

.service-card:hover .service-info h3 {
    color: var(--gold-solid);
}

.service-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    transition: var(--transition-med);
    border-radius: 4px;
}

.service-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-btn:hover {
    border-color: var(--gold-solid);
    color: var(--gold-solid);
    background: rgba(191, 149, 63, 0.05);
}

.service-btn:hover svg {
    transform: translateX(4px);
}

.btn-gold-outline {
    border-color: var(--gold-solid);
    color: var(--gold-solid);
}

.btn-gold-outline:hover {
    background: var(--gold-gradient);
    color: #000000 !important;
    border-color: transparent;
}

.btn-gold-outline:hover svg {
    color: #000000;
}

/* ==========================================================================
   VIDEO INTERACTIVE PLAYERS
   ========================================================================== */
.luxury-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #0F0F0F;
    border: 1px solid rgba(191, 149, 63, 0.25);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.luxury-video-container.square-aspect {
    aspect-ratio: 1 / 1;
}

.luxury-video-container.widescreen-aspect {
    aspect-ratio: 16 / 9;
}

.luxury-video-container.vertical-aspect {
    aspect-ratio: 9 / 16;
    max-width: 420px;
    margin: 0 auto;
}

.luxury-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.custom-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 5;
    transition: var(--transition-slow);
    cursor: pointer;
    color: #FFFFFF;
}

.custom-video-overlay:hover {
    background-color: rgba(15, 15, 15, 0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.play-button-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--gold-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
}

.play-button-wrapper.large {
    width: 80px;
    height: 80px;
}

.custom-video-overlay:hover .play-button-wrapper {
    transform: scale(1.15);
    background: var(--gold-gradient);
}

.custom-video-overlay:hover .play-btn-icon {
    color: #000000;
}

.play-btn-icon {
    width: 24px;
    height: 24px;
    color: var(--gold-solid);
    transition: var(--transition-med);
}

.play-button-wrapper.large .play-btn-icon {
    width: 32px;
    height: 32px;
}

.custom-video-overlay span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.custom-video-overlay.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ==========================================================================
   VIDEO TESTIMONIALS SECTION (STORIES STYLE)
   ========================================================================== */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--bg-tertiary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    aspect-ratio: 9 / 16;
    position: relative;
    cursor: pointer;
    transition: var(--transition-slow);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold-solid);
    box-shadow: 0 15px 30px rgba(191, 149, 63, 0.15);
}

.testimonial-video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(15, 15, 15, 0.6);
    border: 1px solid var(--gold-solid);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: var(--transition-slow);
}

.testimonial-card:hover .testimonial-play-overlay {
    background: var(--gold-gradient);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 15px rgba(191, 149, 63, 0.4);
}

.testimonial-play-overlay svg {
    width: 18px;
    height: 18px;
    color: var(--gold-solid);
    margin-left: 2px;
    transition: var(--transition-med);
}

.testimonial-card:hover .testimonial-play-overlay svg {
    color: #000000;
}

.testimonial-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 15px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.client-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 500;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 12px;
    height: 12px;
    color: var(--gold-solid);
}

.stars svg.fill {
    fill: var(--gold-solid);
}

/* ==========================================================================
   FULLSCREEN VIDEO MODAL
   ========================================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.video-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 450px;
    aspect-ratio: 9 / 16;
    border: 1px solid rgba(191, 149, 63, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    background: #000000;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.video-modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid var(--gold-solid);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #FFFFFF;
    transition: var(--transition-med);
}

.modal-close:hover {
    background: var(--gold-gradient);
    color: #000000;
    transform: rotate(90deg);
}

.modal-close svg {
    width: 16px;
    height: 16px;
}

.modal-video-wrapper {
    width: 100%;
    height: 100%;
}

.modal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Layout Additions */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .testimonials-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   IMMERSIVE PARALLAX VIDEO CTA
   ========================================================================== */
.video-immersive-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background-color: #0F0F0F;
    color: #FFFFFF;
}

.immersive-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.immersive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    transform: scale(1.1);
}

.v-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, #0F0F0F 100%);
}

.immersive-content {
    position: relative;
    z-index: 1;
}

.immersive-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-top: 10px;
    margin-bottom: 20px;
}

.gold-tag {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--gold-solid);
    text-transform: uppercase;
}

.cinematic-video-holder {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    margin: 50px auto 0;
    background-color: rgba(0,0,0,0.5);
    border: 1px solid rgba(191, 149, 63, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
}

.inner-placeholder {
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(191,149,63,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    gap: 15px;
}

.video-icon-large {
    width: 60px;
    height: 60px;
    color: var(--gold-solid);
    opacity: 0.7;
}

/* ==========================================================================
   CONTACT & MAP SECTION
   ========================================================================== */
.footer-top-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-line svg {
    color: var(--gold-solid);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-line span, .contact-line a {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.contact-line a:hover {
    color: var(--gold-solid);
}

.hours-block {
    margin-top: 40px;
    padding: 25px;
    border: 1px solid var(--glass-border);
    background: var(--bg-tertiary);
    display: inline-block;
}

.hours-block h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-solid);
    margin-bottom: 8px;
}

.hours-block p {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: var(--font-serif);
}

/* Map Container */
.map-container {
    height: 450px;
    position: relative;
    box-shadow: var(--card-shadow);
}

.luxury-map-placeholder {
    width: 100%;
    height: 100%;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

/* ==========================================================================
   FINAL FOOTER
   ========================================================================== */
.main-footer {
    background-color: #0F0F0F;
    color: #FFFFFF;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-brand-section h2 {
    font-size: 2.5rem;
    letter-spacing: 8px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.footer-brand-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold-solid);
    text-transform: uppercase;
    display: block;
    margin-top: -12px;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-brand-section p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-links h4, .footer-contact-quick h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-solid);
    padding-left: 5px;
}

.footer-contact-quick p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.divider-footer {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin-bottom: 30px;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a:hover {
    color: #FFFFFF;
}

/* Floating & Sticky Tools */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--bg-secondary);
    border: 1px solid var(--gold-solid);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-med);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}



/* ==========================================================================
   RESPONSIVE ADAPTATIONS
   ========================================================================== */
@media (max-width: 1024px) {
    .grid-2-col { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand-section { grid-column: span 2; }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .grid-2-col { grid-template-columns: 1fr; }
    .grid-stats { grid-template-columns: 1fr; gap: 20px; }
    
    .hero-title { font-size: 2.8rem; }
    .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 20px; }
    
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .headspa-image-frame { margin-bottom: 40px; }
    .gold-border-behind { display: none; }
    
    /* Navbar Mobile Adjustments */
    .navbar {
        padding: 15px 0;
    }
    .navbar.scrolled {
        padding: 10px 0;
    }
    .navbar .btn-outline {
        display: none; /* Hide large Agendar button in fixed nav on mobile */
    }
    .brand-title {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }
    .brand-subtitle {
        font-size: 0.4rem;
        letter-spacing: 2px;
    }
    .nav-actions {
        gap: 10px;
    }
    
    /* Preloader Logo Mobile Adjustment */
    .logo-text {
        font-size: 2.2rem;
        letter-spacing: 6px;
    }
    .logo-subtext {
        font-size: 0.75rem;
        letter-spacing: 4px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .service-info {
        padding: 15px;
    }
    
    .service-info h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }
    
    .service-info p {
        font-size: 0.8rem;
        line-height: 1.45;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .service-btn {
        padding: 10px 12px;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* Mobile Sidebar */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--bg-secondary);
    z-index: 2000;
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
    padding: 80px 40px;
    transition: right 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
}

.mobile-links li {
    margin-bottom: 25px;
}

.mobile-links a {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-primary);
}

/* ==========================================================================
   BOOKING SYSTEM & PROCEDURES STYLING (WSX HIGH TICKET)
   ========================================================================== */

/* Category Switcher */
.categories-tabs-wrapper {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.categories-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 5px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    scroll-snap-type: x mandatory;
}

.categories-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.category-tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-med);
}

.category-tab:hover {
    color: var(--gold-solid);
    border-color: var(--gold-solid);
    background: rgba(191, 149, 63, 0.05);
}

.category-tab.active {
    background: var(--gold-gradient);
    color: #000000;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(191, 149, 63, 0.2);
}

/* Procedures Container & List */
.procedures-container {
    width: 100%;
    min-height: 350px;
}

.procedures-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 900px) {
    .procedures-list {
        grid-template-columns: 1fr;
    }
}

.procedure-item {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-slow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.procedure-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-solid);
    box-shadow: var(--card-shadow);
}

.procedure-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}

.procedure-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0;
}

.procedure-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.procedure-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.procedure-meta svg {
    width: 14px;
    height: 14px;
    color: var(--gold-solid);
}

.procedure-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.procedure-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    margin-top: auto;
}

.procedure-price {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--gold-solid);
    font-weight: 500;
}

.procedure-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.booking-modal.open {
    opacity: 1;
    visibility: visible;
}

.booking-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.booking-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 580px;
    max-height: 90vh;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow-y: auto;
    background: var(--bg-secondary);
    box-shadow: var(--card-shadow);
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.booking-modal.open .booking-modal-content {
    transform: scale(1);
}

.booking-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-med);
}

.booking-modal-close:hover {
    background: var(--gold-gradient);
    color: #000000;
    transform: rotate(90deg);
    border-color: transparent;
}

.booking-modal-close svg {
    width: 16px;
    height: 16px;
}

.booking-flow-wrapper {
    padding: 40px;
}

@media (max-width: 500px) {
    .booking-flow-wrapper {
        padding: 25px 20px;
    }
}

.booking-flow-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.booking-step-indicator {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-solid);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.booking-flow-header h3 {
    font-size: 1.8rem;
    margin: 0 0 5px;
    color: var(--text-primary);
}

.selected-service-name {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0 0 12px;
}

.selected-service-meta {
    display: flex;
    gap: 20px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-light);
}

.selected-service-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.selected-service-meta svg {
    width: 14px;
    height: 14px;
    color: var(--gold-solid);
}

/* Booking Steps Switching */
.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.booking-section-title {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 15px;
}

/* Date Selector / Calendar */
.calendar-wrapper {
    width: 100%;
}

.calendar-days {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
}

.calendar-day {
    flex: 0 0 calc(20% - 8px);
    min-width: 75px;
    aspect-ratio: 1 / 1.1;
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-med);
}

.calendar-day:hover:not(.disabled) {
    border-color: var(--gold-solid);
    color: var(--gold-solid);
    transform: translateY(-2px);
}

.calendar-day.selected {
    background: var(--gold-gradient);
    color: #000000;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(191, 149, 63, 0.25);
}

.calendar-day.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.calendar-day .day-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.calendar-day .day-name {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Time Slots */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 5px;
}

@media (max-width: 480px) {
    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.time-slot {
    padding: 10px 5px;
    text-align: center;
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-med);
}

.time-slot:hover:not(.disabled) {
    border-color: var(--gold-solid);
    color: var(--gold-solid);
}

.time-slot.selected {
    background: var(--gold-gradient);
    color: #000000;
    border-color: transparent;
    font-weight: 600;
}

.time-slot.disabled {
    opacity: 0.25;
    background: rgba(0, 0, 0, 0.05);
    cursor: not-allowed;
    pointer-events: none;
    border-color: transparent;
    text-decoration: line-through;
}

/* Booking Footer */
.booking-step-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 35px;
    border-top: 1px solid var(--glass-border);
    padding-top: 25px;
}

.booking-step-footer button {
    min-width: 130px;
}

/* Forms */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-group input {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-med);
}

.form-group input:focus {
    border-color: var(--gold-solid);
    box-shadow: 0 0 10px rgba(191, 149, 63, 0.1);
}

.booking-summary-box {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-summary-box h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 8px;
}

.summary-line {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.summary-line span {
    color: var(--text-primary);
    font-weight: 500;
}

/* Success step */
#booking-step-success {
    text-align: center;
    padding: 20px 0;
}

.success-checkmark-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.success-checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(191, 149, 63, 0.4);
    z-index: 1;
    position: relative;
}

.success-checkmark-icon {
    font-size: 2.5rem;
    color: #000000;
    font-weight: 800;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--gold-solid);
    animation: successPulse 2s infinite;
}

.success-title {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin: 0 0 10px;
}

.success-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 30px;
}

.success-summary-card {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.success-instructions {
    font-size: 0.85rem;
    color: var(--text-light);
    max-width: 380px;
    margin: 0 auto;
}

@keyframes scaleIn {
    0% { transform: scale(0.3); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes successPulse {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

/* ==========================================================================
   LANDING PAGE CATEGORIES INDEX GRID WITH PHOTOS & BUTTONS
   ========================================================================== */
.categories-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 35px;
}

@media (max-width: 640px) {
    .categories-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.category-index-card {
    position: relative;
    height: 280px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 640px) {
    .category-index-card {
        height: 230px;
        padding: 14px;
        border-radius: 14px;
    }
}

.category-index-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-solid, #C5A059);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.25);
}

.category-index-card.featured {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Background Image & Overlay */
.cat-card-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cat-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-index-card:hover .cat-card-bg img {
    transform: scale(1.1);
}

.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 15, 15, 0.95) 0%,
        rgba(15, 15, 15, 0.5) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    transition: background 0.3s ease;
}

[data-theme="light"] .cat-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.category-index-card:hover .cat-card-overlay {
    background: linear-gradient(
        to top,
        rgba(15, 15, 15, 0.98) 0%,
        rgba(15, 15, 15, 0.4) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

/* Card Header (Badges) */
.cat-card-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.cat-count-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    margin-left: auto;
}

.cat-tag-top {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    background: var(--gold-gradient, linear-gradient(135deg, #BF953F, #FCF6BA));
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Body (Title & Button) */
.cat-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.cat-card-body h3 {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 640px) {
    .cat-card-body h3 {
        font-size: 1.2rem;
    }
}

.cat-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-solid, #C5A059);
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.category-index-card:hover .cat-action-btn {
    background: var(--gold-solid, #C5A059);
    color: #000000;
    border-color: var(--gold-solid, #C5A059);
    transform: translateX(3px);
}

.cat-action-btn i {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
}

.category-index-card:hover .cat-action-btn i {
    transform: translateX(2px);
}


