/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --bg-dark: #120e0c;
    /* Deep espresso dark */
    --bg-dark-alternate: #1a1411;
    /* Warm dark walnut brown */
    --bg-card: rgba(28, 21, 18, 0.7);
    /* Rich bronze card */
    --border-color: rgba(212, 175, 55, 0.15);
    /* Soft gold-brown border */
    --border-hover: rgba(212, 175, 55, 0.5);
    /* Glowing golden border */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    --gold: #d4af37;
    --gold-light: #f5e2b3;

    /* Specific light-theme variables for brown, golden & white layout */
    --bg-light: #fbfaf8;
    /* Crisp linen white/cream */
    --bg-light-alt: #f4f1ec;
    /* Warm light beige */
    --brown-text: #221a16;
    /* Deep brown for text */
    --brown-text-secondary: #5c473c;
    /* Mid warm brown */
    --border-light: rgba(34, 26, 22, 0.08);

    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

html {
    scroll-behavior: auto;
    background-color: var(--bg-dark);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Lenis Smooth Scroll resets */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: clip;
    /* clip prevents scroll break for position: sticky elements */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbars for Chrome, Safari, Opera */
::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #080808;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), visibility 1s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    width: 90%;
    max-width: 450px;
}

.brand-title-large {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.mobile-br {
    display: none;
}

.brand-subtitle-large {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 3rem;
}

.progress-bar-container {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

#progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    transition: width 0.1s ease-out;
}

#loading-percentage {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.8) 0%, rgba(5, 5, 5, 0.4) 100%);
    transition: var(--transition-smooth);
}

#main-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            transparent,
            rgba(212, 175, 55, 0.4) 15%,
            var(--gold) 35%,
            var(--gold-light) 50%,
            var(--gold) 65%,
            rgba(212, 175, 55, 0.4) 85%,
            transparent);
    background-size: 200% 100%;
    box-shadow: 0 2px 16px rgba(212, 175, 55, 0.7);
    animation: gold-trail 3s linear infinite;
}

@keyframes gold-trail {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

#main-header.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

#main-header.scrolled {
    background-color: rgba(18, 14, 12, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    background: linear-gradient(135deg, #ffffff 10%, var(--gold-light) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.header-logo-container {
    width: 270px;
    height: 115px;
}

.navbar-logo {
    height: 180px;
    width: 270px;
    object-fit: contain;
    object-position: left center;
    display: block;
    position: absolute;
    top: -15px;
    left: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.desktop-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-decoration: none;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

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

.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--gold);
    background-color: transparent;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}


/* ==========================================================================
   HERO PARALLAX TRACK & CANVAS
   ========================================================================== */
#hero-parallax-track {
    position: relative;
    height: 980vh;
    /* Extended track height to slow down the 3D walkthrough scroll speed */
    width: 100%;
    z-index: 1;
}

.hero-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-sticky-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #080808 url('images/also_see_in_this_image_and_enh (1)_000.jpg') no-repeat center center;
    background-size: cover;
    z-index: 0;
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.hero-sticky-wrapper.canvas-loaded::before {
    opacity: 0;
}

#parallax-canvas {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
}

.canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 15%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

/* Hero Floating Text Boxes */
.hero-text-overlay {
    position: absolute;
    top: 52%;
    left: 8%;
    transform: translateY(-50%);
    width: 600px;
    background-color: transparent;
    border: none;
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    /* Transform and opacity updated by JS, no transitions on animated properties to prevent frame lag */
}

/* Right-aligned text card */
.hero-text-overlay.align-right {
    left: auto;
    right: 8%;
    text-align: right;
}

.section-tag {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.section-description {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.7);
    max-width: 520px;
}

.hero-text-overlay.align-right .section-description {
    margin-left: auto;
}

.content-meta {
    display: none;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.meta-label {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.meta-val {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--gold-light);
}



/* Climax Cinematic Transition */
#hero-climax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    overflow: hidden;
}

.climax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    will-change: opacity;
}

.climax-content {
    position: relative;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    padding: 0 10%;
    text-align: center;
}

.climax-text-left,
.climax-text-right {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
}

.climax-text-left {
    font-size: 3.5rem;
    color: var(--text-primary);
    transform: translate3d(-100px, 0, 0);
}

.climax-text-right {
    font-size: 2.2rem;
    color: var(--gold);
    transform: translate3d(100px, 0, 0);
}

/* Medium & Mobile Screens */
@media (max-width: 768px) {
    .climax-text-left {
        font-size: 2rem;
    }

    .climax-text-right {
        font-size: 1.3rem;
    }

    .climax-content {
        gap: 1rem;
    }
}

/* ==========================================================================
   MAIN CONTENT FLOW (NATURAL SCROLL OVER THE HERO)
   ========================================================================== */
