/* ========== VARIABLES ========== */
:root {
    --color-bg-dark: #0a0a0a;
    --color-bg-light: #121212;
    --color-red: #8b0000; /* Intense Crimson */
    --color-red-light: #ff4d4d;
    --color-red-glow: rgba(139, 0, 0, 0.4);
    --color-burgundy: #1c0101; /* Deepest Burgundy for backgrounds */
    --color-gold: #c5a059; /* Metallic Gold */
    --color-gold-light: #eaddb6;
    --color-gold-dark: #8c6e33;
    --color-text-primary: #f0f0f0;
    --color-text-secondary: #aaaaaa;
    --color-romantic-red: #5a0404; /* Rich, velvety romantic red */

    --font-heading: 'Playfair Display', serif;
    --font-luxury: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    --transition-cinematic: 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-smooth: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.3s ease;
    
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 3rem;
    --spacing-lg: 5rem;
    --spacing-xl: 7rem;
}

/* Hide Scroll Hint on desktop */
.scroll-hint { display: none; }

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

body.loading {
    overflow: hidden;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s var(--transition-cinematic), visibility 0.8s;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.2em;
    text-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
    margin-bottom: 2rem;
    animation: monogramPulse 2.5s infinite ease-in-out;
}

@keyframes monogramPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.preloader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.preloader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--color-red), var(--color-gold));
    animation: fillProgress 2.2s ease-in-out forwards;
}

@keyframes fillProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.preloader-text {
    font-family: var(--font-luxury);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeInProgress 1s ease-out 0.5s forwards;
}

@keyframes fadeInProgress {
    to { opacity: 1; }
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Atmospheric Aura Backgrounds */
body::before, body::after {
    content: '';
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -3;
    pointer-events: none;
    opacity: 0.15;
}

body::before {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, var(--color-red), transparent 70%);
    animation: auraFloat 20s infinite alternate;
}

body::after {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, var(--color-gold-dark), transparent 70%);
    animation: auraFloat 25s infinite alternate-reverse;
}

@keyframes auraFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(10%, 10%) scale(1.2); }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    color: var(--color-gold-light);
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

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

/* ========== TYPOGRAPHY ========== */
.headline {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-xs);
    color: var(--color-gold);
}

.subtext {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--color-text-secondary);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: var(--spacing-sm);
    color: var(--color-gold-light);
}

.section-subtitle {
    font-family: var(--font-luxury);
    font-size: 1.1rem;
    text-transform: capitalize;
    font-style: italic;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    margin-bottom: var(--spacing-xs);
}

.large-text {
    font-family: var(--font-luxury);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--color-gold-light);
    max-width: 900px;
    margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    color: var(--color-bg-dark);
    padding: 1.2rem 3rem;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    font-weight: 500;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
    background: linear-gradient(135deg, var(--color-gold), #ffe5a3);
}

.btn-outline {
    display: inline-block;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    transition: var(--transition-fast);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
}

.btn-text {
    display: inline-block;
    color: var(--color-gold);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    /* margin-top: var(--spacing-sm); */
    position: relative;
    padding-bottom: 5px;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.btn-text:hover::after {
    width: 100%;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: var(--spacing-sm) 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
}

.brand-logo:hover {
    transform: scale(1.02);
}

.monogram {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-bg-dark);
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
    padding: 6px 12px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--color-gold-light);
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-links a:not(.nav-cta) {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
}

.nav-links a:not(.nav-cta):hover {
    color: var(--color-gold);
}

.nav-cta {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-bg-dark) !important;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
    animation: goldPulse 2.5s infinite;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.7);
    background: linear-gradient(135deg, #ffffff, var(--color-gold-light));
}

@keyframes goldPulse {
    0% { box-shadow: 0 0 10px rgba(197, 160, 89, 0.3); }
    50% { box-shadow: 0 0 25px rgba(197, 160, 89, 0.7); }
    100% { box-shadow: 0 0 10px rgba(197, 160, 89, 0.3); }
}

/* ========== HERO SECTION ========== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%; /* Extra height for parallax */
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: translateZ(0); /* Hardware acceleration */
}

/* Overlay dark/red gradient to add mood */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(139, 0, 0, 0.4) 0%,
        rgba(10, 10, 10, 0.8) 70%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: -1;
    border-bottom: 1px solid rgba(139, 0, 0, 0.2);
}

