/* ============================================================
   VINTAGE POOLSIDE VILLA — COMPLETE style.css
   Original styles + All premium animations merged
   ============================================================ */

:root {
    --bg-dark: #0F172A;
    --accent-gold: #B0BF1A;
    --gold-bright: #FFF9A5;
    --pure-white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-dark); font-family: 'Montserrat', sans-serif; overflow-x: hidden; }

/* ═══════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════════════════ */
#scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, #8a9412, var(--accent-gold), #fff9a5);
    z-index: 99997;
    box-shadow: 0 0 10px rgba(176,191,26,0.55);
    transition: width 0.08s linear;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   CURSOR GLOW (Desktop)
═══════════════════════════════════════════════════════ */
#cursor-glow {
    position: fixed;
    pointer-events: none;
    z-index: 99996;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176,191,26,0.055) 0%, transparent 62%);
    transform: translate(-50%, -50%);
    transition: left 0.15s ease, top 0.15s ease;
}

/* ═══════════════════════════════════════════════════════
   PARTICLES CANVAS
═══════════════════════════════════════════════════════ */
#particles-canvas {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0;
    opacity: 0.3;
}

/* ═══════════════════════════════════════════════════════
   LOADER — Premium
═══════════════════════════════════════════════════════ */
#loader {
    position: fixed; inset: 0;
    background: #050c18;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    z-index: 9999;
    overflow: hidden;
}

/* Aurora glow */
#loader::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 55%, rgba(176,191,26,0.14) 0%, transparent 65%),
        radial-gradient(ellipse 40% 30% at 30% 40%, rgba(255,249,165,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 70% 65%, rgba(176,191,26,0.07) 0%, transparent 60%);
    animation: loaderAurora 5s ease-in-out infinite alternate;
    pointer-events: none;
}

/* Expanding ring */
#loader::after {
    content: '';
    position: absolute; left: 50%; top: 50%;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(176,191,26,0.07);
    transform: translate(-50%,-50%) scale(0.5);
    animation: loaderRing 5s ease-out infinite;
    pointer-events: none;
}

@keyframes loaderAurora {
    0%   { transform: scale(1)   rotate(0deg);   opacity: 0.7; }
    100% { transform: scale(1.5) rotate(160deg); opacity: 1; }
}
@keyframes loaderRing {
    0%   { transform: translate(-50%,-50%) scale(0.4); opacity: 0; }
    30%  { opacity: 1; }
    100% { transform: translate(-50%,-50%) scale(2.2); opacity: 0; }
}

/* Floating orbs */
.loader-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: orbRise linear infinite;
}
@keyframes orbRise {
    0%   { transform: translateY(0) scale(1);       opacity: 0; }
    8%   { opacity: 1; }
    90%  { opacity: 0.8; }
    100% { transform: translateY(-110vh) scale(0.2); opacity: 0; }
}

/* Loader content */
.loader-content {
    position: relative; z-index: 2;
    text-align: center;
}

.loader-line-top,
.loader-line-bottom {
    height: 1px; width: 0;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 0 auto;
}
.loader-line-top    { margin-bottom: 28px; animation: lineExpand 0.9s ease forwards 0.4s; }
.loader-line-bottom { margin-top: 28px;    animation: lineExpand 0.9s ease forwards 1.3s; }
@keyframes lineExpand { to { width: 260px; } }