#main-content {
    position: relative;
    z-index: 10;
    background-color: var(--bg-light);
    color: var(--brown-text);
    box-shadow: 0 -40px 100px rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-light);
}

.content-section {
    padding: 60px 8%;
    max-width: 1400px;
    margin: 0 auto;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.content-section.alternate-bg {
    background-color: var(--bg-dark-alternate);
    color: var(--text-primary);
    max-width: 100%;
    padding-left: calc((100vw - 1400px) / 2 + 8%);
    padding-right: calc((100vw - 1400px) / 2 + 8%);
}

.content-section.alternate-bg .section-heading-main {
    color: var(--text-primary);
}

.content-section.alternate-bg .section-tag {
    color: var(--gold);
}

/* Prevent layout breaking for extremely wide desktop viewports */
@media (min-width: 1500px) {
    .content-section.alternate-bg {
        padding-left: 8%;
        padding-right: 8%;
        max-width: 1400px;
        margin: 0 auto;
        background-color: var(--bg-dark-alternate);
        border-radius: 20px;
        margin-bottom: 2rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading-main {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    color: var(--brown-text);
}

.heading-accent {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    margin: 1.5rem auto 0;
}

/* ==========================================================================
   SPECIFICATIONS GRID
   ========================================================================== */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.spec-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: var(--transition-smooth);
}

.spec-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08);
}

.spec-icon {
    color: var(--gold);
}

.spec-icon svg {
    stroke-width: 1.2;
}

.spec-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--brown-text);
}

.spec-desc {
    color: var(--brown-text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ==========================================================================
   GALLERY COLLAGE (REUSING FRAMES)
   ========================================================================== */
.gallery-collage {
    display: flex;
    gap: 2rem;
    height: 550px;
}

.collage-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.collage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.1) 50%, rgba(5, 5, 5, 0.9) 100%);
    z-index: 2;
    transition: var(--transition-smooth);
}

.collage-item.large {
    flex: 1.4;
    background-image: url('images/also_see_in_this_image_and_enh (1)_020.jpg');
    background-size: cover;
    background-position: center;
}

.collage-item-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.collage-item.small-1 {
    flex: 1;
    background-image: url('images/also_see_in_this_image_and_enh (1)_050.jpg');
    background-size: cover;
    background-position: center;
}

.collage-item.small-2 {
    flex: 1;
    background-image: url('images/also_see_in_this_image_and_enh (1)_080.jpg');
    background-size: cover;
    background-position: center;
}

.collage-info {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    z-index: 3;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.collage-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.collage-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Hover effects */
.collage-item:hover::before {
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.2) 30%, rgba(5, 5, 5, 0.8) 100%);
}

.collage-item:hover .collage-info {
    transform: translateY(0);
}

/* ==========================================================================
   INQUIRY SECTION
   ========================================================================== */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    padding: 4.5rem;
    border: 1px solid var(--border-color);
}

.glass-card {
    background-color: rgba(12, 12, 12, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 3px solid var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

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

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    margin-top: 2.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

#contact-section .section-title,
.modal-content .section-title {
    color: var(--brown-text);
    text-shadow: none;
}

#contact-section .section-description,
.modal-content .section-description {
    color: var(--brown-text-secondary);
    text-shadow: none;
}

#contact-section label,
#booking-modal label {
    color: var(--brown-text-secondary);
    font-weight: 600;
}

#contact-section .contact-card.glass-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--gold);
    box-shadow: 0 30px 60px rgba(34, 26, 22, 0.06);
}

input,
textarea {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.9rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    outline: none;
}

#contact-section input,
#contact-section textarea,
.modal-content input,
.modal-content textarea {
    background-color: #ffffff;
    border: 1px solid rgba(34, 26, 22, 0.12);
    color: var(--brown-text);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.15);
}

#contact-section input::placeholder,
#contact-section textarea::placeholder,
.modal-content input::placeholder,
.modal-content textarea::placeholder {
    color: rgba(34, 26, 22, 0.4);
}

input:focus,
textarea:focus {
    border-color: var(--border-hover);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.05);
}

#contact-section input:focus,
#contact-section textarea:focus,
.modal-content input:focus,
.modal-content textarea:focus {
    border-color: var(--gold);
    background-color: #ffffff;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.1);
}