.hero-content {
    max-width: 800px;
    padding: 0 var(--spacing-sm);
    z-index: 10;
}

/* ========== DESKTOP WHATSAPP BUTTON ========== */
.desktop-whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 75px;
    height: 75px;
    background: radial-gradient(circle at 30% 30%, #25d366, #128c7e 80%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: waPulse 3s infinite;
}

.desktop-whatsapp-btn i {
    font-size: 2.5rem;
}

@keyframes waPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.desktop-whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    background: #20ba59;
}

@media (max-width: 800px) {
    .desktop-whatsapp-btn {
        display: none !important;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* ========== DESIRE JOURNEY SECTION ========== */
.desire-journey {
    background-color: var(--color-romantic-red);
    position: relative;
    border-bottom: 2px solid rgba(139, 0, 0, 0.3);
    box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.journey-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 550px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.journey-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(0.8) sepia(0.3) hue-rotate(-20deg);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 1s ease;
}

.journey-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.8) saturate(1.2) sepia(0.1) hue-rotate(0deg);
}

.journey-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-md);
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(139,0,0,0.4) 40%, transparent 100%);
    transition: background 0.6s ease;
}

.journey-card:hover .journey-overlay {
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(139,0,0,0.5) 50%, transparent 100%);
}

.journey-overlay h3 {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-xs);
    font-style: italic;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.journey-overlay p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 0;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
}

.journey-card:hover .journey-overlay h3,
.journey-card:hover .journey-overlay p {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 800px) {
    .journey-grid { grid-template-columns: 1fr; }
    .journey-card { height: 400px; }
}

/* ========== ABOUT SECTION ========== */
.about {
    background-color: var(--color-bg-dark);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-image img, .about-image video {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transform: scale(1.05);
    transition: var(--transition-cinematic);
}

.about-image:hover img, .about-image:hover video {
    transform: scale(1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--color-red-glow), transparent);
    mix-blend-mode: overlay;
    z-index: 2;
}

.video-overlay-red {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.2); /* Soft crimson tint */
    z-index: 2;
    pointer-events: none;
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

/* ========== DESIRE SECTION ========== */
.desire {
    background-color: var(--color-bg-dark);
    position: relative;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.desire::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.05) 0%, transparent 80%);
    pointer-events: none;
}

.desire-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
}

.desire-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transform: scale(1.05);
    transition: var(--transition-slow);
}

.desire-image:hover img {
    transform: scale(1);
}

.image-overlay-gold {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.2));
    mix-blend-mode: overlay;
}

/* ========== TREATMENTS SECTION ========== */
.treatments {
    background-color: var(--color-bg-light);
    overflow: hidden;
}

.treatments-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.treatments-scroll {
    width: 100%;
    overflow-x: auto;
    padding: var(--spacing-sm) 0;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.treatments-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.treatments-track {
    display: flex;
    gap: var(--spacing-sm);
    width: max-content;
    padding: 0 var(--spacing-sm);
}

.treatment-card {
    width: 350px;
    height: 500px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.treatment-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.treatment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.treatment-card:hover img {
    transform: scale(1.08); /* slight upscale on hover */
}

.treatment-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    padding: var(--spacing-sm) var(--spacing-sm) 20px;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(74,4,4,0.7) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.5s ease;
}

.treatment-card:hover .treatment-card-overlay {
    background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(74,4,4,0.9) 50%, transparent 100%);
}

.treatment-card-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--color-gold-light);
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.treatment-card:hover .treatment-card-overlay h3 {
    transform: translateY(0);
}

.treatment-price {
    font-family: var(--font-body);
    color: var(--color-gold);
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Scroll Navigation Dots */
.scroll-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
}

.scroll-dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

@media (max-width: 800px) {
    .scroll-dots {
        margin-top: var(--spacing-sm);
    }
}

/* ========== EXPERIENCE PARALLAX ========== */
.experience {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-dark);
    background-attachment: fixed;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
}

.experience::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.5);
}

.experience-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

/* ========== PANORAMIC GALLERY ========== */
.gallery {
    background-color: var(--color-bg-dark);
}

.panoramic-view {
    position: relative;
    width: 100%;
    margin-top: var(--spacing-sm);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.panoramic-view img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center 70%; /* Focus precisely on the round red luxury bed */
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.panoramic-view:hover img {
    transform: scale(1.05); /* Slight cinematic zoom */
}

.panoramic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10,10,10,0.8) 0%, rgba(74,4,4,0.3) 50%, rgba(10,10,10,0.8) 100%);
    pointer-events: none;
}

