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

    /* Font families — loaded via Google Fonts CDN in layout.tsx */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-luxury: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Aliases for inline style references in HTML */
    --font-primary: var(--font-luxury);
    --text-muted: var(--color-text-secondary);

    --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-slow: 1.2s 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);
    text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 4px 40px rgba(0,0,0,0.7);
}

.subtext {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #e8e8e8;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
    text-shadow: 0 1px 12px rgba(0,0,0,0.95), 0 2px 24px rgba(0,0,0,0.8);
}

.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;
    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;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.brand-logo img {
    max-height: 70px;
    width: auto;
}

.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%;
    background-size: cover;
    background-position: center;
    background-image: url('/images/getinhero.webp');
    z-index: -2;
    transform: translateZ(0);
    will-change: transform;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.35) 35%,
        rgba(0, 0, 0, 0.1) 55%,
        transparent 70%
    );
    z-index: -1;
}

.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: auto;
    height: auto;
    background: radial-gradient(circle at 30% 30%, #25d366, #128c7e 80%);
    color: white;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    gap: 2px;
    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;
    text-decoration: none;
}

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

.wa-btn-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

@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;
    height: 600px;
}

.about-image img, .about-image video {
    width: 100%;
    height: 100%;
    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);
    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);
    height: 600px;
}

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

.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;
    scrollbar-width: none;
}

.treatments-scroll::-webkit-scrollbar {
    display: none;
}

.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);
}

.treatment-card-mobile-info { display: none; }

.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%;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.panoramic-view:hover img {
    transform: scale(1.05);
}

.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;
}

.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;
}

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

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 0, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.5);
    transition: border-color var(--transition-fast);
}

.faq-item.open {
    border-color: rgba(197, 160, 89, 0.4);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

.faq-question-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-gold-light);
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.faq-item.open .faq-icon {
    background: rgba(197, 160, 89, 0.15);
    border-color: var(--color-gold);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.faq-answer-inner {
    padding: 0 var(--spacing-sm) 1.5rem;
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* ========== 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;
    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;
}

/* ========== 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 ========== */
.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);
    transition: width 0.05s linear;
}

/* 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 — initial clip state restored for animation */
.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;
}

