:root {
    --gold: #D4AF37;
    --gold-grad: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --bg-dark: #050505;
    --bg-light: #f5f5f7;
    --glass-dark: rgba(20, 20, 20, 0.85);
    --glass-light: rgba(255, 255, 255, 0.9);
    --text-dark: #ffffff;
    --text-light: #1d1d1f;
}

[data-theme="light"] {
    --bg-dark: var(--bg-light);
    --glass-dark: var(--glass-light);
    --text-dark: var(--text-light);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-dark);
    font-family: 'General Sans', sans-serif;
    overflow-x: hidden;
    transition: background 0.5s ease;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1300px;
    padding: 15px 35px;
    background: var(--glass-dark);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 100px;
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

/* Logo */
.brand { text-decoration: none; display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.logo-icon { color: var(--gold); font-size: 1.8rem; }
.logo-text { font-family: 'Clash Display'; font-weight: 700; letter-spacing: 1px; }

.gold-shine {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s infinite linear;
    background-size: 200% auto;
}
@keyframes shine { to { background-position: 200% center; } }

/* Desktop Links & Underline */
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 0.95rem; opacity: 0.7; transition: 0.3s; position: relative; padding-bottom: 5px; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }

.hover-underline:hover::after, .active.hover-underline::after { width: 100%; }

/* Dropdown Visibility Fix */
.dropdown-parent { position: relative; }
.dropdown-menu {
    position: absolute; top: 40px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: var(--bg-dark); /* Solid background for crystal clear visibility */
    padding: 15px; border-radius: 20px; border: 1px solid var(--gold);
    width: 220px; opacity: 0; visibility: hidden; transition: 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.dropdown-parent:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: block; padding: 12px; color: var(--text-dark) !important; opacity: 1 !important; border-radius: 10px; }
.dropdown-menu a:hover { background: rgba(212, 175, 55, 0.1); color: var(--gold) !important; }

/* Actions & Smart Toggle */
.nav-actions { display: flex; align-items: center; gap: 20px; }
.theme-toggle { background: none; border: none; cursor: pointer; color: var(--gold); font-size: 1.5rem; position: relative; height: 30px; width: 30px; }
.sun-icon, .moon-icon { position: absolute; top: 0; left: 0; transition: 0.5s ease; }

/* Icon Switching Logic: Only one shows at a time */
[data-theme="dark"] .sun-icon { opacity: 1; transform: scale(1) rotate(0deg); }
[data-theme="dark"] .moon-icon { opacity: 0; transform: scale(0) rotate(-90deg); }
[data-theme="light"] .sun-icon { opacity: 0; transform: scale(0) rotate(90deg); }
[data-theme="light"] .moon-icon { opacity: 1; transform: scale(1) rotate(0deg); }

.book-btn { background: var(--gold-grad); color: #000; border: none; padding: 10px 25px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: 0.3s; }

/* --- Mobile Aligment --- */
.mobile-theme-wrapper, .menu-trigger { display: none; }

@media (max-width: 900px) {
    .nav-links, .nav-actions { display: none; }
    .mobile-theme-wrapper, .menu-trigger { display: flex; align-items: center; }
    .menu-trigger { font-size: 1.8rem; cursor: pointer; color: var(--text-dark); }
    .navbar { top: 20px; width: 94%; padding: 10px 20px; }
    .brand { position: absolute; left: 50%; transform: translateX(-50%); }
}

/* --- Premium Mobile Overlay --- */
.mobile-overlay {
    position: fixed; inset: 0; background: var(--bg-dark); z-index: 2000;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transform: translateX(100%); transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-overlay.active { transform: translateX(0); }
.overlay-close { position: absolute; top: 30px; right: 30px; font-size: 2.5rem; color: var(--gold); cursor: pointer; }

.mob-nav-content { display: flex; flex-direction: column; width: 100%; padding: 0 40px; gap: 20px; }
.mob-item, .mob-acc-trigger { 
    font-family: 'Clash Display'; font-size: 2.5rem; text-decoration: none; 
    color: var(--text-dark); display: flex; justify-content: space-between; align-items: center;
    background: none; border: none; width: 100%; cursor: pointer;
}
.mob-acc-content { height: 0; overflow: hidden; display: flex; flex-direction: column; gap: 15px; transition: 0.4s ease-out; }
.mob-acc-content a { font-size: 1.5rem; color: var(--gold); text-decoration: none; }
/* --- LOGO IMAGE STYLING --- */
.main-logo {
    height: 55px; /* Desktop par logo ki height */
    width: auto;  /* Width apne aap adjust hogi */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand:hover .main-logo {
    transform: scale(1.05); /* Hover karne par thoda zoom hoga */
}

/* Mobile Responsive Logo */
@media (max-width: 900px) {
    .main-logo {
        height: 55px; /* Mobile par thoda chhota logo */
    }
}


/* --- HERO SECTION BASE --- */
.hero { 
    min-height: 100vh; 
    width: 100%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: var(--bg-dark);
    padding: 120px 5%;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1300px;
}

/* HERO CONTENT */
.hero-content{
    opacity: 0;
    transform: translateY(30px);
}

/* HEADING */
.hero h1 { 
    font-family: 'Clash Display', sans-serif; 
    font-size: 7vw; 
    line-height: 1.05; 
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 90px;
}

/* SPLIT LAYOUT */
.hero-split{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

/* LEFT MEDIA */
.hero-media{
    border-radius: 40px;
    overflow: hidden;
    box-shadow:
        0 40px 120px rgba(0,0,0,0.55),
        inset 0 0 0 1px rgba(212,175,55,0.25);

    opacity: 0;
    transform: scale(0.94);
}

.hero-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT TEXT */
.hero-text{
    display: flex;
    flex-direction: column;
    gap: 26px;
    opacity: 0;
    transform: translateY(40px);
}

.hero-text p{
    font-size: 1.2rem;
    line-height: 1.9;
    letter-spacing: 0.4px;
    color: rgba(255,255,255,0.72);
}

/* ===== STRONG TEXT – LIGHT MODE FIX ===== */
[data-theme="light"] .hero-text p.strong{
    background: linear-gradient(
        120deg,
        #1d1d1f,
        #6f5a1e,
        #b8972e,
        #6f5a1e,
        #1d1d1f
    );
    background-size: 300% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: luxuryTextShine 10s linear infinite;
}


/* LIGHT MODE */
[data-theme="light"] .hero-text p{
    color: rgba(0,0,0,0.72);
}

/* MOBILE */
@media (max-width: 900px){

    .hero{
        padding: 100px 8%;
    }

    .hero h1{
        font-size: 13vw;
        text-align: left;
        margin-bottom: 60px;
    }

    .hero-split{
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text p{
        font-size: 1.05rem;
    }

    .hero-text p.strong{
        font-size: 1.15rem;
    }
}
/* ===== HERO MANIFESTO CURVED BOX ===== */
.hero-manifesto-box{
    padding: 38px 42px;
    border-radius: 36px;

    background: var(--glass-dark);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);

    border: 1px solid rgba(212,175,55,0.28);

    box-shadow:
        0 40px 120px rgba(0,0,0,0.45),
        inset 0 0 0 1px rgba(255,255,255,0.06);

    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Text inside box */
.hero-manifesto-box p{
    font-size: 1.15rem;
    line-height: 1.9;
    letter-spacing: 0.4px;
    color: rgba(255,255,255,0.75);
}

.hero-manifesto-box p.strong{
    font-size: 1.4rem;
    font-weight: 500;
}

/* Light mode */
[data-theme="light"] .hero-manifesto-box{
    background: var(--glass-light);
    box-shadow:
        0 30px 90px rgba(0,0,0,0.12),
        inset 0 0 0 1px rgba(0,0,0,0.05);
}

[data-theme="light"] .hero-manifesto-box p{
    color: rgba(0,0,0,0.75);
}

/* Hover luxury lift (optional but 🔥) */
.hero-manifesto-box{
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1),
                box-shadow 0.6s ease;
}

.hero-manifesto-box:hover{
    transform: translateY(-6px);
    box-shadow:
        0 60px 160px rgba(0,0,0,0.55),
        inset 0 0 0 1px rgba(212,175,55,0.45);
}

/* Mobile */
@media (max-width: 900px){
    .hero-manifesto-box{
        padding: 30px 26px;
        border-radius: 28px;
    }

    .hero-manifesto-box p{
        font-size: 1.05rem;
    }

    .hero-manifesto-box p.strong{
        font-size: 1.15rem;
    }
}

/* --- MOBILE RESPONSIVE (Phone Sizes) --- */
@media (max-width: 768px) {
    .hero {
        padding: 0 10%; /* Side spacing taaki text cut na ho */
        justify-content: flex-start; /* Container ko left align kiya */
    }

    .hero-container {
        justify-content: flex-start; /* Content alignment left */
    }

    .hero h1 {
        font-size: 13vw; /* Size adjust kiya taaki screen width mein fit ho */
        text-align: left; /* Text left aligned */
        line-height: 1.05;
        letter-spacing: -1px;
        width: 100%; /* Width ensure karti hai ki padding ke andar hi rahe */
    }
}

/* Small Phones (iPhone SE, etc.) */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 15vw; /* Thoda aur bada display ke liye */
    }
}
/* Typing Cursor Effect */
#typing-text::after {
    content: '|';
    margin-left: 5px;
    color: var(--gold);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Scroll Animation ke liye elements ko initially chhupana */


.hero-content {
    opacity: 0;
    transform: translateY(30px);
}







/* ================= HERO 2 ULTRA PREMIUM ================= */

.hero2-ultra {
    height: 190vh;
    background: var(--bg-dark);
    position: relative;
}

.hero2-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Stage */
.hero2-stage {
    position: relative;
    width: 82vw;
    height: 62vh;
    border-radius: 42px;
    overflow: hidden;
    background: #000;
    box-shadow:
        0 80px 160px rgba(0,0,0,0.65),
        inset 0 0 0 1px rgba(212,175,55,0.35);
    transition: border-radius 0.4s ease;
}

/* Video */
.hero2-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2);
}