/* ========== MASONRY GRID ========== */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background-color: #000;
}

.masonry-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 1s ease, opacity 0.5s ease;
    opacity: 0.8;
}

.masonry-item:nth-child(2) img {
    height: 500px; /* Offset heights for masonry feel */
}

.masonry-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

/* ========== CTA SECTION ========== */
.cta {
    background: linear-gradient(to right, var(--color-bg-light), var(--color-red), var(--color-bg-dark));
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.cta p {
    color: var(--color-gold-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

/* ========== WHISPERS SECTION ========== */
.whispers {
    background-color: var(--color-bg-dark);
    position: relative;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.whispers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.whispers-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.whisper-quote {
    padding: var(--spacing-md);
    background: rgba(10, 10, 10, 0.6);
    border-left: 2px solid var(--color-gold);
    border-radius: 0 8px 8px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whisper-quote:hover {
    transform: translateX(10px);
    box-shadow: -5px 15px 40px rgba(74, 4, 4, 0.4);
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-gold-light);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.quote-author {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* ========== INVITATION SECTION ========== */
.invitation {
    background-color: var(--color-bg-dark);
}

.invitation-box {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-md);
    background: rgba(74, 4, 4, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 8px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5), 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.invitation-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(197, 160, 89, 0.1), transparent 30%);
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

.invitation-box p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* ========== LOCATION MAP SECTION ========== */
.location-map {
    background-color: var(--color-bg-dark);
    padding-bottom: var(--spacing-xl);
}

.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
    /* Turns standard map into a lush, dark, red/gold themed map! */
    filter: invert(90%) hue-rotate(180deg) sepia(40%) hue-rotate(-20deg) saturate(150%) brightness(90%);
    opacity: 0.9;
    transition: filter 0.5s ease, opacity 0.5s ease;
}

.map-wrapper:hover iframe {
    filter: invert(90%) hue-rotate(180deg) sepia(40%) hue-rotate(-20deg) saturate(200%) brightness(100%);
    opacity: 1;
}

.map-overlay-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(10,10,10,0.85) 100%);
    pointer-events: none; /* Let clicks pass through */
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--color-bg-dark);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-brand p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: var(--spacing-sm);
    color: #666;
    font-size: 0.8rem;
}

/* ========== ANIMATION CLASSES ========== */
/* Classes added by Intersection Observer */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.5s ease forwards;
    animation-delay: 0.2s;
}

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.is-visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

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

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--color-red), var(--color-red-light));
    z-index: 10001;
    box-shadow: 0 0 10px var(--color-red-glow);
}

/* Word Reveal Animation */
.reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.is-visible .reveal-word {
    opacity: 1;
    transform: translateY(0);
}

/* Shutter Reveal */
.reveal-shutter {
    /* clip-path: inset(0 100% 0 0); */
    transition: clip-path 1.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.is-visible.reveal-shutter {
    clip-path: inset(0 0 0 0);
}

/* Luxury Feature Tags */
.luxury-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 2rem;
}

.feature-tag {
    font-family: var(--font-luxury);
    font-size: 0.9rem;
    color: var(--color-gold-light);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition-fast);
}

.feature-tag:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--color-gold);
}

/* Spotlight Hover Effect */
.treatment-card {
    overflow: hidden;
    position: relative;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
}

.treatment-card:hover::before {
    opacity: 1;
}