.btn-submit {
    padding: 1.2rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #ffffff;
    background-color: var(--gold);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background-color: var(--brown-text);
    box-shadow: 0 0 25px rgba(34, 26, 22, 0.15);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
#main-footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 8% 40px;
    background-color: #030303;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}



/* ==========================================================================
   RESPONSIVE DESIGN (DESKTOP FIRST)
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-text-overlay {
        width: 500px;
    }

    .footer-grid {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    #main-header {
        height: 80px;
    }

    .desktop-nav {
        gap: 1.5rem;
    }

    .header-logo-container {
        width: 220px;
        height: 95px;
    }

    .navbar-logo {
        height: 145px;
        width: 220px;
        top: -10px;
    }

    .hero-text-overlay {
        width: 450px;
        left: 5%;
    }

    .hero-text-overlay.align-right {
        right: 5%;
    }

    .gallery-collage {
        flex-direction: column;
        height: auto;
    }

    .collage-item.large {
        height: 350px;
    }

    .collage-item-group {
        height: 450px;
    }

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

@media (max-width: 768px) {
    #main-header {
        padding: 0 1.5rem;
    }

    .desktop-nav {
        display: none;
    }

    .hero-text-overlay {
        width: 90%;
        left: 5% !important;
        right: 5% !important;
        top: 55%;
        text-align: left !important;
    }

    .hero-text-overlay.align-right .section-description {
        margin-left: 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .contact-card {
        padding: 2.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .header-logo-container {
        width: 230px;
        height: 95px;
    }

    .navbar-logo {
        height: 145px;
        width: 230px;
        top: -8px;
        left: -15px;
    }

    .footer-grid {
        text-align: center;
        justify-items: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .developer-info {
        justify-content: center;
    }
    
    .footer-socials {
        justify-content: center;
    }

    .package-card {
        padding: 2.5rem 1.5rem;
    }

    .package-card::after {
        border-radius: 16px;
    }
}

/* ==========================================================================
   BOOKING MODAL / POPUP
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
}

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

.modal-content {
    width: 90%;
    max-width: 600px;
    padding: 3.5rem;
    position: relative;
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--gold);
    box-shadow: 0 45px 90px rgba(34, 26, 22, 0.15);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--brown-text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 2.5rem 1.5rem;
    }
}

/* ==========================================================================
   ADMIN PANEL STYLES
   ========================================================================== */
.admin-panel-section {
    background-color: var(--bg-light-alt);
    border-bottom: 1px solid var(--border-light);
    padding: 4rem 8%;
}

.admin-toggle-container {
    text-align: center;
    margin-bottom: 2rem;
}

.btn-admin-toggle {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.8rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-admin-toggle:hover {
    background-color: var(--gold);
    color: #fff;
}

.admin-dashboard {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(34, 26, 22, 0.08);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

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

.admin-block {
    border: 1px solid var(--border-light);
    padding: 2rem;
    background-color: var(--bg-light);
}

.admin-block h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    color: var(--brown-text);
    border-bottom: 1px solid rgba(34, 26, 22, 0.1);
    padding-bottom: 0.5rem;
}

.admin-form-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-form-group label {
    color: var(--brown-text-secondary);
    font-weight: 600;
}

.admin-list {
    max-height: 250px;
    overflow-y: auto;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid rgba(34, 26, 22, 0.1);
    padding-top: 1rem;
}

.admin-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem;
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    font-size: 0.85rem;
}

.admin-list-item img {
    width: 50px;
    height: 40px;
    object-fit: cover;
}

.btn-admin-danger {
    background-color: #c94a4a;
    color: #fff;
    border: none;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-admin-danger:hover {
    background-color: #a83b3b;
}

.photo-featured-selector {
    max-height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.featured-select-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background-color: #ffffff;
    border: 1px solid var(--border-light);
}

/* ==========================================================================
   YOUTUBE VIDEOS SECTION
   ========================================================================== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.video-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--brown-text);
    margin-top: 0.5rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(34, 26, 22, 0.05);
}

.testimonials-track::-webkit-scrollbar {
    height: 6px;
}

.testimonials-track::-webkit-scrollbar-thumb {
    background-color: var(--gold);
    border-radius: 3px;
}

.testimonial-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    padding: 2.5rem;
    border-top: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(34, 26, 22, 0.03);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08);
}

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--brown-text-secondary);
    font-style: italic;
}

.author {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--brown-text);
    margin-top: auto;
}

/* ==========================================================================
   PACKAGES SECTION
   ========================================================================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.package-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.12);
}

.package-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--gold);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 5px 30px;
    transform: rotate(45deg);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(34, 26, 22, 0.08);
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--brown-text);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    font-family: var(--font-heading);
}

.package-price span {
    font-size: 0.9rem;
    color: var(--brown-text-secondary);
    font-family: var(--font-body);
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0;
    padding: 0;
}

.package-features li {
    font-size: 0.9rem;
    color: var(--brown-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.package-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

/* ==========================================================================
   CONTACT TWO COLUMN LAYOUT
   ========================================================================== */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-media-box {
    background-color: var(--bg-dark-alternate);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-image-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.contact-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-detail-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
}

.contact-detail-row a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-detail-row a:hover {
    color: var(--gold);
}

.contact-detail-row svg {
    color: var(--gold);
}

@media (max-width: 992px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==========================================================================
   MAPS SECTION
   ========================================================================== */
.map-section {
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 0 4%;
}

.map-wrapper {
    border: 2px solid var(--gold);
    border-radius: 16px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ==========================================================================
   MOBILE HERO VIDEO OVERRIDES (Walkthrough video is now the hero)
   ========================================================================== */
#hero-video-mobile {
    display: none !important;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #080808;
}

.mobile-hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.mobile-hero-video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.mobile-hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

#hero-video-mobile .canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 820px) {
    #hero-parallax-track {
        display: none !important;
    }

    #hero-video-mobile {
        display: block !important;
    }

    #video-section {
        display: none !important;
    }

    /* Adjust main content flow on mobile since walkthrough track is removed */
    #main-content {
        margin-top: 0 !important;
        position: relative;
        z-index: 10;
        background-color: var(--bg-light);
    }

    /* Force mobile header to stay solid */
    #main-header {
        background-color: rgba(18, 14, 12, 0.98) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
}