/* Villa name — ink-bleed */
.gold-shine {
    font-family: 'Pinyon Script', cursive;
    font-size: clamp(3.2rem, 11vw, 6.5rem);
    background: linear-gradient(to right, #8a9412, var(--accent-gold), #fff9a5, var(--accent-gold), #8a9412);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation:
        inkBleed  1.5s cubic-bezier(0.22,1,0.36,1) forwards 0.7s,
        shineMove 4s   linear                       infinite  2.2s;
}
@keyframes inkBleed {
    0%   { opacity: 0; filter: blur(16px); letter-spacing: 12px; transform: scale(0.88); }
    55%  { opacity: 0.85; filter: blur(3px); }
    100% { opacity: 1;  filter: blur(0);   letter-spacing: normal; transform: scale(1); }
}
@keyframes shineMove {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.premium-tag {
    font-family: 'Cinzel', serif;
    letter-spacing: 16px;
    font-size: 0.65rem;
    color: #fff;
    text-transform: uppercase;
    opacity: 0;
    animation: tagReveal 1s ease forwards 1.8s;
}
@keyframes tagReveal {
    0%   { opacity: 0; letter-spacing: 22px; }
    100% { opacity: 0.85; letter-spacing: 16px; }
}

/* Loading dots */
.loader-dots {
    display: flex; gap: 10px;
    justify-content: center;
    margin-top: 38px; opacity: 0;
    animation: fadeUp 0.5s ease forwards 2.2s;
}
.loader-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent-gold);
    animation: dotBounce 1.4s ease-in-out infinite;
}
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
    0%,80%,100% { transform: scale(0.5); opacity: 0.25; }
    40%          { transform: scale(1.3); opacity: 1; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   MAIN CONTENT
═══════════════════════════════════════════════════════ */
#main-content { opacity: 0; transition: opacity 1.5s ease; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.navbar {
    padding: 25px 0; z-index: 1000;
    transition: padding 0.4s ease, background 0.4s ease, border 0.4s ease;
}
.navbar.scrolled {
    background: rgba(5,12,24,0.94) !important;
    backdrop-filter: blur(22px) !important;
    border-bottom: 1px solid rgba(176,191,26,0.18) !important;
    padding: 12px 0 !important;
}
.navbar-brand {
    font-family: 'Cinzel', serif; font-weight: 900;
    letter-spacing: 2px; color: white !important;
}
.accent-gold { color: var(--accent-gold); }
.nav-link {
    font-size: 0.75rem; letter-spacing: 2px;
    text-transform: uppercase; color: white !important;
    margin-left: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute; bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
    height: 100vh;
    background: url('images/bg.jpg') center/cover no-repeat fixed;
    position: relative;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.5) 0%, rgba(15,23,42,0.8) 100%);
}
.hero-container { position: relative; z-index: 2; }
.hero-sub {
    font-family: 'Pinyon Script', cursive; font-size: 2.2rem;
    color: var(--accent-gold); text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}
.hero-title {
    font-family: 'Cinzel', serif; font-weight: 900;
    font-size: clamp(2.2rem, 8vw, 5rem);
    line-height: 1.1; margin: 15px 0;
    background: linear-gradient(135deg, #8a9412 0%, var(--accent-gold) 50%, var(--gold-bright) 55%, var(--accent-gold) 60%, #8a9412 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(4px 4px 15px rgba(0,0,0,0.9));
    animation: shineMove 5s linear infinite;
}
.ampersand { font-family: 'Montserrat', sans-serif; font-weight: 300; opacity: 0.8; }

.hero-divider {
    width: 0 !important; height: 3px;
    background: var(--accent-gold);
    margin: 0 auto 15px;
    box-shadow: 0 0 10px var(--accent-gold);
    animation: dividerGrow 1.2s ease forwards 2.5s !important;
}
@keyframes dividerGrow { to { width: 60px; } }

.hero-loc {
    letter-spacing: 8px; font-weight: 600;
    color: #fff; text-shadow: 2px 2px 10px rgba(0,0,0,0.9);
}

/* Score card */
.score-card {
    display: flex; align-items: center;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(10px);
    padding: 12px 25px; border-radius: 100px;
    border: 1px solid var(--accent-gold); margin-top: 30px;
    position: relative; overflow: hidden;
    opacity: 0; animation: scoreFadeIn 1s ease forwards 3s;
}
@keyframes scoreFadeIn { to { opacity: 1; } }
.score-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(176,191,26,0.1), transparent);
    transform: translateX(-200%);
    animation: shimmerPass 4s ease-in-out infinite 4s;
}
@keyframes shimmerPass {
    0%   { transform: translateX(-200%); }
    100% { transform: translateX(200%); }
}
.score-box {
    font-family: 'Cinzel', serif; font-size: 2rem;
    font-weight: 700; color: var(--accent-gold); margin-right: 15px;
}
.score-label { display: block; font-weight: 700; letter-spacing: 2px; font-size: 0.8rem; color: #fff; }
.score-sub   { font-size: 0.65rem; color: #ccc; }

/* Base reveal */
.reveal { opacity: 0; }
body.loaded .reveal { animation: fadeInUp 1.2s ease-out forwards; }
.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.7s; }
.delay-3 { animation-delay: 1s; }
.delay-4 { animation-delay: 1.3s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL CLASSES
═══════════════════════════════════════════════════════ */
.sr-up    { opacity: 0; transform: translateY(45px); transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22,1,0.36,1); }
.sr-left  { opacity: 0; transform: translateX(-45px); transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22,1,0.36,1); }
.sr-right { opacity: 0; transform: translateX(45px);  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22,1,0.36,1); }
.sr-scale { opacity: 0; transform: scale(0.86);       transition: opacity 0.8s ease,  transform 0.8s cubic-bezier(0.34,1.56,0.64,1); }
.sr-in    { opacity: 1 !important; transform: none !important; }
.sd-1 { transition-delay: 0.1s !important; }
.sd-2 { transition-delay: 0.22s !important; }
.sd-3 { transition-delay: 0.34s !important; }
.sd-4 { transition-delay: 0.46s !important; }
.sd-5 { transition-delay: 0.58s !important; }