/* Executive Suite */
.executive-suite {
    background-color: var(--color-bg-dark);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

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

@media (max-width: 800px) {
    .grid-2 { grid-template-columns: 1fr; }

    .about-image { height: 400px; }

    :root {
        --spacing-xl: 4rem;
        --spacing-lg: 3rem;
        --spacing-md: 2rem;
    }

    body { padding-bottom: 70px; }

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

    .nav-links { display: none !important; }

    .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;
        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);
        overflow: visible !important;
    }

    .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); }

    .mobile-nav-central {
        position: relative;
        flex: 1.5;
        display: flex;
        justify-content: center;
        z-index: 10005;
        overflow: visible;
    }

    .mobile-nav-main-btn {
        position: absolute;
        bottom: -10px;
        width: 70px;
        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);
        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; }

    .mobile-nav-main-btn.active .fa-xmark { display: block; }

    .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; }

    .journey-grid { grid-template-columns: 1fr; gap: var(--spacing-sm); }
    .journey-card { height: 350px; margin-bottom: var(--spacing-sm); }
    .journey-overlay { padding: var(--spacing-sm); }
    .journey-overlay h3 { font-size: 1.4rem; margin-bottom: var(--spacing-xs); }
    .journey-overlay p { font-size: 0.9rem; line-height: 1.5; }

    /* Treatments — vertical list on mobile */
    .treatments-scroll { overflow-x: visible; padding: 0 var(--spacing-xs); }
    .treatments-track {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 0;
        scroll-snap-type: none;
    }
    .treatment-card {
        width: 100%;
        height: 72px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 14px rgba(0,0,0,0.4);
        min-width: unset;
        margin-right: 0;
        scroll-snap-align: unset;
        display: flex;
        flex-direction: row;
        position: relative;
        background: linear-gradient(135deg, rgba(10,10,10,0.97), rgba(28,1,1,0.92));
    }
    .treatment-card:last-child { margin-right: 0; }
    .treatment-card-image {
        width: 72px;
        height: 72px;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }
    .treatment-card-overlay { display: none !important; }
    .treatment-card-mobile-info {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex: 1;
        padding: 0 14px;
        gap: 8px;
    }
    .treatment-card-mobile-name {
        font-family: var(--font-heading);
        font-size: 1rem;
        font-weight: 400;
        color: var(--color-gold-light);
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .treatment-card-mobile-info .treatment-price {
        font-size: 0.9rem;
        opacity: 1 !important;
        white-space: nowrap;
        color: var(--color-gold);
        flex-shrink: 0;
    }
    .scroll-dots { display: none; }
    .scroll-hint { display: none; }

    .panoramic-view img { height: 250px; object-fit: cover; }
    .masonry-grid { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-xs); margin-top: var(--spacing-md); }
    .masonry-item img { height: 180px; }
    .masonry-item:nth-child(2) img { height: 220px; }

    .whispers-container { gap: var(--spacing-sm); }
    .whisper-quote { padding: var(--spacing-sm); }
    .quote-text { font-size: 1.2rem; line-height: 1.4; margin-bottom: var(--spacing-xs); }
    .quote-author { font-size: 0.9rem; }

    .map-wrapper iframe { height: 300px; }

    .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; }

    .btn-primary { padding: 1rem 2rem; font-size: 0.9rem; min-height: 44px; width: 100%; max-width: 300px; margin: 0 auto; display: block; text-align: center; }
    .btn-primary.large-btn { padding: 1.2rem 2.5rem; font-size: 1rem; }

    .navbar { padding: var(--spacing-xs) 0; }
    .nav-container { padding: 0 var(--spacing-xs); justify-content: center; }
    .brand-logo img { max-height: 50px; }

    .hero-bg { height: 120%; background-position: center top; width: 100vw; background-image: url('/images/gethero-mobile.webp'); }
    .hero { min-height: 85vh; 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); 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; }

    .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); }

    .desire-image { height: 300px; }
    .experience { min-height: 60vh; width: 100%; }
    .large-text { font-size: 1.1rem; line-height: 1.5; padding: 0 20px; }

    .invitation-box { padding: var(--spacing-sm); }
    .invitation-box p { font-size: 0.9rem; line-height: 1.5; }

    .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); }

    .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; }

    .faq-question { padding: 1.2rem var(--spacing-sm); }
    .faq-question-text { font-size: 0.95rem; }
    .faq-answer-inner { padding: 0 var(--spacing-sm) 1.2rem; font-size: 0.9rem; }

}

/* ========== DESKTOP STICKY ACTIONS ========== */
.desktop-sticky-actions {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

@media (max-width: 900px) {
    .desktop-sticky-actions { display: none; }
}

.sticky-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 0.72rem;
    font-family: var(--font-body);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateX(calc(100% - 50px));
    border-radius: 4px 0 0 4px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.3);
}

.sticky-action-btn:hover {
    transform: translateX(0);
    box-shadow: -4px 0 20px rgba(0,0,0,0.5);
}

.sticky-action-btn i { font-size: 1rem; flex-shrink: 0; min-width: 20px; text-align: center; }

.sticky-call    { background: linear-gradient(135deg, var(--color-red), #a00000); color: #fff; }
.sticky-whatsapp { background: linear-gradient(135deg, #25D366, #1da851); color: #fff; }
.sticky-directions { background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark)); color: var(--color-bg-dark); }

/* ========== TRUST SECTION ========== */
.trust-section {
    background: var(--color-bg-light);
    border-top: 1px solid rgba(197,160,89,0.12);
    border-bottom: 1px solid rgba(197,160,89,0.12);
}

.trust-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(197,160,89,0.15);
    border-radius: 4px;
    background: rgba(0,0,0,0.25);
}

.trust-icon { color: var(--color-gold); font-size: 1.1rem; flex-shrink: 0; }
.trust-check { color: var(--color-gold); font-size: 0.7rem; margin-right: 5px; }

.trust-text {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--color-text-primary);
    letter-spacing: 0.02em;
}