/* ==========================================================================
   LANDING PAGE LUXURY GALLERY GRID & GLOWING CARDS (ALWAYS RUNNING GOLD)
   ========================================================================== */
.luxury-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.luxury-gallery-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
    cursor: pointer;
    background-color: #000;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-gallery-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.4) 15%, 
        var(--gold) 35%, 
        var(--gold-light) 50%, 
        var(--gold) 65%, 
        rgba(212, 175, 55, 0.4) 85%, 
        transparent
    );
    background-size: 200% 100%;
    animation: gold-trail 3s linear infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    -webkit-mask-composite: destination-out;
    padding: 2px;
    opacity: 0.9;
    pointer-events: none;
    z-index: 5;
}

.luxury-gallery-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: scale(0.95);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    pointer-events: none;
    z-index: 3;
}

.luxury-gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.35), 0 0 15px rgba(212, 175, 55, 0.25);
}

.luxury-gallery-card:hover::before {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(212, 175, 55, 0.4);
}

.luxury-gallery-card:hover img {
    transform: scale(1.08);
}

/* Golden Light Section Divider */
.section-divider {
    height: 1px;
    width: 60%;
    max-width: 1000px;
    margin: 2.5rem auto;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.2) 15%, 
        var(--gold) 50%, 
        rgba(212, 175, 55, 0.2) 85%, 
        transparent
    );
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    opacity: 0.7;
}

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

@media (max-width: 768px) {
    .luxury-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Border Radius (Curvy Corners) */
.luxury-gallery-card, 
.luxury-gallery-card .card-img-wrapper, 
.luxury-gallery-card img,
.package-card, 
.testimonial-card, 
.spec-card, 
.video-card, 
.contact-card, 
.modal-content, 
.admin-block, 
.admin-dashboard {
    border-radius: 16px !important;
}

/* Package Card Running Glowing border (Always Visible) */
.package-card {
    border: none !important;
    position: relative;
    overflow: hidden;
}

.package-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.4) 15%, 
        var(--gold) 35%, 
        var(--gold-light) 50%, 
        var(--gold) 65%, 
        rgba(212, 175, 55, 0.4) 85%, 
        transparent
    );
    background-size: 200% 100%;
    animation: gold-trail 3s linear infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    -webkit-mask-composite: destination-out;
    padding: 2px;
    opacity: 0.7;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 5;
}

.package-card.featured::after {
    padding: 3px;
    opacity: 1;
}

.package-card:hover::after {
    opacity: 1;
}

/* Make all buttons on the website curvy */
button, 
.btn-primary, 
.btn-submit, 
.btn-admin-toggle, 
.btn-admin-danger,
input[type="submit"],
input[type="button"],
.btn-admin-toggle {
    border-radius: 30px !important;
}

/* Force Modal Close Button to remain circular */
.modal-close-btn {
    border-radius: 50% !important;
}