/* ═══════════════════════════════════════════════════════
   SECTION DIVIDER
═══════════════════════════════════════════════════════ */
.section-divider-line {
    width: 1px; height: 55px;
    background: linear-gradient(to bottom, transparent, rgba(176,191,26,0.4), transparent);
    margin: 0 auto;
    opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════ */
.about-section {
    background: linear-gradient(rgba(15,23,42,0.9), rgba(15,23,42,0.9)),
                url('images/bg.jpg') center/cover no-repeat fixed;
    padding: 100px 0;
}
.glass-content-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    padding: 50px; border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 45px rgba(0,0,0,0.2);
    transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.glass-content-card:hover {
    box-shadow: 0 35px 65px rgba(176,191,26,0.12);
    transform: translateY(-4px);
}
.section-title {
    font-family: 'Cinzel', serif; font-size: 2.8rem;
    color: var(--pure-white); text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.about-text p { color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 20px; }
.script-text { font-family: 'Pinyon Script', cursive; font-size: 1.8rem; }
.gold-text    { color: var(--accent-gold); }

/* Amenity 3D cards */
.ami-3d-card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(10px);
    padding: 30px 20px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center; position: relative; overflow: hidden;
    transition:
        transform  0.5s cubic-bezier(0.23,1,0.32,1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}
.ami-3d-card::before {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(176,191,26,0.1), transparent);
    transform: rotate(45deg); transition: 0.8s;
}
.ami-3d-card:hover {
    transform: translateY(-10px) rotateX(10deg);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(176,191,26,0.2);
}
.ami-3d-card:hover::before { left: 100%; }
.ami-3d-card h5 { font-family: 'Cinzel', serif; font-size: 0.9rem; margin-top: 15px; color: white; }
.ami-3d-card p  { font-size: 0.7rem; color: var(--accent-gold); margin: 0; text-transform: uppercase; letter-spacing: 1px; }
.ami-3d-card .bi { font-size: 1.8rem; color: var(--accent-gold); }
.gold-border { border-color: rgba(176,191,26,0.4); }

/* Amenities ribbon */
.amenities-ribbon {
    background: rgba(0,0,0,0.4);
    padding: 40px; border-radius: 20px;
    border-bottom: 3px solid var(--accent-gold);
}
.amenity-item span {
    display: block; font-family: 'Cinzel', serif;
    font-weight: 700; font-size: 0.85rem; letter-spacing: 2px;
}
.amenity-item small { color: rgba(255,255,255,0.5); font-size: 0.65rem; text-transform: uppercase; }

/* ═══════════════════════════════════════════════════════
   ROOMS SECTION
═══════════════════════════════════════════════════════ */
.rooms-section { background-color: var(--bg-dark); }

.paper-carousel {
    border: 12px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: rotate(-1deg);
    aspect-ratio: 16 / 10;
    overflow: hidden; background: #000;
    transition: transform 0.7s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.6s ease;
}
.paper-carousel .carousel-inner,
.paper-carousel .carousel-item { height: 100%; }
.paper-carousel img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.paper-carousel:hover {
    transform: rotate(0deg);
    box-shadow: 0 35px 65px rgba(176,191,26,0.22);
}

.property-info { background: rgba(255,255,255,0.03); border-radius: 20px; }
.specs-list li { padding: 10px 0; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.booking-notice { background: rgba(255,255,255,0.04); border-radius: 10px; border-left: 3px solid var(--accent-gold); }

/* Book Now button with pulse */
.btn-gold-premium {
    background: var(--accent-gold);
    color: #000; font-weight: 700; letter-spacing: 2px;
    border: none; transition: background 0.3s, transform 0.3s;
    position: relative; overflow: hidden;
    border-radius: 6px;
}
.btn-gold-premium::after {
    content: '';
    position: absolute; inset: 0; border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(176,191,26,0.45);
    animation: bookPulse 2.6s ease-in-out infinite;
}
.btn-gold-premium:hover { background: #fff9a5; transform: translateY(-3px); }
@keyframes bookPulse {
    0%   { box-shadow: 0 0 0 0   rgba(176,191,26,0.45); }
    65%  { box-shadow: 0 0 0 16px rgba(176,191,26,0); }
    100% { box-shadow: 0 0 0 0   rgba(176,191,26,0); }
}

/* Booking overlay */
.booking-overlay {
    position: fixed; inset: 0;
    background: rgba(15,23,42,0.9); backdrop-filter: blur(15px);
    display: flex; justify-content: center; align-items: center;
    z-index: 10000; padding: 20px;
}
.glass-booking-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--accent-gold); border-radius: 30px;
    padding: 40px; width: 100%; max-width: 500px;
    position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    animation: royalZoom 0.4s ease-out;
}
.close-form-btn {
    position: absolute; top: 15px; right: 20px;
    background: none; border: none;
    color: var(--accent-gold); font-size: 2.5rem;
    cursor: pointer; line-height: 1;
}
.gold-label {
    font-family: 'Cinzel', serif; font-size: 0.75rem;
    color: var(--accent-gold); letter-spacing: 1px; text-transform: uppercase;
}
.glass-input {
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #ffffff !important; padding: 12px !important;
    backdrop-filter: blur(10px);
}
.glass-input::placeholder { color: rgba(255,255,255,0.5) !important; }
.glass-input option { background-color: #0F172A !important; color: #ffffff !important; }
.glass-input:focus {
    background: rgba(255,255,255,0.15) !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 15px rgba(176,191,26,0.3) !important;
    outline: none;
}
@keyframes royalZoom {
    from { opacity: 0; transform: scale(0.8); }
    to   { opacity: 1; transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════
   REVIEWS SECTION
═══════════════════════════════════════════════════════ */
.reviews-section {
    background: linear-gradient(rgba(15,23,42,0.8), rgba(15,23,42,0.8)),
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=2070');
    background-size: cover; background-position: center; background-attachment: fixed;
}
.glass-review-card {
    background: rgba(255,255,255,0.05); backdrop-filter: blur(15px);
    padding: 30px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.glass-review-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(176,191,26,0.18);
}
.review-text {
    font-size: 0.95rem; line-height: 1.6;
    color: rgba(255,255,255,0.85); font-style: italic; min-height: 100px;
}
.badge-elite {
    display: inline-block; padding: 4px 12px;
    background: rgba(176,191,26,0.1); color: var(--accent-gold);
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
    border-radius: 50px; margin-right: 8px;
    border: 1px solid rgba(176,191,26,0.2);
}

/* QR */
.qr-review-wrapper {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    perspective: 1000px;
}
.qr-glass-box {
    position: relative; width: 130px; height: 130px;
    background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
    border: 1px solid rgba(176,191,26,0.3); border-radius: 20px;
    padding: 12px; box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}
.qr-inner { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 10px; }
.qr-code-img { width: 100%; height: 100%; object-fit: contain; filter: contrast(1.1); }
.corner { position: absolute; width: 10px; height: 10px; border: 2px solid var(--accent-gold); transition: 0.3s; }
.tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.qr-glass-box:hover { transform: translateY(-10px) rotateX(10deg); border-color: var(--accent-gold); box-shadow: 0 25px 50px rgba(176,191,26,0.2); }
.qr-glass-box:hover .corner { width: 15px; height: 15px; }
.qr-shimmer {
    position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(176,191,26,0.2), transparent);
    animation: qrScan 3s infinite linear; pointer-events: none;
}
@keyframes qrScan { 0% { top: -100%; } 100% { top: 100%; } }
.gold-text-small { font-family: 'Cinzel', serif; font-size: 0.65rem; color: var(--accent-gold); letter-spacing: 2px; font-weight: 700; }
.qr-line { width: 30px; height: 2px; background: var(--accent-gold); margin: 5px auto; opacity: 0.5; }
.qr-caption { text-align: center; }

/* ═══════════════════════════════════════════════════════
   GALLERY SECTION
═══════════════════════════════════════════════════════ */
.gallery-section { background-color: var(--bg-dark); perspective: 2000px; }
.gallery-grid    { transform-style: preserve-3d; }

.gallery-item {
    opacity: 0;
    transform: translate3d(calc(var(--x)*1px), calc(var(--y)*1px), 2000px) rotateX(120deg) rotateY(90deg);
    transition: all 1.5s cubic-bezier(0.34,1.56,0.64,1);
}
.gallery-item.animate-in {
    opacity: 1;
    transform: translate3d(0,0,0) rotateX(0deg) rotateY(0deg);
}
.gallery-card {
    position: relative; aspect-ratio: 1/1;
    overflow: hidden; border-radius: 12px;
    border: 1px solid rgba(176,191,26,0.3); background: #000;
    animation: dance 6s ease-in-out infinite alternate;
}
@keyframes dance {
    0%   { transform: translateY(0)   rotate(0deg); }
    33%  { transform: translateY(-8px) rotate(1deg); }
    66%  { transform: translateY(5px)  rotate(-1.5deg); }
    100% { transform: translateY(-5px) rotate(0.5deg); }
}
.gallery-item:nth-child(even)  .gallery-card { animation-duration: 7s; animation-delay: 1s; }
.gallery-item:nth-child(3n)    .gallery-card { animation-duration: 5s; animation-delay: 0.5s; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-card:hover {
    animation-play-state: paused;
    transform: scale(1.1) translateZ(100px);
    border-color: var(--accent-gold);
    box-shadow: 0 30px 60px rgba(176,191,26,0.28); z-index: 1000;
}
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(176,191,26,0.15), transparent);
    opacity: 0; transition: opacity 0.4s ease;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════ */
.contact-section { background-color: var(--bg-dark); }
.glass-info-card {
    background: rgba(255,255,255,0.03); backdrop-filter: blur(15px);
    border: 1px solid rgba(176,191,26,0.2); border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.font-cinzel { font-family: 'Cinzel', serif; letter-spacing: 2px; }
.map-container-small {
    height: 180px; width: 100%;
    border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(176,191,26,0.3); margin-top: 15px;
}
.google-map-frame {
    width: 100%; height: 100%; border: 0;
    filter: grayscale(1) invert(0.9) contrast(1.2) brightness(0.8);
}
.landmark-item {
    display: flex; align-items: start; margin-bottom: 20px;
    border-left: 2px solid transparent; padding-left: 0;
    transition: border-color 0.3s ease, padding-left 0.35s ease, transform 0.35s ease;
}
.landmark-item:hover {
    border-left-color: var(--accent-gold);
    padding-left: 14px; transform: translateX(4px);
}
.landmark-item i   { font-size: 1.2rem; margin-right: 15px; }
.landmark-item h6  { color: #fff; margin-bottom: 2px; font-size: 0.95rem; }
.landmark-item p   { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin: 0; }
.whatsapp-contact  { transition: 0.3s ease; display: inline-block; }
.whatsapp-contact:hover { color: var(--accent-gold) !important; transform: translateX(5px); }

/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
═══════════════════════════════════════════════════════ */
.wa-float-btn {
    display: none;
    position: fixed; bottom: 78px; right: 18px;
    width: 52px; height: 52px; border-radius: 50%;
    background: #25D366; color: #fff; font-size: 1.5rem;
    align-items: center; justify-content: center;
    text-decoration: none; z-index: 9990;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    animation: waGlow 2.2s ease infinite;
    transition: transform 0.3s ease;
}
.wa-float-btn:hover { transform: scale(1.1); color: #fff; }
@keyframes waGlow {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.fixed-bottom-footer {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(15,23,42,0.98); backdrop-filter: blur(10px);
    border-top: 1px solid rgba(176,191,26,0.2);
    z-index: 10000; display: flex; align-items: center;
    transition: 0.3s ease;
}
.copyright-text {
    font-size: 0.65rem; color: rgba(255,255,255,0.4);
    letter-spacing: 1px; text-transform: uppercase;
}
.created-inline-wrapper { display: flex; align-items: center; gap: 10px; }
.created-text { font-size: 0.65rem; color: rgba(255,255,255,0.4); text-transform: uppercase; margin: 0; }
.matrix-brand { display: flex; align-items: center; gap: 8px; text-decoration: none !important; position: relative; }
.m-red   { color: #FF0000; font-weight: 700; transition: 0.3s; font-size: 0.9rem; }
.b-white { color: #FFFFFF; font-weight: 700; transition: 0.3s; font-size: 0.9rem; }
.matrix-logo-circle-zoom {
    width: 30px; height: 30px; background: #fff; border-radius: 50%;
    overflow: hidden; display: flex; justify-content: center; align-items: center;
}
.matrix-logo-circle-zoom img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }
.star-dust {
    position: absolute; width: 4px; height: 4px;
    border-radius: 50%; pointer-events: none; z-index: 10;
    animation: explode 1s ease-out forwards;
}
@keyframes explode {
    0%   { transform: translate(0,0) scale(1); opacity: 1; }
    100% { transform: translate(var(--x),var(--y)) scale(0); opacity: 0; }
}
#glitter-container { position: absolute; }

/* Desktop footer layout */
@media (min-width: 768px) {
    .fixed-bottom-footer { height: 50px; }
    .footer-copyright { position: absolute; left: 50%; transform: translateX(-50%); }
    .footer-right-side { position: absolute; right: 30px; }
}
/* Mobile footer */
@media (max-width: 767px) {
    .fixed-bottom-footer { height: 70px; padding: 10px 0; }
    .footer-wrapper { gap: 5px; }
    .created-text { font-size: 0.6rem; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-title    { font-size: 2.5rem; }
    .hero-loc      { letter-spacing: 4px; font-size: 0.7rem; }
    .navbar-toggler-icon { filter: invert(1); }
    .glass-content-card  { padding: 30px; }
    .section-title  { font-size: 2rem; }
    .ami-3d-card    { padding: 20px 10px; }
    .amenities-ribbon { padding: 20px; }
    .paper-carousel { border: 6px solid #fff; aspect-ratio: 4/3; }
    .glass-booking-card { padding: 30px 20px; }
    .map-container-small { height: 150px; }
    .wa-float-btn { display: flex; }
    .copyright-text { font-size: 0.6rem; }
}
@media (max-width: 576px) {
    .score-card { padding: 10px 16px; }
    .score-box  { font-size: 1.5rem; }
    .section-title { font-size: 1.75rem !important; }
}