/* Overlay layers */
.hero2-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.0),
            rgba(0,0,0,0.90)
        );
    opacity: 0;
}

/* Content */
/* ======================================================
   HERO 2 — ULTRA LUXURY CINEMATIC TEXT
====================================================== */

.hero2-content { 
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}

/* ---------- EYEBROW (ROYAL SIGNATURE) ---------- */
.hero2-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-bottom: 16px;

    background: linear-gradient(
        90deg,
        #8c6b1f,
        #f6e6a6,
        #cfa54a,
        #f6e6a6,
        #8c6b1f
    );
    background-size: 400% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: eyebrowShine 14s linear infinite;
    opacity: 0.9;
}

/* ---------- MAIN HEADING (MASTERPIECE) ---------- */
.hero2-heading {
    font-family: 'Clash Display';
    font-size: 5vw;
    line-height: 1.01;
    text-transform: uppercase;
    position: relative;

    /* gold + ivory cinematic gradient */
    background: linear-gradient(
        120deg,
        #ffffff,
        #f3e7c3,
        #d4af37,
        #fffaf0,
        #d4af37
    );
    background-size: 500% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation:
        luxuryGradient 16s ease infinite,
        luxuryFloat 10s ease-in-out infinite;
}

/* soft glow halo */
.hero2-heading::after {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(
        circle,
        rgba(212,175,55,0.25),
        transparent 70%
    );
    filter: blur(40px);
    z-index: -1;
    opacity: 0.6;
}

/* ---------- TAGLINE (EDITORIAL STYLE) ---------- */
.hero2-tagline {
    margin-top: 22px;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);

    /* subtle fade animation */
    animation: taglineFade 6s ease-in-out infinite;
}

/* ======================================================
   KEYFRAMES — PURE CINEMA
====================================================== */

/* flowing metallic gradient */
@keyframes luxuryGradient {
    0%   { background-position:   0% center; }
    50%  { background-position: 250% center; }
    100% { background-position:   0% center; }
}

/* slow floating confidence */
@keyframes luxuryFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* eyebrow shimmer */
@keyframes eyebrowShine {
    0%   { background-position:   0% center; }
    100% { background-position: 400% center; }
}