/* Subtle Dark Walnut Wood Texture background for organic warmth */
#testimonials-section, 
#contact-section,
#main-footer {
    background-image: linear-gradient(rgba(18, 14, 12, 0.94), rgba(18, 14, 12, 0.94)), url('images/dark_walnut_texture.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}


/* Scroll Reveal Effects */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scatter Reveal Animation for 3-Column Grids */
@media (min-width: 769px) {
    .reveal.luxury-gallery-grid {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .luxury-gallery-grid .luxury-gallery-card {
        opacity: 0;
        transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform, opacity; /* Force GPU layer rendering for fluid animation */
    }
    
    /* Left card starts shifted to the right */
    .reveal.luxury-gallery-grid:not(.active) .luxury-gallery-card:nth-child(1) {
        transform: translateX(calc(100% + 2rem)) translateY(40px);
        opacity: 0;
    }
    /* Middle card starts in center, rises */
    .reveal.luxury-gallery-grid:not(.active) .luxury-gallery-card:nth-child(2) {
        transform: translateY(40px);
        opacity: 0;
    }
    /* Right card starts shifted to the left */
    .reveal.luxury-gallery-grid:not(.active) .luxury-gallery-card:nth-child(3) {
        transform: translateX(calc(-100% - 2rem)) translateY(40px);
        opacity: 0;
    }
    
    .reveal.luxury-gallery-grid.active .luxury-gallery-card {
        transform: translateX(0) translateY(0) !important;
        opacity: 1 !important;
    }
}

/* Cinematic Wide Scrolling Showcase Slider */
.cinematic-showcase-container {
    margin-top: 3rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--gold);
    position: relative;
    background-color: #000;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    
    /* Hardware acceleration on parent to prevent repaint/jank from border-radius + overflow: hidden clipping child animations */
    transform: translate3d(0, 0, 0);
    will-change: transform;
    isolation: isolate;
    backface-visibility: hidden;
    perspective: 1000px;
}

.cinematic-scrolling-track {
    display: flex;
    width: max-content;
    animation: scroll-cinematic 45s linear infinite;
    
    /* Force GPU layer promotion for silky smooth 60fps animation */
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.cinematic-slide-card {
    width: 55vw;
    height: 500px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    border-right: 2px solid var(--gold);
    
    /* Optimize image card performance */
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
}

.cinematic-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    backface-visibility: hidden;
    will-change: transform;
}

@keyframes scroll-cinematic {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 768px) {
    .cinematic-slide-card {
        width: 85vw !important;
        height: 250px !important;
    }
    .cinematic-scrolling-track {
        animation-duration: 20s !important;
    }
}

/* Infinite Scrolling Testimonials Ticker */
.testimonials-track {
    display: flex;
    gap: 2rem;
    width: max-content !important;
    overflow: visible !important;
    animation: scroll-left-to-right 35s linear infinite !important;
    scrollbar-width: none !important;
    
    /* Hardware acceleration to make testimonials smooth */
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.testimonials-track::-webkit-scrollbar {
    display: none !important;
}

@keyframes scroll-left-to-right {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.testimonial-card {
    flex: 0 0 calc(50vw - 3.5rem) !important;
    background-color: rgba(18, 14, 12, 0.4) !important;
    border: 1px solid var(--gold) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08) !important;
    padding: 2.5rem !important;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #ffffff !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    scroll-snap-align: none !important;
}

.testimonial-card .quote {
    color: #ffffff !important;
    font-size: 1.25rem !important;
    line-height: 1.7;
    font-weight: 300;
}

.testimonial-card .author {
    color: var(--gold) !important;
    font-size: 0.95rem !important;
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100vw - 3rem) !important;
    }
}

/* Packages Floating Golden Bubbles Animation */
#packages-section {
    position: relative;
    overflow: hidden;
}

#packages-section .section-header,
#packages-section .packages-grid {
    position: relative;
    z-index: 2;
}

.gold-bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.gold-bubble {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.5) 0%, rgba(212, 175, 55, 0.15) 60%, rgba(212, 175, 55, 0.02) 100%);
    border: 2px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    pointer-events: none;
    animation: float-up-bubble linear infinite;
    contain: strict;
}

@keyframes float-up-bubble {
    0% {
        transform: translateY(0) scale(0.8) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.85;
    }
    90% {
        opacity: 0.85;
    }
    100% {
        transform: translateY(-130vh) scale(1.25) translateX(45px);
        opacity: 0;
    }
}

/* Full Width Testimonials Section */
#testimonials-section {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden !important;
}

#testimonials-section .section-header {
    padding-left: 8% !important;
    padding-right: 8% !important;
}