/* ========== NATIVE MOBILE APP UX ========== */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 800px) {
    /* 1. Stack All Content */
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .about-image img {
        height: 400px;
    }

    /* 2. Global Mobile Spacing & Padding Adjustments */
    :root {
        --spacing-xl: 4rem; /* Dramatically smaller gaps for mobile */
        --spacing-lg: 3rem;
        --spacing-md: 2rem;
    }

    body {
        padding-bottom: 70px; /* Space for sticky bottom nav */
    }

    /* 3. Container adjustments for mobile */
    .container {
        padding: 0 var(--spacing-sm);
    }

    /* 4. The Sticky App Bottom Navigation Bar */
    .nav-links {
        display: none !important; /* Hide desktop nav links on mobile, keep brand logo */
    }

    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 20px;
        left: 12px;
        right: 12px;
        width: calc(100% - 24px);
        height: 72px; /* Slightly taller for better proportions */
        background: rgba(15, 15, 15, 0.75);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid transparent;
        background-clip: padding-box;
        border-radius: 40px;
        z-index: 10000;
        padding: 0 10px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255,255,255,0.05); /* Soft inner glow */
        overflow: visible !important;
        position: fixed;
    }
    
    /* Metallic Gradient Border Hack */
    .mobile-bottom-nav::before {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: 40px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(197, 160, 89, 0.5), transparent 40%, rgba(197, 160, 89, 0.2) 60%, rgba(197, 160, 89, 0.5));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
    }

    .nav-indicator {
        position: absolute;
        top: 0;
        width: 30px;
        height: 3px;
        background: var(--color-red-light);
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 12px var(--color-red);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.25);
        z-index: 10002;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        text-decoration: none;
        flex: 1;
        transition: all 0.3s ease;
        justify-content: center;
        z-index: 10001;
    }

    .mobile-nav-item i {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }

    .mobile-nav-item.active {
        color: var(--color-gold);
    }

    .mobile-nav-item.active i {
        transform: translateY(-2px);
    }

    /* Central Action Button */
    .mobile-nav-central {
        position: relative;
        flex: 1.5; /* slightly larger for importance */
        display: flex;
        justify-content: center;
        z-index: 10005;
        overflow: visible;
    }

    .mobile-nav-main-btn {
        position: absolute;
        bottom: -10px; /* Refined float position */
        width: 70px; /* Slightly larger */
        height: 70px;
        background: radial-gradient(circle at 30% 30%, #ff4444, var(--color-red) 70%);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        box-shadow: 0 15px 35px rgba(139, 0, 0, 0.6), 0 0 20px rgba(139, 0, 0, 0.3); /* Multi-layer glow */
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 10006;
        animation: fabBreathe 3s infinite ease-in-out;
    }
    
    @keyframes fabBreathe {
        0%, 100% { box-shadow: 0 15px 35px rgba(139, 0, 0, 0.6), 0 0 15px rgba(139, 0, 0, 0.2); }
        50% { box-shadow: 0 18px 45px rgba(139, 0, 0, 0.8), 0 0 30px rgba(139, 0, 0, 0.5); }
    }

    .mobile-nav-main-btn .fa-calendar-days {
        display: block;
        font-size: 1.2rem;
        margin-bottom: 1px;
    }

    .mobile-nav-main-btn .fa-xmark {
        display: none;
        font-size: 1.8rem;
    }

    .mobile-nav-main-btn .btn-text {
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .mobile-nav-main-btn.active {
        transform: translateY(-5px) scale(0.95);
        background: radial-gradient(circle at 30% 30%, var(--color-gold-light), var(--color-gold) 70%);
        box-shadow: 0 10px 25px rgba(197, 160, 89, 0.6);
        border-color: rgba(0,0,0,0.1);
        color: #0c0905;
        animation: none;
    }

    .mobile-nav-main-btn.active .fa-calendar-days,
    .mobile-nav-main-btn.active .btn-text {
        display: none; /* Hide calendar and text when active */
    }

    .mobile-nav-main-btn.active .fa-xmark {
        display: block; /* Show xmark only when active */
    }

    .mobile-nav-menu-options {
        position: absolute;
        bottom: 90px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        pointer-events: none;
        opacity: 0;
        transform: translateY(20px) scale(0.8);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    }

    .mobile-nav-menu-options.show {
        pointer-events: auto;
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .mobile-menu-btn {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        font-size: 0.65rem;
        font-weight: 600;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        transition: all 0.3s ease;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-menu-btn i {
        font-size: 1.3rem;
        margin-bottom: 3px;
    }

    .mobile-menu-btn:active {
        transform: scale(0.9);
    }

    .mobile-menu-btn.whatsapp {
        background: linear-gradient(135deg, #25d366, #128c7e);
    }

    .mobile-menu-btn.call {
        background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
        color: #0f0f0f;
    }

    .mobile-menu-btn svg {
        margin-bottom: 2px;
    }

    .floating-reserve-btn {
        display: none !important;
    }

    /* 5. Journey Cards Mobile */
    .journey-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .journey-card {
        height: 350px; /* Much shorter for mobile */
        margin-bottom: var(--spacing-sm);
    }

    .journey-overlay {
        padding: var(--spacing-sm);
    }

    .journey-overlay h3 {
        font-size: 1.4rem; /* Smaller title */
        margin-bottom: var(--spacing-xs);
    }

    .journey-overlay p {
        font-size: 0.9rem; /* Smaller text */
        line-height: 1.5;
    }

    /* 6. Treatments Section Mobile */
    .treatments-track {
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        padding-bottom: 20px;
    }

    .treatment-card {
        scroll-snap-align: center;
        min-width: 75vw; /* Smaller width to show the next card clearly */
        height: 380px; /* Adjusted for better phone aspect ratio */
        margin-right: var(--spacing-xs);
    }

    .treatment-card:last-child {
        margin-right: var(--spacing-sm);
    }

    .treatment-card-overlay h3 {
        font-size: 1.1rem; /* Smaller title */
    }

    .treatment-price {
        font-size: 0.9rem; /* Smaller price */
    }

    /* 7. Gallery Section Mobile */
    .panoramic-view img {
        height: 250px; /* Shorter panoramic on mobile */
        object-fit: cover;
    }

    .masonry-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: var(--spacing-xs);
        margin-top: var(--spacing-md);
    }

    .masonry-item img {
        height: 180px; /* Shorter masonry images */
    }

    .masonry-item:nth-child(2) img {
        height: 220px; /* Slightly taller for variety */
    }

    /* 8. Testimonials Mobile */
    .whispers-container {
        gap: var(--spacing-sm);
    }

    .whisper-quote {
        padding: var(--spacing-sm);
    }

    .quote-text {
        font-size: 1.2rem; /* Smaller quote text */
        line-height: 1.4;
        margin-bottom: var(--spacing-xs);
    }

    .quote-author {
        font-size: 0.9rem;
    }

    /* 9. Map Section Mobile */
    .map-wrapper iframe {
        height: 300px; /* Shorter map on mobile */
    }

    /* Scroll Hint for Mobile */
    .scroll-hint {
        display: block;
        margin-bottom: var(--spacing-sm);
        font-family: var(--font-luxury);
        color: var(--color-gold);
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        animation: pulse 2s infinite;
        text-align: center;
    }
    
    .scroll-hint i {
        margin-right: 8px;
    }

    /* 10. Buttons Mobile */
    .btn-primary {
        padding: 1rem 2rem; /* Smaller padding */
        font-size: 0.9rem;
        min-height: 44px; /* Ensure touch target */
        width: 100%; /* Full width on mobile */
        max-width: 300px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    .btn-primary.large-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }

    /* 11. Mobile Navbar Adjustments */
    .navbar {
        padding: var(--spacing-xs) 0;
    }

    .nav-container {
        padding: 0 var(--spacing-xs);
    }

    .monogram {
        font-size: 1.3rem;
        padding: 3px 6px;
    }

    .brand-text {
        font-size: 0.75rem;
    }

    /* 12. Hero Background Mobile Adjustments */
    .hero-bg {
        height: 120%;
        background-position: center top;
        width: 100vw;
    }

    .hero {
        min-height: 85vh; /* Slightly less height on mobile */
        padding-top: 0.5rem;
        width: 100%;
        overflow: hidden;
    }

    .hero-content {
        padding-top: 0.5rem;
        width: 100%;
    }

    .headline {
        font-size: clamp(1.8rem, 10vw, 3.5rem); /* Refined for mobile */
        margin-bottom: var(--spacing-xs);
        padding: 0 10px;
    }

    .subtext {
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        margin-bottom: var(--spacing-md);
        padding: 0 20px;
    }

    /* 13. Section Titles Mobile */
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: var(--spacing-sm);
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: var(--spacing-sm);
    }

    /* 14. Desire Section Mobile */
    .desire-image img {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }

    /* 15. Experience Section Mobile */
    .experience {
        min-height: 60vh;
        width: 100%;
    }

    .large-text {
        font-size: 1.1rem; /* slightly smaller */
        line-height: 1.5;
        padding: 0 20px;
    }

    /* 16. Invitation Box Mobile */
    .invitation-box {
        padding: var(--spacing-sm); /* reduced padding */
    }

    .invitation-box p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* 17. Footer Mobile */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-xl);
        width: 100%;
    }
    
    .footer-brand h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-links a {
        margin: 5px var(--spacing-xs);
    }
    
    /* 18. Fix Horizontal Overflow */
    .container, section {
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box;
    }
    
    footer {
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .treatments-scroll {
        width: 100%;
        margin-right: 0;
        padding-right: 0;
    }
}