/* tagline breathing */
@keyframes taglineFade {
    0%,100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* ======================================================
   RESPONSIVE — STILL LUXURY
====================================================== */
@media (max-width: 768px) {
    .hero2-heading {
        font-size: 10vw;
    }
    .hero2-tagline {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
    .hero2-stage {
        width: 80vw;
        height: 50vh;
    }
    .hero2-heading { font-size: 7vw; }
}

@media (max-width: 768px) {
    .hero2-stage {
        width: 92vw;
        height: 58vh;
        border-radius: 28px;
    }
    .hero2-heading { font-size: 10vw; }
}

@media (max-width: 480px) {
    .hero2-stage {
        height: 62vh;
    }
}

/* ================= ABOUT : ROYAL ================= */

.about-royal {
    padding: clamp(120px, 14vw, 220px) 0;
    background: var(--bg-dark);
}

.about-shell {
    max-width: 1500px;
    margin: auto;
    padding: 0 clamp(20px, 5vw, 90px);
}

/* ---------- HEADING ---------- */

.about-heading {
    margin-bottom: 40px;
}

.about-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 8px;
    color: var(--gold);
    display: block;
    margin-bottom: 14px;
}

.about-title {
    font-family: 'Clash Display';
    font-size: clamp(2.6rem, 6.5vw, 6.2rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.static-text {
    color: var(--text-dark);
}

.royal-text {
    margin-left: 12px;
    font-weight: 700;
    background: linear-gradient(
        120deg,
        #d4af37,
        #fff2c2,
        #b38728
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: royalShine 8s linear infinite;
}

@keyframes royalShine {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.since-text {
    display: block;
    font-size: clamp(1.2rem, 2vw, 2rem);
    margin-top: 8px;
    opacity: 0.85;
}

/* ---------- TEXT ---------- */

.about-content {
    max-width: 620px;
}

.about-lead {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.about-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
}

[data-theme="light"] .about-desc {
    color: rgba(0,0,0,0.65);
}

.about-sign {
    margin-top: 20px;
    font-family: 'Clash Display';
    color: var(--gold);
}

/* ---------- GALLERY ---------- */

.about-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 80px;
}

.about-img {
    overflow: hidden;
    border-radius: 36px;
    position: relative;
    transform: scale(0.95);
    transition: 0.6s cubic-bezier(0.23,1,0.32,1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.about-img:hover {
    transform: scale(1);
}

.about-img:hover img {
    transform: scale(1.12);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-gallery {
        grid-template-columns: 1fr;
    }
}

/* ================= ABOUT STATS ================= */

.about-stats {
    margin-top: 90px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* CARD */
.stat-card {
    position: relative;
    padding: 38px 20px;
    border-radius: 36px;
    text-align: center;

    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(212,175,55,0.25);
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);

    transition: all 0.6s cubic-bezier(0.23,1,0.32,1);
}

/* ICON */
.stat-card i {
    font-size: 2.6rem;
    color: var(--gold);
    margin-bottom: 16px;
    display: inline-block;

    animation: floatIcon 5s ease-in-out infinite;
}

/* NUMBER */
.stat-card h3 {
    font-family: 'Clash Display';
    font-size: 2.8rem;
    margin-bottom: 6px;

    background: linear-gradient(
        120deg,
        #ffffff,
        #f6e6a6,
        #d4af37
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: statGlow 6s linear infinite;
}

/* LABEL */
.stat-card span {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* HOVER */
.stat-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 50px 120px rgba(0,0,0,0.6),
        inset 0 0 0 1px rgba(212,175,55,0.4);
}

/* ICON FLOAT */
@keyframes floatIcon {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* NUMBER SHINE */
@keyframes statGlow {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1000px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}
/* ================= ULTRA LIVING ICONS ================= */

.stat-card {
    overflow: hidden;
}

/* ambient glow layer */
.stat-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(
        circle,
        rgba(212,175,55,0.18),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.stat-card:hover::before {
    opacity: 1;
}

/* ICON CORE */
.stat-card i {
    position: relative;
    font-size: 2.8rem;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 18px;

    transform-style: preserve-3d;
    will-change: transform;
}

/* breathing pulse */
.stat-card i::after {
    content: "";
    position: absolute;
    inset: -35%;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212,175,55,0.35),
        transparent 65%
    );
    filter: blur(18px);
    opacity: 0.35;
    animation: iconPulse 6s ease-in-out infinite;
    z-index: -1;
}

/* subtle number float */
.stat-card h3 {
    position: relative;
    will-change: transform;
}

/* ---------- KEYFRAMES ---------- */

@keyframes iconPulse {
    0%,100% { transform: scale(0.9); opacity: 0.25; }
    50% { transform: scale(1.05); opacity: 0.45; }
}
/* ===== ABOUT TEXT + GIF LAYOUT ===== */

.about-row{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:80px;
  align-items:center;
  margin-bottom:100px;
}

.about-gif{
  border-radius:40px;
  overflow:hidden;
  box-shadow:0 40px 120px rgba(0,0,0,0.6);
}

.about-gif img{
  width:100%;
  display:block;
}

/* Mobile */
@media(max-width:900px){
  .about-row{
    grid-template-columns:1fr;
    gap:50px;
  }
}





/* ================= HOTELS PREMIUM SECTION ================= */
.hotels-premium {
    padding: 100px 5%;
    background: var(--bg-dark);
}

.hotels-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.hotels-header {
    text-align: center;
    margin-bottom: 60px;
}
.hotels-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}
.hotels-title {
    font-family: 'Clash Display';
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text-dark);
    margin-bottom: 15px;
}
.hotels-desc {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
}
[data-theme="light"] .hotels-desc { color: rgba(0,0,0,0.6); }

/* GRID LAYOUT (2 Rows, 3 Cols) */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ================= HOTEL CARD DESIGN ================= */
.hotel-card {
    background: var(--glass-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px; /* Curvy Box */
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
[data-theme="light"] .hotel-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Card Image */
.card-img-box {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.hotel-card:hover .card-img-box img {
    transform: scale(1.1);
}
.card-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Card Content */
.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-title {
    font-family: 'Clash Display';
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}
.card-loc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
[data-theme="light"] .card-loc { color: rgba(0,0,0,0.5); }

/* Buttons */
.card-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}
.btn-view, .btn-book {
    flex: 1;
    padding: 12px 0;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    text-align: center;
}
.btn-view {
    background: rgba(255,255,255,0.1);
    color: var(--text-dark);
}
.btn-view:hover { background: rgba(255,255,255,0.2); }
[data-theme="light"] .btn-view { background: rgba(0,0,0,0.05); }

.btn-book {
    background: var(--gold-grad);
    color: #000;
}
.btn-book:hover { filter: brightness(1.1); }


/* ================= MODAL STYLES (Ultra Premium) ================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(5, 5, 5, 0.3);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Slides up from bottom */
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-scroll-container {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding-top: 80px; /* Space for close button */
    scroll-behavior: smooth;
}

/* Close Button Floating */
.modal-close-wrapper {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 5002;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: var(--text-dark);
}
.modal-close-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: 0.3s;
}
.modal-close-wrapper:hover .modal-close-btn { transform: rotate(90deg) scale(1.1); }

/* Modal Content Box */
.modal-content {
    background: var(--bg-dark);
    min-height: 100vh;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -20px 80px rgba(0,0,0,0.6);
    padding: 60px;
    transform: translateY(100px);
    transition: 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.05);
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* 1. SPLIT VIEW */
.modal-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
}
.modal-image-wrapper {
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.modal-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.modal-details { display: flex; flex-direction: column; justify-content: center; }

.modal-title { font-size: 3.5rem; font-family: 'Clash Display'; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.modal-location { font-size: 1.2rem; color: rgba(255,255,255,0.6); margin-bottom: 30px; display: block; }
.modal-desc { font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 30px; }
.modal-amenities { display: flex; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.modal-amenities span { 
    background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 20px; font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.1); 
}

.modal-price-box {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
}
.book-btn-lg {
    padding: 18px 40px;
    background: var(--gold-grad);
    color: #000;
    border: none;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.book-btn-lg:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3); }

/* 2. RELATED & GALLERY */
.modal-sec-title { font-family: 'Clash Display'; font-size: 2rem; margin-bottom: 40px; color: var(--text-dark); }
.gold-txt { color: var(--gold); }

/* Related Grid (Horizontal for style) */
.related-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 100px;
}

/* Gallery Grid */
.modal-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }

/* Responsive */
@media (max-width: 1024px) {
    .hotels-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-split { grid-template-columns: 1fr; gap: 40px; }
    .modal-image-wrapper { height: 350px; }
}
@media (max-width: 768px) {
    .hotels-grid { grid-template-columns: 1fr; }
    .related-slider, .modal-gallery { grid-template-columns: 1fr; }
    .modal-content { padding: 30px 20px; }
    .modal-title { font-size: 2.5rem; }
    .modal-price-box { flex-direction: column; gap: 20px; align-items: flex-start; }
    .book-btn-lg { width: 100%; }
}
/* ================= HOTEL CARD ALIGNMENT FIX ================= */
/* ================= HOTEL CARD FIX ================= */
.hotel-card {
    background: var(--glass-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    overflow: hidden;
    
    /* FIX: 'all' hata diya taaki GSAP opacity control kar sake */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.5s ease, 
                border-color 0.5s ease; 

    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    
    /* Ensure opacity is 1 by default (GSAP handles the rest) */
    opacity: 1; 
}

/* Card Image Aspect Ratio Fix */
.card-img-box {
    height: 280px; /* Fixed height for perfect alignment */
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* ================= LIGHT MODE VISIBILITY FIXES ================= */
[data-theme="light"] .hotel-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

[data-theme="light"] .hotels-title,
[data-theme="light"] .card-title,
[data-theme="light"] .modal-title, 
[data-theme="light"] .modal-sec-title {
    color: #000;
}

[data-theme="light"] .card-loc,
[data-theme="light"] .modal-location,
[data-theme="light"] .modal-desc {
    color: rgba(0, 0, 0, 0.75);
}

[data-theme="light"] .modal-content {
    background: #f8f8f8; /* Soft white for modal */
    border: 1px solid rgba(0,0,0,0.05);
}

[data-theme="light"] .modal-amenities span {
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    color: #333;
}

[data-theme="light"] .modal-close-wrapper {
    color: #000;
}

[data-theme="light"] .price-label,
[data-theme="light"] .price-night {
    color: rgba(0,0,0,0.6);
}

[data-theme="light"] .price-val {
    color: #000;
}

/* ================= BUTTON ATTENTION ANIMATIONS ================= */
/* Shine & Pulse Effect for Booking Button */
.book-btn-lg {
    padding: 20px 50px;
    background: var(--gold-grad);
    color: #000;
    border: none;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: goldPulse 2s infinite;
}

@keyframes goldPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Shine Sweep */
.book-btn-lg::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: 0.5s;
    animation: shineSweep 3s infinite ease-in-out;
}

@keyframes shineSweep {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* ================= AMENITY ICONS ANIMATION ================= */
.modal-amenities span {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.modal-amenities span i {
    font-size: 1.2rem;
    color: var(--gold);
    display: inline-block;
    /* Floating Animation */
    animation: iconFloat 3s ease-in-out infinite;
}

/* Stagger animations for different icons */
.modal-amenities span:nth-child(1) i { animation-delay: 0s; }
.modal-amenities span:nth-child(2) i { animation-delay: 0.5s; }
.modal-amenities span:nth-child(3) i { animation-delay: 1s; }
.modal-amenities span:nth-child(4) i { animation-delay: 1.5s; }

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.modal-amenities span:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-3px);
}



/* ================= FACILITIES : MOSAIC PREMIUM ================= */
.facilities-premium {
    padding: 120px 5%;
    background: var(--bg-dark);
    position: relative;
}

.fac-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Styling */
.fac-header { text-align: center; margin-bottom: 70px; }
.fac-eyebrow { font-size: 0.8rem; letter-spacing: 6px; color: var(--gold); display: block; margin-bottom: 10px; font-weight: 600; }
.fac-title { font-family: 'Clash Display'; font-size: clamp(2.5rem, 5vw, 4rem); color: var(--text-dark); margin-bottom: 10px; }
.fac-desc { font-size: 1.1rem; color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; }
[data-theme="light"] .fac-desc { color: rgba(0,0,0,0.6); }

/* --- MOSAIC GRID (4 Column Logic) --- */
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns base */
    gap: 25px;
}

/* Card Base */
.bento-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 320px; /* Fixed elegant height */
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.08);
    background: #000;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* SPAN LOGIC (To make grid interesting) */
.span-wide { grid-column: span 2; } /* Takes 2 columns */

/* Background Image */
.bento-bg {
    position: absolute; inset: 0;
    transition: transform 0.8s ease;
}
.bento-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }

/* Overlay Gradient */
.bento-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 10%, rgba(0,0,0,0.2) 60%, transparent 100%);
    opacity: 0.9;
    z-index: 1;
    transition: 0.4s;
}