/* Scatter Reveal Animation for 3-Column Packages Grid */
@media (min-width: 769px) {
    .reveal.packages-grid {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .packages-grid .package-card {
        opacity: 0;
        transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform, opacity; /* Force GPU layer rendering for fluid animation */
    }
    
    /* Left card starts shifted to the right */
    .reveal.packages-grid:not(.active) .package-card:nth-child(1) {
        transform: translateX(calc(100% + 2.5rem)) translateY(40px);
        opacity: 0;
    }
    /* Middle card starts in center, rises */
    .reveal.packages-grid:not(.active) .package-card:nth-child(2) {
        transform: translateY(40px);
        opacity: 0;
    }
    /* Right card starts shifted to the left */
    .reveal.packages-grid:not(.active) .package-card:nth-child(3) {
        transform: translateX(calc(-100% - 2.5rem)) translateY(40px);
        opacity: 0;
    }
    
    .reveal.packages-grid.active .package-card {
        transform: translateX(0) translateY(0) !important;
        opacity: 1 !important;
    }
}

/* Footer Social Icon Hover Effects */
.social-icon-link:hover {
    color: var(--text-primary) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

/* ==========================================================================
   ABOUT US EXPANDED PREMIUM STYLING
   ========================================================================== */
.about-detailed-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (max-width: 991px) {
    .about-detailed-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-subtitle {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--brown-text);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.about-intro-text p {
    color: var(--brown-text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-profile-card {
    position: relative;
    border: 1px solid var(--border-light);
    padding: 2rem;
    background-color: #ffffff;
    box-shadow: 0 20px 50px rgba(34, 26, 22, 0.04);
    border-top: 4px solid var(--gold);
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(212, 175, 55, 0.15);
    border-top-color: var(--brown-text);
}

.about-profile-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.about-profile-card:hover img {
    transform: scale(1.02);
}

.about-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background-color: var(--brown-text);
    color: #ffffff;
    border: 1px solid var(--brown-text);
    padding: 1.1rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    max-width: 320px;
}

.about-download-btn:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

/* Vision, Mission, Specialization & Why Choose Us Quad Grid */
.about-quad-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (max-width: 1200px) {
    .about-quad-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 680px) {
    .about-quad-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-info-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.2rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.about-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--gold);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(34, 26, 22, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
}

.about-info-card:hover::before {
    width: 8px;
}

.card-icon-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.card-header-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.about-info-card:hover .card-header-icon {
    transform: scale(1.2) rotate(8deg);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.about-info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--brown-text);
    letter-spacing: 0.08em;
    font-weight: 500;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-info-card .card-text {
    color: var(--brown-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* About Us Video Player Styling */
.process-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--brown-text);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.about-video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    padding: 8px;
    background-color: var(--bg-light);
    background-image: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(34, 26, 22, 0.05), rgba(212, 175, 55, 0.2));
    border: 1px solid var(--border-light);
    box-shadow: 0 30px 70px rgba(34, 26, 22, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    background-clip: padding-box;
}

.about-video-wrapper:hover {
    box-shadow: 0 40px 90px rgba(212, 175, 55, 0.18);
    transform: translateY(-5px);
}

.about-video-container {
    border-radius: 16px;
    overflow: hidden;
    background-color: #000000;
    position: relative;
    aspect-ratio: 16 / 9;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
    transform: translateZ(0);
}

.about-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    outline: none;
    border: none;
    border-radius: 16px;
}

/* ==========================================================================
   RESPONSIVE NAVIGATION & MOBILE MENU DRAWER
   ========================================================================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: left center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, -2px);
    background-color: var(--gold);
}

.mobile-menu-btn.active span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 2px);
    background-color: var(--gold);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Drawer Panel */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: #120e0c;
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 1005;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.drawer-brand {
    display: flex;
    align-items: center;
}

.drawer-logo {
    height: 160px;
    width: auto;
    object-fit: contain;
    display: block;
}

.drawer-close {
    font-size: 2rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: auto;
}

.mobile-nav-link {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--gold);
    padding-left: 8px;
}

.drawer-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE OVERRIDES
   ========================================================================== */

/* --- TABLET (820px – 992px) --- */
@media (max-width: 992px) {
    .desktop-nav {
        gap: 1.5rem;
    }
    .nav-link {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }
    .content-section {
        padding: 50px 5%;
    }
    .section-heading-main {
        font-size: 2rem;
    }
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-detailed-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-lead {
        font-size: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .luxury-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wide-video-wrapper {
        height: 60vh !important;
    }
    .cinematic-slide-card {
        width: 70vw !important;
        height: 350px !important;
    }
    .map-wrapper {
        height: 350px;
    }
}

/* --- MOBILE DRAWER BREAKPOINT (max-width: 820px) --- */
@media (max-width: 820px) {
    #main-header {
        height: 80px;
        padding: 0 4%;
    }
    .header-logo-container {
        width: 220px !important;
        height: 95px !important;
    }
    .navbar-logo {
        height: 140px !important;
        width: 210px !important;
        top: -15px !important;
    }
    .desktop-nav {
        display: none !important;
    }
    .mobile-menu-btn {
        display: flex;
        margin-left: 1rem;
    }
    #book-call-btn {
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
        white-space: nowrap;
    }
    .content-section {
        padding: 40px 4%;
    }
    .section-heading-main {
        font-size: 1.75rem;
        letter-spacing: 0.08em;
    }
    .section-header {
        margin-bottom: 2.5rem;
    }
    .wide-video-wrapper {
        height: 95vh !important;
    }
    .video-controls-btn-group {
        display: none !important;
    }
    .video-control-overlay {
        bottom: 2rem !important;
        left: 5% !important;
    }
    .video-control-overlay h2 {
        font-size: 0.9rem !important;
    }
    .luxury-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .cinematic-slide-card {
        width: 85vw !important;
        height: 250px !important;
    }
    .cinematic-showcase-container {
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    .contact-card {
        padding: 2rem 1.5rem;
    }
    .form-row {
        flex-direction: column;
        gap: 1.2rem;
    }
    .package-card {
        padding: 2.5rem 2rem;
    }
    .about-quad-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .about-info-card {
        padding: 1.8rem 1.5rem;
    }
    .about-info-card h4 {
        font-size: 1.1rem;
    }
    .about-profile-card img {
        height: 200px;
    }
    .process-section-title {
        font-size: 1.5rem;
    }
    .about-video-wrapper {
        padding: 5px;
    }
    .testimonial-card {
        flex: 0 0 calc(80vw - 2rem) !important;
        padding: 2rem !important;
    }
    .testimonial-card .quote {
        font-size: 1rem !important;
    }
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    /* Override inline calc() padding on contact section */
    #contact-section {
        padding-left: 4% !important;
        padding-right: 4% !important;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    .map-wrapper {
        height: 300px;
    }
    .map-section {
        padding: 0 4%;
    }
    .modal-content {
        padding: 2.5rem 1.5rem;
    }
    .content-section.alternate-bg {
        padding-left: 4% !important;
        padding-right: 4% !important;
    }
    .package-card p {
        min-height: auto !important;
    }
    /* Prevent any horizontal overflow on main content */
    #main-content {
        overflow-x: hidden !important;
    }
}

/* --- SMALL MOBILE (max-width: 480px) --- */
@media (max-width: 480px) {
    #book-call-btn {
        display: none;
    }
    .content-section.alternate-bg {
        padding-left: 4% !important;
        padding-right: 4% !important;
    }
    .header-logo-container {
        width: 175px !important;
        height: 80px !important;
    }
    .navbar-logo {
        height: 115px !important;
        width: 170px !important;
        top: -8px !important;
    }
    #main-header {
        height: 70px;
        padding: 0 3.5%;
    }
    .header-actions {
        gap: 0.5rem;
    }
    .content-section {
        padding: 30px 4%;
    }
    .section-heading-main {
        font-size: 1.4rem;
        letter-spacing: 0.05em;
    }
    .section-tag {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .heading-accent {
        margin-top: 1rem;
    }
    .wide-video-wrapper {
        height: 95vh !important;
    }
    .video-control-overlay {
        bottom: 1.2rem !important;
        left: 4% !important;
    }
    .video-control-overlay .section-tag {
        font-size: 0.6rem !important;
    }
    .video-control-overlay h2 {
        font-size: 0.75rem !important;
        margin-bottom: 0.8rem !important;
    }
    #video-play-toggle,
    #video-mute-toggle {
        padding: 0.5rem 1rem !important;
        font-size: 0.6rem !important;
    }
    .about-lead {
        font-size: 1.25rem;
    }
    .about-intro-text p {
        font-size: 0.9rem;
    }
    .about-quad-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .about-info-card {
        padding: 1.5rem 1.2rem;
    }
    .card-icon-header {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    .card-header-icon {
        width: 28px;
        height: 28px;
    }
    .about-info-card h4 {
        font-size: 1rem;
    }
    .about-info-card .card-text {
        font-size: 0.85rem;
    }
    .about-profile-card {
        padding: 1.5rem;
    }
    .about-profile-card img {
        height: 180px;
    }
    .about-download-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.75rem;
    }
    .process-section-title {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    .cinematic-slide-card {
        width: 90vw !important;
        height: 200px !important;
    }
    .slide-overlay {
        padding: 1.5rem 1.2rem !important;
    }
    .slide-overlay h3 {
        font-size: 1.1rem !important;
    }
    .luxury-gallery-card {
        aspect-ratio: 4/3;
    }
    .card-overlay {
        padding: 1.5rem 1.2rem !important;
    }
    .card-overlay h3 {
        font-size: 1rem !important;
    }
    .package-card {
        padding: 2rem 1.5rem;
    }
    .package-name {
        font-size: 1.1rem;
    }
    .package-features li {
        font-size: 0.85rem;
    }
    .testimonial-card {
        flex: 0 0 calc(90vw - 2rem) !important;
        padding: 1.8rem !important;
    }
    .testimonial-card .quote {
        font-size: 0.9rem !important;
        line-height: 1.6;
    }
    .testimonial-card .author {
        font-size: 0.8rem !important;
    }
    .contact-card {
        padding: 1.5rem 1.2rem;
    }
    #contact-section {
        padding-left: 4% !important;
        padding-right: 4% !important;
    }
    #contact-section .section-title {
        font-size: 1.8rem;
    }
    #contact-section .section-description {
        font-size: 0.85rem;
    }
    .contact-detail-row {
        font-size: 0.9rem;
    }
    .contact-detail-row a {
        font-size: 0.85rem;
        word-break: break-all;
    }
    .footer-logo-text {
        font-size: 1.1rem;
    }
    .footer-desc {
        font-size: 0.8rem;
    }
    #main-footer {
        padding: 50px 5% 30px;
    }
    .footer-socials {
        flex-wrap: wrap;
    }
    .footer-bottom p {
        font-size: 0.65rem;
    }
    .map-wrapper {
        height: 250px;
    }
    .section-divider {
        width: 80%;
        margin: 1.5rem auto;
    }
    /* Mobile hero text adjustments */
    #hero-video-mobile .hero-text-overlay h1 {
        font-size: 1.6rem !important;
    }
    #hero-video-mobile .hero-text-overlay p {
        font-size: 0.85rem !important;
    }
    #hero-video-mobile .hero-text-overlay .btn-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.7rem;
    }
    .admin-dashboard {
        padding: 1.5rem;
    }
    .admin-grid {
        grid-template-columns: 1fr;
    }
    .admin-block {
        padding: 1.5rem;
    }
    /* Footer logo sizing for small screens */
    .footer-logo-wrap img {
        height: 120px !important;
    }
}