/* ========== LOCATION SECTION ADDITIONS ========== */
.location-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.location-ctas .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.location-hours {
    text-align: center;
    margin-top: 1.2rem;
    font-family: var(--font-luxury);
    font-size: 1rem;
    color: var(--color-gold);
    letter-spacing: 0.06em;
}

/* ========== MOBILE NAV DIRECTIONS BUTTON ========== */
.mobile-menu-btn.directions {
    background: linear-gradient(135deg, #4285F4, #1a6cda);
    color: #fff;
}

/* ========== LOCAL SEO PAGES ========== */
.local-page {
    background: var(--color-bg-dark);
    color: var(--color-text-primary);
    min-height: 100vh;
}

.local-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--color-burgundy) 0%, var(--color-bg-dark) 100%);
    text-align: center;
    border-bottom: 1px solid rgba(197,160,89,0.15);
}

.local-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.local-hero .lead {
    font-family: var(--font-luxury);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--color-text-secondary);
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.local-cta-bar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.local-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.local-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(197,160,89,0.08);
}

.local-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--color-text-primary);
    margin-bottom: 1.2rem;
}

.local-section h3 {
    font-family: var(--font-luxury);
    font-size: 1.1rem;
    color: var(--color-gold-light);
    margin-bottom: 0.5rem;
}

.local-section p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.local-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.local-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    padding: 0.9rem 1rem;
    background: rgba(197,160,89,0.04);
    border: 1px solid rgba(197,160,89,0.1);
    border-radius: 4px;
}

.local-benefits li i { color: var(--color-gold); margin-top: 2px; flex-shrink: 0; }

.local-faq { margin-top: 1.5rem; }

.local-faq-item {
    border-bottom: 1px solid rgba(197,160,89,0.12);
    padding: 1.3rem 0;
}

.local-faq-item h3 { margin-bottom: 0.6rem; }
.local-faq-item p { margin: 0; font-size: 0.95rem; }

.local-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.local-service-card {
    padding: 1.4rem;
    background: rgba(197,160,89,0.04);
    border: 1px solid rgba(197,160,89,0.15);
    border-radius: 4px;
    text-align: center;
}

.local-service-card .service-name {
    font-family: var(--font-luxury);
    font-size: 1.05rem;
    color: var(--color-gold);
    margin-bottom: 0.4rem;
}

.local-service-card .service-price {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.internal-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--color-gold);
    text-decoration: none;
    border: 1px solid rgba(197,160,89,0.3);
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.internal-link:hover {
    background: rgba(197,160,89,0.08);
    border-color: var(--color-gold);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--color-red), #a00000);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: opacity 0.2s ease;
}

.btn-call:hover { opacity: 0.85; }

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--color-gold);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid var(--color-gold);
    transition: all 0.2s ease;
}

.btn-directions:hover { background: rgba(197,160,89,0.08); }

/* ========== 404 PAGE ========== */
.not-found-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-bg-dark);
    padding: 2rem;
}

.not-found-inner { max-width: 500px; }