/* Content Layer */
.bento-content {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 30px;
    z-index: 2;
    transform: translateY(10px);
    transition: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Icon Box */
.bento-icon {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    transition: 0.4s;
}

.bento-content h3 {
    font-family: 'Clash Display';
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.bento-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    opacity: 0; /* Hidden by default */
    transform: translateY(20px);
    transition: 0.5s ease;
    max-width: 95%;
    line-height: 1.6;
}

/* --- HOVER EFFECTS (ULTRA PREMIUM) --- */
.bento-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.bento-card:hover .bento-bg { transform: scale(1.1); } /* Zoom Image */

.bento-card:hover .bento-content { transform: translateY(0); } /* Slide Up Content */

.bento-card:hover .bento-content p {
    opacity: 1;
    transform: translateY(0); /* Reveal Text */
}

.bento-card:hover .bento-icon {
    background: var(--gold);
    color: #000;
    transform: scale(1.1) rotate(10deg);
}

/* --- RESPONSIVE LAYOUT --- */
@media (max-width: 1024px) {
    .mosaic-grid { grid-template-columns: repeat(2, 1fr); }
    /* On tablet, 'span-wide' will take full width or fit naturally in 2 cols */
}

@media (max-width: 600px) {
    .mosaic-grid { grid-template-columns: 1fr; }
    .span-wide { grid-column: span 1; }
    .bento-card { height: 280px; }
    .fac-title { font-size: 10vw; }
}

/* Light Mode Override */
[data-theme="light"] .bento-card { border-color: rgba(0,0,0,0.1); }



/* ================= TESTIMONIALS : ULTRA MARQUEE ================= */
.testimonials-ultra {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden; /* Hides the scroll overflow */
}

/* Ambient Glow Blobs */
.testi-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}
.glow-1 { top: -10%; left: -10%; background: var(--gold); }
.glow-2 { bottom: -10%; right: -10%; background: #ffffff; }

[data-theme="light"] .glow-1 { opacity: 0.08; }
[data-theme="light"] .glow-2 { opacity: 0.05; background: #000; }

/* Header */
.testi-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
    padding: 0 20px;
}
.testi-eyebrow {
    font-size: 0.8rem; letter-spacing: 6px; color: var(--gold);
    display: block; margin-bottom: 15px; font-weight: 600; text-transform: uppercase;
}
.testi-title {
    font-family: 'Clash Display';
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--text-dark);
    margin-bottom: 15px;
}
.testi-desc {
    font-size: 1.1rem; color: rgba(255,255,255,0.6);
}
[data-theme="light"] .testi-desc { color: rgba(0,0,0,0.6); }

/* Marquee Container */
.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* The Track */
.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content; /* Allows content to stretch infinitely */
    will-change: transform; /* Performance optimization */
}