/* --- EXTRA SMALL (max-width: 360px) --- */
@media (max-width: 360px) {
    .content-section {
        padding: 25px 3.5%;
    }
    .section-heading-main {
        font-size: 1.2rem;
    }
    .about-lead {
        font-size: 1.1rem;
    }
    .package-card {
        padding: 1.5rem 1.2rem;
    }
    #hero-video-mobile .hero-text-overlay h1 {
        font-size: 1.3rem !important;
    }
    .contact-card {
        padding: 1.2rem 1rem;
    }
    .brand-title-large {
        font-size: 1.15rem !important;
        letter-spacing: 0.15em !important;
    }
}

/* GPU acceleration for sliding marquees to prevent layout recalculation */
.cinematic-scrolling-track,
.testimonials-track {
    will-change: transform;
}

/* Disable expensive background-position border gradients on mobile devices */
@media (max-width: 820px) {
    .luxury-gallery-card::after,
    .package-card::after {
        animation: none !important;
        background: var(--gold) !important;
        opacity: 0.4 !important;
    }

    /* Performance: disable gold bubble animations on mobile */
    .gold-bubbles-container {
        display: none !important;
    }

    /* Performance: remove heavy backdrop-filter on mobile */
    .mobile-drawer-overlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Performance: hide canvas and parallax track entirely on mobile */
    #parallax-canvas,
    .hero-sticky-wrapper,
    .hero-text-overlay,
    #hero-climax-overlay {
        display: none !important;
    }

    .mobile-br {
        display: block !important;
    }

    .brand-title-large {
        font-size: 1.35rem !important;
        letter-spacing: 0.18em !important;
        line-height: 1.6 !important;
    }

    /* Performance: reduce header backdrop-filter complexity */
    #main-header {
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }
}

/* Footer-specific gold bubbles: smaller, softer, and more subtle */
#main-footer .gold-bubble {
    animation: float-up-bubble-footer linear infinite;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, rgba(212, 175, 55, 0.12) 60%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

@keyframes float-up-bubble-footer {
    0% {
        transform: translateY(0) scale(0.3) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.55;
    }
    90% {
        opacity: 0.55;
    }
    100% {
        transform: translateY(-110vh) scale(0.5) translateX(30px);
        opacity: 0;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-icon-wrap {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp:hover .whatsapp-icon-wrap {
    transform: scale(1.1) rotate(8deg);
    background-color: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: rgba(18, 14, 12, 0.95);
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 30px;
    border: 1px solid var(--gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    pointer-events: none;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Adjust position on mobile to prevent overlapping other buttons */
@media (max-width: 820px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-icon-wrap {
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon-wrap svg {
        width: 24px;
        height: 24px;
    }
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile for cleaner look */
    }
}

/* ==========================================================================
   REDUCED MOTION ACCESSIBILITY & PERFORMANCE
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .cinematic-scrolling-track {
        animation: none !important;
    }
    .gold-bubble {
        animation: none !important;
        display: none !important;
    }
    .testimonials-track {
        animation: none !important;
    }
}