.not-found-code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 10rem);
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.not-found-page h1 {
    font-family: var(--font-luxury);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.not-found-page p {
    font-family: var(--font-body);
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ========== RESPONSIVE OVERRIDES FOR NEW COMPONENTS ========== */
/* Must be at end of file so these win over base styles above */

@media (max-width: 768px) {
    /* Trust section — single column on mobile */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Location CTA buttons — stack vertically */
    .location-ctas {
        flex-direction: column;
        align-items: center;
    }
    .location-ctas .btn-primary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }

    /* Local SEO pages */
    .local-hero { padding: 100px 0 60px; }

    .local-cta-bar {
        flex-direction: column;
        align-items: center;
    }
    .local-cta-bar a {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .local-benefits { grid-template-columns: 1fr; }

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

    .local-section h2 { font-size: 1.4rem; }

    .local-section p { font-size: 0.93rem; }

    .btn-call,
    .btn-directions {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .trust-item { flex-direction: row; }
    .local-services-grid { grid-template-columns: 1fr; }
}

/* ========== GOOGLE REVIEW BADGE ========== */
.google-review-badge {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 8px 14px 8px 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 1px 4px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}
.google-review-badge:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
    transform: translateY(-1px);
}
.google-review-badge__glogo {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.google-review-badge__content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.google-review-badge__top {
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.google-review-badge__wordmark {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: #5f6368;
    letter-spacing: 0.01em;
}
.google-review-badge__score {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #202124;
    line-height: 1;
}
.google-review-badge__stars {
    display: flex;
    gap: 1px;
}
.google-review-badge__stars svg {
    width: 13px;
    height: 13px;
    fill: #FBBC05;
}

/* Mobile — sits just below the header, right side */
@media (max-width: 900px) {
    .google-review-badge {
        top: 80px;
        right: 14px;
        left: auto;
        bottom: auto;
        width: auto;
        padding: 5px 10px 5px 7px;
        gap: 6px;
        border-radius: 10px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.15);
    }
    .google-review-badge__glogo { width: 20px; height: 20px; }
    .google-review-badge__score { font-size: 0.78rem; }
    .google-review-badge__wordmark { font-size: 0.62rem; }
    .google-review-badge__stars svg { width: 10px; height: 10px; }
}

/* ========== HERO SLOTS NUDGE ========== */
.hero-slots-nudge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: #4ade80;
    letter-spacing: 0.03em;
    margin: 0.5rem 0 1.25rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 20px;
    padding: 5px 14px;
}

.hero-slots-nudge i {
    font-size: 0.55rem;
    animation: pulse-dot 2s infinite;
}

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

/* ========== BOOKING STRIP (post-hero one-tap) ========== */
.booking-strip {
    background: #0d1a12;
    padding: 18px 16px;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(37, 211, 102, 0.15);
    border-bottom: 1px solid rgba(37, 211, 102, 0.1);
}

.booking-strip-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #25D366, #1da851);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    width: 100%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-strip-btn i {
    font-size: 1.5rem;
    display: inline;
    margin-right: 10px;
}

.booking-strip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

.booking-strip-sub {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 0.02em;
    display: block;
    margin-top: 2px;
}

@media (max-width: 800px) {
    .booking-strip {
        padding: 14px 12px;
    }
    .booking-strip-btn {
        padding: 15px 20px;
        font-size: 1rem;
        border-radius: 12px;
    }
}

/* ========== STICKY BOOKING BAR (mobile-only, above bottom nav) ========== */
.sticky-booking-bar {
    display: none;
}

@media (max-width: 800px) {
    .sticky-booking-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: fixed;
        bottom: 88px;
        left: 0;
        right: 0;
        z-index: 998;
        background: linear-gradient(135deg, #25D366, #1da851);
        color: white;
        font-family: var(--font-body);
        font-size: 0.95rem;
        font-weight: 600;
        padding: 11px 16px;
        text-decoration: none;
        box-shadow: 0 -4px 20px rgba(37, 211, 102, 0.35);
        letter-spacing: 0.01em;
    }

    .sticky-booking-bar i {
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .sticky-bar-text {
        flex-shrink: 0;
    }

    .sticky-bar-nudge {
        background: rgba(255, 255, 255, 0.2);
        font-size: 0.72rem;
        font-weight: 500;
        padding: 2px 9px;
        border-radius: 20px;
        white-space: nowrap;
        flex-shrink: 0;
    }
}