/* ================= THE CARD ================= */
.testi-card {
    width: 450px; /* Wide premium look */
    background: var(--glass-dark);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

/* Light Mode Card */
[data-theme="light"] .testi-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* Hover Effect */
.testi-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
[data-theme="light"] .testi-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Quote Icon BG */
.testi-card::before {
    content: '"';
    position: absolute;
    top: 10px; right: 30px;
    font-family: 'Clash Display';
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.1;
    line-height: 1;
    pointer-events: none;
}

/* User Profile */
.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}
.user-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    padding: 3px; /* Gap effect */
}
.user-info h4 {
    font-family: 'Clash Display';
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.user-info span {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Review Text */
.testi-txt {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}
[data-theme="light"] .testi-txt { color: rgba(0,0,0,0.75); }

/* Stars */
.testi-stars {
    color: var(--gold);
    font-size: 1rem;
    display: flex;
    gap: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .testi-card { width: 320px; padding: 25px; }
    .user-avatar { width: 50px; height: 50px; }
    .testi-title { font-size: 3rem; }
}



/* ================= FOOTER : ULTRA PREMIUM ================= */
.footer-premium {
    position: relative;
    background: #000; /* Deepest Black */
    color: #fff;
    padding: 100px 5% 40px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* Clean clipping */
}

/* Light Mode Footer */
[data-theme="light"] .footer-premium {
    background: #f0f0f0;
    color: #1d1d1f;
}

/* 1. MASSIVE BACKGROUND TEXT */
.footer-bg-text {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Clash Display';
    font-weight: 700;
    font-size: 25vw; /* Massive Size */
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    line-height: 0.8;
}
[data-theme="light"] .footer-bg-text {
    color: rgba(0, 0, 0, 0.03);
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* 2. TOP SECTION (CTA) */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-eyebrow {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: block;
}

.footer-heading {
    font-family: 'Clash Display';
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
}

.gold-italic {
    font-family: 'General Sans';
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

/* Newsletter Input */
.footer-newsletter {
    width: 100%;
    max-width: 400px;
}
.footer-newsletter p {
    margin-bottom: 20px;
    opacity: 0.7;
}

.newsletter-form {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    transition: 0.3s;
}
[data-theme="light"] .newsletter-form { border-color: rgba(0,0,0,0.2); }

.newsletter-form:focus-within {
    border-color: var(--gold);
}

.newsletter-form input {
    background: none;
    border: none;
    color: #fff;
    width: 100%;
    font-size: 1.1rem;
    outline: none;
}
[data-theme="light"] .newsletter-form input { color: #000; }

.newsletter-form button {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}
.newsletter-form button:hover {
    transform: translateX(5px) scale(1.1);
}

/* Divider */
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    width: 100%;
    margin-bottom: 60px;
}
[data-theme="light"] .footer-divider { background: rgba(0,0,0,0.1); }

/* 3. LINKS GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.col-title {
    font-family: 'Clash Display';
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.5;
}

.footer-links {
    list-style: none;
}
.footer-links li { margin-bottom: 15px; }

.footer-links a, .footer-link {
    text-decoration: none;
    color: inherit;
    font-size: 1.05rem;
    position: relative;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0%; height: 1px;
    background: var(--gold);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-links a:hover { color: var(--gold); }
.footer-links a:hover::after { width: 100%; }

/* Address Styling */
.footer-address {
    font-style: normal;
    line-height: 1.6;
    opacity: 0.8;
}

/* Social Buttons (Pill Shape) */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.social-btn {
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    font-size: 0.9rem;
}
[data-theme="light"] .social-btn { border-color: rgba(0,0,0,0.15); }

.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    padding-left: 25px; /* Slight slide effect */
}

/* 4. BOTTOM BAR */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.6;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}
[data-theme="light"] .footer-bottom { border-color: rgba(0,0,0,0.1); }

.heart-beat { color: red; animation: beat 1s infinite; display: inline-block;}
@keyframes beat { 0%,100%{transform:scale(1);} 50%{transform:scale(1.2);} }

.gold-link { color: var(--gold); text-decoration: none; font-weight: 600; }

/* Back to Top Button */
.back-to-top {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--glass-light);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}
.back-to-top:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .brand-col { grid-column: span 2; margin-bottom: 20px; }
}

@media (max-width: 600px) {
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; }
    .brand-col { grid-column: span 1; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-heading { font-size: 3rem; }
    .footer-bg-text { font-size: 35vw; bottom: 0; opacity: 0.05;}
}



/* ================= ABOUT PAGE SPECIFIC ================= */

/* --- AB HERO --- */
.ab-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ab-hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.ab-hero-bg video {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.6;
}
.ab-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.3), rgba(5,5,5,1));
}

.ab-hero-content {
    position: relative; z-index: 2; padding: 0 20px;
    transform: translateY(30px); opacity: 0; /* JS handles reveal */
}

.ab-eyebrow {
    display: block; font-size: 0.8rem; letter-spacing: 8px; color: var(--gold); margin-bottom: 20px;
    text-transform: uppercase;
}

.ab-title {
    font-family: 'Clash Display'; font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1; text-transform: uppercase; margin-bottom: 30px;
    color: #fff;
}

.hollow-text {
    -webkit-text-stroke: 1px rgba(255,255,255,0.8);
    color: transparent;
}
[data-theme="light"] .hollow-text { -webkit-text-stroke: 1px rgba(0,0,0,0.8); }

.ab-desc {
    font-size: 1.2rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; line-height: 1.6;
}
[data-theme="light"] .ab-desc { color: rgba(0,0,0,0.7); }

.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
    opacity: 0.6;
}
.scroll-indicator .line {
    width: 1px; height: 60px; background: var(--gold);
}

/* --- ORIGIN SECTION --- */
.ab-origin { padding: 150px 0; background: var(--bg-dark); }
.ab-container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }

.origin-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.media-frame {
    position: relative; border-radius: 40px; overflow: hidden;
    height: 600px; width: 100%;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: scale 1.5s ease; }
.media-frame:hover img { scale: 1.1; }

.floating-badge {
    position: absolute; bottom: 40px; right: -20px;
    background: var(--glass-dark); backdrop-filter: blur(20px);
    border: 1px solid var(--gold);
    padding: 20px 30px; border-radius: 20px;
    display: flex; flex-direction: column; text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.floating-badge strong { font-family: 'Clash Display'; font-size: 2rem; color: var(--gold); }

.ab-sec-eyebrow { font-size: 0.8rem; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 10px; }
.ab-sec-title { font-family: 'Clash Display'; font-size: 3.5rem; line-height: 1.1; margin-bottom: 30px; }
.gold-text { color: var(--gold); }
.ab-para { font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
[data-theme="light"] .ab-para { color: rgba(0,0,0,0.7); }

.sign-font { font-family: 'Comforter Brush', cursive; font-size: 2.5rem; color: var(--gold); margin-top: 20px; display: block; opacity: 0.8; }

/* --- VALUES (GLASS CARDS) --- */
.ab-values { padding: 100px 0; background: var(--bg-dark); }
.center-txt { text-align: center; margin-bottom: 60px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.val-card {
    background: var(--glass-dark); border: 1px solid rgba(255,255,255,0.08);
    padding: 40px; border-radius: 30px; position: relative; overflow: hidden;
    transition: 0.5s cubic-bezier(0.2,1,0.3,1);
}
[data-theme="light"] .val-card { background: #fff; border-color: rgba(0,0,0,0.1); }

.val-num { font-size: 4rem; font-family: 'Clash Display'; color: rgba(255,255,255,0.05); position: absolute; top: 20px; right: 30px; }
[data-theme="light"] .val-num { color: rgba(0,0,0,0.05); }

.val-card h3 { font-family: 'Clash Display'; font-size: 1.8rem; margin-bottom: 15px; position: relative; z-index: 2; }
.val-card p { color: rgba(255,255,255,0.6); line-height: 1.6; position: relative; z-index: 2; }
[data-theme="light"] .val-card p { color: rgba(0,0,0,0.6); }

.val-glow {
    position: absolute; width: 100px; height: 100px; background: var(--gold);
    filter: blur(80px); opacity: 0; bottom: -20px; left: -20px; transition: 0.5s;
}

.val-card:hover { transform: translateY(-15px); border-color: var(--gold); }
.val-card:hover .val-glow { opacity: 0.4; }

/* --- TEAM --- */
.ab-team { padding: 120px 0; overflow: hidden; }
.team-header { text-align: center; margin-bottom: 70px; }
.team-track { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }

.team-card {
    width: 300px; height: 420px; position: relative; border-radius: 200px 200px 30px 30px;
    overflow: hidden; cursor: pointer; transition: 0.5s;
}
.team-img { width: 100%; height: 100%; position: relative; }
.team-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: 0.5s; }
.team-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, #000 10%, transparent); opacity: 0.8;
}

.team-info {
    position: absolute; bottom: 30px; left: 0; width: 100%; text-align: center;
    transform: translateY(20px); opacity: 0; transition: 0.5s;
}
.team-info h3 { font-family: 'Clash Display'; font-size: 1.5rem; color: #fff; margin-bottom: 5px; }
.team-info span { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }

.team-card:hover { transform: scale(1.05); }
.team-card:hover img { filter: grayscale(0%); }
.team-card:hover .team-info { transform: translateY(0); opacity: 1; }
.active-card img { filter: grayscale(0%); }
.active-card .team-info { transform: translateY(0); opacity: 1; }


/* --- TIMELINE --- */
.ab-timeline { padding: 100px 0; background: #000; border-top: 1px solid rgba(255,255,255,0.1); }
[data-theme="light"] .ab-timeline { background: #f5f5f7; border-top: 1px solid rgba(0,0,0,0.1); }

.time-track-wrapper { overflow-x: auto; padding-bottom: 40px; }
.time-track { display: flex; align-items: center; justify-content: center; min-width: max-content; padding: 0 50px; }

.time-node { text-align: center; width: 200px; position: relative; opacity: 0.5; transition: 0.5s; }
.time-node:hover, .gold-node { opacity: 1; transform: scale(1.1); }

.time-node .year { font-size: 3rem; font-family: 'Clash Display'; color: rgba(255,255,255,0.1); display: block; margin-bottom: 10px; font-weight: 700; }
[data-theme="light"] .time-node .year { color: rgba(0,0,0,0.1); }

.gold-node .year { color: var(--gold); opacity: 0.4; }

.time-node h4 { color: #fff; margin-bottom: 5px; font-size: 1.2rem; }
[data-theme="light"] .time-node h4 { color: #000; }
.time-node p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.time-line-connect {
    width: 100px; height: 1px; background: rgba(255,255,255,0.1); margin: 0 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .origin-grid { grid-template-columns: 1fr; gap: 40px; }
    .media-frame { height: 400px; }
    .values-grid { grid-template-columns: 1fr; }
    .ab-title { font-size: 3.5rem; }
    .team-track { gap: 20px; }
}


/* ================= SERVICE PAGE STYLES ================= */

/* --- SERVICE HERO --- */
.srv-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 50px;
}

.srv-hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.srv-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.srv-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.4), var(--bg-dark));
}

.srv-hero-content {
    position: relative; z-index: 2; padding: 0 20px;
    margin-top: 50px;
}

.srv-eyebrow {
    font-size: 0.8rem; letter-spacing: 6px; color: var(--gold);
    text-transform: uppercase; display: block; margin-bottom: 20px;
}

.srv-title {
    font-family: 'Clash Display'; font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1; margin-bottom: 25px; color: var(--text-dark);
}

.srv-desc {
    font-size: 1.1rem; color: rgba(255,255,255,0.7);
    max-width: 600px; margin: 0 auto; line-height: 1.6;
}
[data-theme="light"] .srv-desc { color: rgba(0,0,0,0.7); }

/* --- MAIN SERVICES LIST --- */
.main-services { padding: 100px 0; background: var(--bg-dark); }
.srv-container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }

.sec-header { margin-bottom: 80px; }
.sec-title { font-family: 'Clash Display'; font-size: 3rem; margin: 10px 0; }
.gold-text { color: var(--gold); }
.center-txt { text-align: center; }

.srv-list { display: flex; flex-direction: column; gap: 120px; }

.srv-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.srv-row.reverse { direction: rtl; } /* Swaps image/text side */
.srv-row.reverse .srv-text { direction: ltr; } /* Keeps text readable */

.srv-media {
    height: 500px; border-radius: 40px; overflow: hidden; position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.srv-media img { width: 100%; height: 100%; object-fit: cover; transition: 0.7s ease; }
.srv-media:hover img { transform: scale(1.1); }

.srv-text { padding: 20px; }
.srv-num {
    font-family: 'Clash Display'; font-size: 4rem; color: transparent;
    -webkit-text-stroke: 1px var(--gold); opacity: 0.3; margin-bottom: 10px;
}
.srv-text h3 {
    font-family: 'Clash Display'; font-size: 2.5rem; margin-bottom: 20px; color: var(--text-dark);
}
.srv-text p {
    font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 30px;
}
[data-theme="light"] .srv-text p { color: rgba(0,0,0,0.7); }

.srv-link {
    text-decoration: none; color: var(--gold); font-weight: 600; 
    font-size: 1.1rem; display: flex; align-items: center; gap: 10px; transition: 0.3s;
}
.srv-link:hover { gap: 15px; }

/* --- FACILITIES GRID --- */
.facilities-grid-sec { padding: 50px 0 150px; background: var(--bg-dark); }
.sec-desc { color: rgba(255,255,255,0.6); margin-top: 15px; }

.fac-grid-wrapper {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}

.fac-item {
    background: var(--glass-dark); border: 1px solid rgba(255,255,255,0.08);
    padding: 40px; border-radius: 24px; transition: 0.4s;
}
[data-theme="light"] .fac-item { background: #fff; border-color: rgba(0,0,0,0.1); }

.fac-icon {
    width: 60px; height: 60px; background: rgba(212, 175, 55, 0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.5rem; margin-bottom: 25px; transition: 0.4s;
}

.fac-item h4 {
    font-family: 'Clash Display'; font-size: 1.4rem; margin-bottom: 15px; color: var(--text-dark);
}

.fac-item p {
    font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.6);
}
[data-theme="light"] .fac-item p { color: rgba(0,0,0,0.6); }

/* Hover Effects */
.fac-item:hover {
    transform: translateY(-10px); border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.fac-item:hover .fac-icon {
    background: var(--gold); color: #000; transform: rotate(10deg);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .srv-row { grid-template-columns: 1fr; gap: 40px; }
    .srv-row.reverse { direction: ltr; } /* Reset direction on mobile */
    .srv-row.reverse .srv-text { direction: ltr; }
    .srv-media { height: 300px; }
    .fac-grid-wrapper { grid-template-columns: 1fr; }
}






/* ================= GALLERY PAGE STYLES (UPDATED) ================= */

/* --- HERO --- */
.gal-hero {
    position: relative; height: 60vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
}
.gal-bg-move { position: absolute; inset: 0; z-index: 0; }
.gal-bg-move img { 
    width: 100%; height: 100%; object-fit: cover; 
    animation: slowZoom 20s infinite alternate; 
}
@keyframes slowZoom { from{transform: scale(1);} to{transform: scale(1.15);} }

/* 1. DARKER OVERLAY FIX */
.gal-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8), var(--bg-dark));
    z-index: 1;
}

.gal-hero-content { position: relative; z-index: 2; margin-top: 60px; padding: 0 20px; }

/* 2. ANIMATED GRADIENT HEADING FIX */
.gal-title {
    font-family: 'Clash Display'; font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1; margin-bottom: 20px;
    
    /* Animation Code */
    background: linear-gradient(90deg, #ffffff, var(--gold), #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 4s linear infinite;
}
@keyframes shineText { to { background-position: 200% center; } }

/* Light Mode Override for Title */
[data-theme="light"] .gal-title {
    background: linear-gradient(90deg, #000000, #b8860b, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
}

.gal-eyebrow { 
    font-size: 0.8rem; letter-spacing: 6px; color: var(--gold); 
    display: block; margin-bottom: 15px; text-transform: uppercase; font-weight: 600;
}
.gal-desc { 
    font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 550px; margin: 0 auto; 
}
[data-theme="light"] .gal-desc { color: rgba(0,0,0,0.7); }

/* --- FILTER TABS --- */
.gallery-ui { padding: 80px 0 150px; background: var(--bg-dark); min-height: 100vh; }
.gal-container { max-width: 1400px; margin: 0 auto; padding: 0 4%; }
.gal-tabs { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 60px; }
.filter-btn {
    background: transparent; border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-dark); padding: 10px 25px; border-radius: 50px;
    cursor: pointer; transition: 0.3s; font-family: 'General Sans', sans-serif;
}
[data-theme="light"] .filter-btn { border-color: rgba(0,0,0,0.2); }
.filter-btn:hover, .filter-btn.active {
    background: var(--gold); border-color: var(--gold); color: #000;
}

/* --- MASONRY GRID --- */
.gal-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px; gap: 20px;
}
.gal-item {
    position: relative; border-radius: 20px; overflow: hidden;
    cursor: pointer; opacity: 1; transform: scale(1);
    transition: 0.4s ease; border: 1px solid rgba(255,255,255,0.1);
}
[data-theme="light"] .gal-item { border-color: rgba(0,0,0,0.1); }

.gal-item.wide { grid-column: span 2; }
.gal-item.tall { grid-row: span 2; }
.gal-img-box { width: 100%; height: 100%; position: relative; }
.gal-img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.7s ease; }

/* Hover Overlay */
.gal-hover {
    position: absolute; inset: 0; background: rgba(0,0,0,0.6);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s; backdrop-filter: blur(4px);
}
.gal-hover i { font-size: 2rem; color: var(--gold); transform: translateY(20px); transition: 0.4s; }
.gal-hover span { color: #fff; transform: translateY(20px); transition: 0.4s; font-family: 'Clash Display'; margin-top: 10px; }
.gal-item:hover .gal-hover { opacity: 1; }
.gal-item:hover img { transform: scale(1.1); }
.gal-item:hover .gal-hover i, .gal-item:hover .gal-hover span { transform: translateY(0); }

.gal-footer-note { text-align: center; margin-top: 60px; opacity: 0.6; font-style: italic; }

/* --- LIGHTBOX (FIXED FULL SCREEN - Z-INDEX FIX) --- */
.lightbox-modal {
    position: fixed; inset: 0; 
    z-index: 99999999 !important; /* Force Highest Priority */
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.96); /* Pitch Black BG */
    backdrop-filter: blur(10px);
    opacity: 0; visibility: hidden; transition: 0.3s ease;
}
.lightbox-modal.active { opacity: 1; visibility: visible; }

.lb-content {
    position: relative; z-index: 10; max-width: 90vw; max-height: 85vh;
    display: flex; flex-direction: column; align-items: center;
}
.lb-content img {
    max-width: 100%; max-height: 80vh; border-radius: 8px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    transform: scale(0.9); transition: 0.3s cubic-bezier(0.2,1,0.3,1);
}
.lightbox-modal.active img { transform: scale(1); }

.lb-caption { margin-top: 20px; text-align: center; color: #fff; }
.lb-caption h3 { color: var(--gold); font-family: 'Clash Display'; font-size: 1.5rem; margin: 0; }
.lb-caption span { opacity: 0.6; font-size: 0.9rem; }

/* Buttons */
.lb-close, .lb-nav {
    position: absolute; z-index: 20; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2); color: #fff; cursor: pointer;
    transition: 0.3s; display: flex; align-items: center; justify-content: center;
}
.lb-close { top: 30px; right: 30px; width: 50px; height: 50px; border-radius: 50%; font-size: 1.5rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 60px; height: 60px; border-radius: 50%; font-size: 2rem; }
.lb-nav.prev { left: 30px; }
.lb-nav.next { right: 30px; }

.lb-close:hover, .lb-nav:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* Responsive Grid */
@media (max-width: 900px) {
    .gal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
    .gal-item.wide, .gal-item.tall { grid-column: span 1; grid-row: span 1; }
    .lb-nav { width: 40px; height: 40px; font-size: 1.2rem; }
    .lb-nav.prev { left: 10px; }
    .lb-nav.next { right: 10px; }
    .lb-close { top: 20px; right: 20px; }
}

/* ================= CONTACT PAGE SPECIFIC STYLES ================= */

/* --- GLOBAL VARS & UTILS --- */
:root {
    --gold: #D4AF37;
    --gold-grad: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --bg-main: #050505;
    --text-main: #ffffff;
    --text-sec: rgba(255, 255, 255, 0.6);
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(20, 20, 20, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --map-filter: grayscale(100%) invert(92%) contrast(83%);
    --container: 1300px;
}

[data-theme="light"] {
    --bg-main: #F4F4F6;
    --text-main: #1d1d1f;
    --text-sec: rgba(0, 0, 0, 0.65);
    --border: rgba(0, 0, 0, 0.1);
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
    --map-filter: grayscale(20%) sepia(20%) contrast(90%);
}

.noise-overlay {
    position: fixed; inset: 0; pointer-events: none; z-index: 9000;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMDAlJyBoZWlnaHQ9JzIwMCUnPjxmaWx0ZXIgaWQ9J25vaXNlJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC42NScgbnVtT2N0YXZlcz0nMScgc3RpdGNoVGlsZXM9J3N0aXRjaCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCNub2lzZSknIG9wYWNpdHk9JzAuMDUnLz48L3N2Zz4=');
    opacity: 0.05;
}

/* --- 1. HERO SECTION --- */
.cnt-hero {
    height: 90vh; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.cnt-video-wrapper { position: absolute; inset: 0; z-index: 0; }
.parallax-video { width: 100%; height: 120%; object-fit: cover; }
.cnt-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, var(--bg-main), rgba(0,0,0,0.3)); z-index: 1;
}

.cnt-content { position: relative; z-index: 2; text-align: center; margin-top: 60px; }
.cnt-subtitle { font-size: 0.8rem; letter-spacing: 6px; color: var(--gold); display: block; margin-bottom: 15px; text-transform: uppercase; }
.cnt-title { 
    font-family: 'Clash Display'; font-size: 7vw; line-height: 0.9; 
    color: #fff; text-transform: uppercase; mix-blend-mode: overlay; opacity: 0.9; 
}
.reveal-line { overflow: hidden; }
.reveal-line span { display: block; transform: translateY(100%); }
.gold-italic { font-family: 'General Sans'; font-style: italic; color: var(--gold); }

/* Scroll Badge */
.scroll-badge {
    position: absolute; bottom: 40px; right: 40px; width: 120px; height: 120px;
    display: flex; align-items: center; justify-content: center; z-index: 5;
}
.scroll-badge svg { position: absolute; width: 100%; height: 100%; animation: rotate 10s linear infinite; }
.scroll-badge text { fill: #fff; font-size: 14px; letter-spacing: 2px; }
.scroll-badge i { font-size: 1.5rem; color: var(--gold); }
@keyframes rotate { to { transform: rotate(360deg); } }

/* --- 2. INTERFACE (FORM + INFO) --- */
.cnt-interface { padding: 120px 0; background: var(--bg-main); position: relative; z-index: 2; }
.cnt-container { max-width: var(--container); margin: 0 auto; padding: 0 5%; }
.cnt-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; }

/* Form */
.sec-title { font-family: 'Clash Display'; font-size: 3rem; margin-bottom: 10px; color: var(--text-main); }
.sec-desc { color: var(--text-sec); font-size: 1.1rem; margin-bottom: 50px; }

.royal-form { display: flex; flex-direction: column; gap: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.input-group { position: relative; margin-top: 10px; }

.input-group input, .input-group textarea, .input-group select {
    width: 100%; background: none; border: none; outline: none;
    border-bottom: 1px solid var(--border); padding: 15px 0;
    font-size: 1.2rem; color: var(--text-main); font-family: 'General Sans';
    transition: 0.3s;
}
.input-group label {
    position: absolute; left: 0; top: 15px; color: var(--text-sec); 
    pointer-events: none; transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.input-line {
    position: absolute; bottom: 0; left: 0; width: 0; height: 1px; 
    background: var(--gold); transition: 0.5s ease;
}

/* Form Focus State */
.input-group input:focus ~ .input-line, 
.input-group textarea:focus ~ .input-line, 
.input-group select:focus ~ .input-line { width: 100%; }

.input-group input:focus ~ label, 
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label, 
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -15px; font-size: 0.8rem; color: var(--gold); letter-spacing: 1px;
}
select option { background: var(--bg-main); color: var(--text-main); }

/* Magnetic Submit Button */
.submit-btn {
    margin-top: 30px; display: inline-flex; align-items: center; gap: 20px;
    background: none; border: none; cursor: pointer; padding: 0;
}
.btn-circle {
    width: 60px; height: 60px; border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; 
    transition: 0.4s; color: var(--gold); font-size: 1.5rem;
}
.btn-text { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-sec); transition: 0.3s; }

.submit-btn:hover .btn-circle { background: var(--gold); border-color: var(--gold); color: #000; transform: scale(1.1); }
.submit-btn:hover .btn-text { transform: translateX(10px); color: var(--text-main); }

/* Sticky Info Card */
.info-side { position: relative; }
.glass-card {
    position: sticky; top: 120px;
    background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border);
    padding: 50px; border-radius: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.card-label { font-size: 0.7rem; letter-spacing: 3px; color: var(--gold); display: block; margin-bottom: 10px; }
.card-title { font-family: 'Clash Display'; font-size: 2.5rem; margin-bottom: 40px; color: var(--text-main); }

.info-item { display: flex; gap: 20px; margin-bottom: 30px; align-items: flex-start; }
.icon-box {
    width: 45px; height: 45px; border-radius: 50%; background: rgba(212,175,55,0.1);
    display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; flex-shrink: 0;
}
.info-item h4 { font-size: 0.9rem; opacity: 0.6; text-transform: uppercase; margin-bottom: 5px; color: var(--text-main); }
.info-item p, .info-item a { color: var(--text-main); text-decoration: none; font-size: 1.1rem; line-height: 1.4; }
.hover-gold:hover { color: var(--gold); }

.social-row { display: flex; gap: 15px; margin-top: 40px; }
.social-icon {
    width: 50px; height: 50px; border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--text-main); 
    text-decoration: none; transition: 0.3s; font-size: 1.2rem;
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: #000; }

/* --- 3. MAP SECTION --- */
.cnt-map { position: relative; height: 600px; width: 100%; overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: var(--map-filter); transition: filter 0.5s ease; }
.map-overlay-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    pointer-events: none; z-index: 2; mix-blend-mode: difference;
}
.map-overlay-text h2 {
    font-family: 'Clash Display'; font-size: 12vw; color: #fff; opacity: 0.6; line-height: 0.8;
}
.stroke-text { -webkit-text-stroke: 2px var(--gold); color: transparent; }

/* --- 4. FAQ SECTION --- */
.cnt-faq { padding: 100px 0; background: var(--bg-main); }
.faq-container { max-width: 900px; margin: 0 auto; padding: 0 5%; }
.center-text { text-align: center; margin-bottom: 60px; }

.faq-item { border-bottom: 1px solid var(--border); padding: 25px 0; cursor: pointer; }
.faq-head { display: flex; justify-content: space-between; align-items: center; }
.faq-head h3 { font-size: 1.3rem; color: var(--text-main); transition: 0.3s; font-weight: 500; }
.faq-icon { color: var(--gold); font-size: 1.5rem; transition: 0.3s; }

.faq-body { height: 0; overflow: hidden; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-body p { padding-top: 15px; color: var(--text-sec); line-height: 1.6; font-size: 1.1rem; }

/* Active FAQ */
.faq-item.active .faq-head h3 { color: var(--gold); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-body { height: auto; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .cnt-grid { grid-template-columns: 1fr; }
    .glass-card { position: relative; top: 0; margin-top: 50px; }
    .cnt-title { font-size: 13vw; }
    .map-overlay-text h2 { font-size: 18vw; }
    .form-row { grid-template-columns: 1fr; }
}
.book-btn:link,
.book-btn:visited{
    text-decoration: none;
}
.icon-avatar{
    width:56px;
    height:56px;
    border-radius:50%;
    background:radial-gradient(circle at top,#2a2a2a,#000);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 0 15px rgba(201,162,77,.35);
}

.icon-avatar i{
    font-size:24px;
    color:#c9a24d;
}
