/* ═══════════════════════════════════════════════════════════════
   LYMA Developers  ·  Brand v5  ·  Modern Gamified  2025
   Fresh palette, no logo dependency, full gamification
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  /* Palette — completely independent of logo */
  --blue:        #2563eb;   /* confident, modern primary */
  --blue-d:      #1d4ed8;
  --blue-l:      #eff6ff;
  --orange:      #f97316;   /* energetic CTA punch */
  --orange-d:    #ea6808;
  --gold:        #eab308;   /* achievement / gamification */
  --gold-d:      #a16207;
  --emerald:     #16a34a;   /* available plots */
  --rose:        #dc2626;   /* sold / danger */
  --amber:       #d97706;   /* booked */
  --purple:      #7c3aed;   /* accent */
  --ink:         #050810;   /* hero / footer dark base */
  --ink-2:       #0e1526;
  --text:        #111827;
  --text-2:      #374151;
  --text-m:      #6b7280;
  --text-x:      #9ca3af;
  --surface:     #ffffff;
  --surface-2:   #f9fafb;
  --surface-3:   #f3f4f6;
  --border:      #e5e7eb;
  --border-soft: #f3f4f6;

  /* Gradients */
  --g-blue:    linear-gradient(135deg,#2563eb,#1d4ed8);
  --g-orange:  linear-gradient(135deg,#f97316,#ea6808);
  --g-gold:    linear-gradient(135deg,#eab308,#ca8a04);
  --g-dark:    linear-gradient(135deg,#050810 0%,#0e1526 50%,#122040 100%);
  --g-hero:    linear-gradient(135deg,#030508 0%,#0a1220 40%,#0f1e38 100%);

  /* Shadows */
  --s-xs:  0 1px 3px rgba(0,0,0,.06);
  --s-sm:  0 4px 16px rgba(0,0,0,.07);
  --s-md:  0 8px 32px rgba(0,0,0,.10);
  --s-lg:  0 20px 56px rgba(0,0,0,.14);
  --s-xl:  0 32px 80px rgba(0,0,0,.18);
  --s-blue:   0 8px 32px rgba(37,99,235,.30);
  --s-orange: 0 8px 32px rgba(249,115,22,.35);
  --s-gold:   0 8px 32px rgba(234,179,8,.35);

  /* Shape */
  --r-xs: 6px;   --r-sm: 10px;  --r: 14px;
  --r-lg: 20px;  --r-xl: 28px;  --r-full: 9999px;

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
}

/* ── RESET ───────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Poppins',system-ui,sans-serif;
  color:var(--text);
  background:var(--surface);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
p{color:var(--text-m);line-height:1.75;margin:0}

/* Utilities */
.py-80  {padding-top:80px;  padding-bottom:80px}
.py-100 {padding-top:100px; padding-bottom:100px}
.section-bg  {background:var(--surface-2)}
.bg-light    {background:var(--surface-2)!important}

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
.section-tag {
  display:inline-flex;align-items:center;gap:6px;
  font-size:.7rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:var(--blue);
  background:var(--blue-l);border:1px solid rgba(37,99,235,.18);
  padding:4px 12px;border-radius:var(--r-full);margin-bottom:14px;
}
.section-header{text-align:center}
.section-title {
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(1.9rem,4vw,3rem);font-weight:700;
  color:var(--text);line-height:1.15;margin-bottom:14px;
  letter-spacing:-.02em;
}
.section-sub{font-size:1.02rem;color:var(--text-m);max-width:580px;margin:0 auto;line-height:1.75}

/* Gradient text accent */
.txt-gradient{
  background:linear-gradient(135deg,var(--orange) 0%,var(--gold) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:'Poppins',sans-serif;font-weight:700;font-size:.9rem;
  border-radius:var(--r-sm);border:2px solid transparent;
  min-height:46px;padding:0 24px;cursor:pointer;white-space:nowrap;
  transition:transform .18s var(--ease),box-shadow .18s var(--ease),
             background .18s var(--ease),border-color .18s var(--ease);
  position:relative;overflow:hidden;
}
/* Ripple shine */
.btn::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(110deg,transparent 35%,rgba(255,255,255,.22) 50%,transparent 65%);
  transform:translateX(-100%);transition:transform .5s var(--ease);pointer-events:none;
}
.btn:hover{transform:translateY(-2px)}
.btn:hover::before{transform:translateX(100%)}
.btn:active{transform:translateY(0)}

.btn-primary{
  background:var(--g-blue);color:#fff!important;box-shadow:var(--s-blue);
}
.btn-primary:hover{box-shadow:0 12px 40px rgba(37,99,235,.45);background:linear-gradient(135deg,#1d4ed8,#1e40af)}

.btn-accent{
  background:var(--g-orange);color:#fff!important;box-shadow:var(--s-orange);
}
.btn-accent:hover{box-shadow:0 12px 40px rgba(249,115,22,.5)}

.btn-gold{
  background:var(--g-gold);color:var(--ink)!important;box-shadow:var(--s-gold);
}
.btn-gold:hover{box-shadow:0 12px 40px rgba(234,179,8,.55)}

.btn-warning{
  background:var(--gold);border-color:var(--gold);color:#fff;
  box-shadow:0 4px 18px rgba(234,179,8,.3);
}
.btn-warning:hover{background:var(--gold-d);border-color:var(--gold-d)}

.btn-outline-light{
  background:rgba(255,255,255,.09);border-color:rgba(255,255,255,.35);color:#fff;
}
.btn-outline-light:hover{background:rgba(255,255,255,.18);border-color:rgba(255,255,255,.55);color:#fff}

.btn-outline-primary{border-color:rgba(37,99,235,.35);color:var(--blue)}
.btn-outline-primary:hover{background:var(--blue);border-color:var(--blue);color:#fff!important}

.btn-success{background:linear-gradient(135deg,#25d366,#1ebe5a);color:#fff!important;border-color:transparent}
.btn-success:hover{box-shadow:0 8px 24px rgba(37,211,102,.45)}

.btn-light{background:#fff;color:var(--ink)!important;border-color:rgba(255,255,255,.8);box-shadow:var(--s-md)}
.btn-light:hover{background:#f1f5ff}

.btn-lg{min-height:52px;padding:0 32px;font-size:.95rem;border-radius:var(--r)}
.btn-sm{min-height:36px;padding:0 16px;font-size:.8rem;border-radius:var(--r-xs)}

/* WhatsApp nav button */
.btn-wa-nav{
  background:linear-gradient(135deg,#25d366,#20b858);color:#fff!important;
  padding:8px 16px;border-radius:var(--r-sm);font-size:.82rem;font-weight:700;
  border:none;box-shadow:0 4px 14px rgba(37,211,102,.3);
  display:inline-flex;align-items:center;gap:6px;
  transition:transform .18s var(--ease),box-shadow .18s var(--ease);
}
.btn-wa-nav:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(37,211,102,.45)}

/* Book-now nav button */
.btn-book-now{
  background:var(--g-orange);color:#fff!important;
  padding:8px 20px;border-radius:var(--r-sm);font-size:.82rem;font-weight:700;
  border:none;box-shadow:var(--s-orange);
  display:inline-flex;align-items:center;gap:6px;
  transition:transform .18s var(--ease),box-shadow .18s var(--ease);
}
.btn-book-now:hover{transform:translateY(-2px);box-shadow:0 10px 30px rgba(249,115,22,.5)}

/* ── NAVBAR ──────────────────────────────────────────────────── */
#mainNav{
  position:fixed;inset:auto 0 auto 0;z-index:1040;
  padding:16px 0;
  background:linear-gradient(180deg,rgba(5,8,16,.9) 0%,rgba(5,8,16,0) 100%);
  transition:background .3s var(--ease),padding .3s var(--ease),box-shadow .3s var(--ease);
}
#mainNav.scrolled{
  padding:9px 0;
  background:rgba(255,255,255,.97);
  box-shadow:0 4px 28px rgba(0,0,0,.10);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
}

/* Animated blue underline when scrolled */
#mainNav.scrolled::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,var(--blue),var(--orange),var(--gold));
}

/* Brand */
.navbar-brand{display:flex;align-items:center;gap:10px;padding:0}
.navbar-logo{height:46px;width:auto;max-width:150px;object-fit:contain;border-radius:4px;transition:height .3s var(--ease)}
#mainNav.scrolled .navbar-logo{height:38px}
.brand-name{font-size:1.1rem;font-weight:800;color:#fff;letter-spacing:.1px;line-height:1.2}
.brand-name span{color:var(--orange)}
.brand-tagline{font-size:.6rem;color:rgba(255,255,255,.4);letter-spacing:2px;text-transform:uppercase;font-weight:400}
#mainNav.scrolled .brand-name{color:var(--text)}
#mainNav.scrolled .brand-name span{color:var(--orange)}
#mainNav.scrolled .brand-tagline{color:var(--text-x)}

/* Nav links */
.navbar-nav .nav-link{
  color:rgba(255,255,255,.85)!important;
  font-size:.875rem;font-weight:600;
  padding:8px 13px!important;border-radius:var(--r-sm);
  transition:color .15s var(--ease),background .15s var(--ease);
  white-space:nowrap;position:relative;
}
.navbar-nav .nav-link:hover{color:#fff!important;background:rgba(255,255,255,.12)}
.navbar-nav .nav-link.active{color:#fff!important;background:rgba(255,255,255,.14)}
#mainNav.scrolled .navbar-nav .nav-link{color:var(--text-2)!important}
#mainNav.scrolled .navbar-nav .nav-link:hover{color:var(--blue)!important;background:var(--blue-l)}
#mainNav.scrolled .navbar-nav .nav-link.active{color:var(--blue)!important;background:var(--blue-l);font-weight:700}

/* active-page class (used in some pages) */
.navbar-nav .nav-link.active-page{color:var(--gold)!important;font-weight:700}
#mainNav.scrolled .navbar-nav .nav-link.active-page{color:var(--blue)!important;background:var(--blue-l)}

/* Dropdown */
.dropdown-menu,.dropdown-menu-dark{
  background:var(--surface)!important;
  border:1px solid var(--border)!important;
  border-radius:var(--r)!important;padding:8px!important;
  box-shadow:var(--s-lg)!important;margin-top:6px!important;
  animation:dropIn .2s var(--ease);
}
@keyframes dropIn{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:translateY(0)}}
.dropdown-item{
  color:var(--text-2)!important;border-radius:var(--r-xs);
  padding:9px 13px!important;font-weight:600;font-size:.875rem;
}
.dropdown-item:hover{background:var(--blue-l)!important;color:var(--blue)!important}

/* Nav right CTAs */
.nav-right-ctas{display:flex;align-items:center;gap:8px}

/* Toggler */
.navbar-toggler{border:1.5px solid rgba(255,255,255,.3);background:rgba(255,255,255,.08);border-radius:var(--r-sm);padding:6px 10px}
.navbar-toggler:focus{box-shadow:0 0 0 3px rgba(249,115,22,.3)}
#mainNav.scrolled .navbar-toggler{border-color:var(--border);background:var(--surface-2)}
.navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,.85)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}
#mainNav.scrolled .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(17,24,39,.8)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}

/* Mobile collapse */
@media(max-width:991.98px){
  #mainNav,#mainNav.scrolled{
    background:rgba(5,8,16,.97);padding:10px 0;border-bottom:1px solid rgba(255,255,255,.08);
  }
  #mainNav.scrolled{background:rgba(255,255,255,.98);border-bottom-color:var(--border)}
  #mainNav.scrolled::after{display:none}
  #navbarNav{
    background:rgba(5,8,16,.99);margin-top:10px;border-radius:var(--r);
    padding:14px;border:1px solid rgba(255,255,255,.08);box-shadow:var(--s-xl);
    animation:dropIn .22s var(--ease);
  }
  #mainNav.scrolled #navbarNav{background:#fff;border-color:var(--border)}
  .navbar-nav .nav-link,
  #mainNav.scrolled .navbar-nav .nav-link{color:rgba(255,255,255,.85)!important}
  #mainNav.scrolled .navbar-nav .nav-link{color:var(--text-2)!important}
  .nav-right-ctas{padding-top:12px;border-top:1px solid rgba(255,255,255,.1);justify-content:center}
  #mainNav.scrolled .nav-right-ctas{border-top-color:var(--border)}
}

/* ── FLOATING BUTTONS ────────────────────────────────────────── */
.wa-float{
  position:fixed;bottom:26px;right:22px;z-index:1035;
  width:56px;height:56px;border-radius:50%;
  background:linear-gradient(135deg,#25d366,#1ebe5a);
  color:#fff;font-size:1.55rem;
  display:inline-flex;align-items:center;justify-content:center;
  box-shadow:0 6px 28px rgba(37,211,102,.5);
  transition:transform .2s var(--ease),box-shadow .2s var(--ease);
  animation:waFloat 3s ease-in-out infinite;
}
.wa-float:hover{transform:scale(1.1);color:#fff;box-shadow:0 10px 36px rgba(37,211,102,.65)}
@keyframes waFloat{
  0%,100%{box-shadow:0 6px 28px rgba(37,211,102,.5)}
  50%    {box-shadow:0 10px 40px rgba(37,211,102,.75)}
}

.scroll-top-btn{
  position:fixed;bottom:94px;right:22px;z-index:1035;
  width:46px;height:46px;border-radius:50%;border:none;
  background:var(--ink-2);color:#fff;font-size:.85rem;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;
  box-shadow:var(--s-md);
  opacity:0;pointer-events:none;transform:translateY(8px);
  transition:opacity .2s var(--ease),transform .2s var(--ease);
}
.scroll-top-btn.visible{opacity:1;pointer-events:auto;transform:translateY(0)}
.scroll-top-btn:hover{background:var(--blue)}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero-section{
  position:relative;min-height:100vh;
  background:var(--g-hero);background-size:cover;background-position:center;
  color:#fff;overflow:hidden;
  display:flex;align-items:center;
}

/* Noise texture grain */
.hero-section::before{
  content:'';position:absolute;inset:0;z-index:0;pointer-events:none;
  opacity:.32;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size:180px;
}

/* Glowing blobs */
.hero-section::after{
  content:'';position:absolute;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(ellipse 55% 65% at 5% 60%,rgba(37,99,235,.18) 0%,transparent 60%),
    radial-gradient(ellipse 45% 55% at 95% 20%,rgba(249,115,22,.12) 0%,transparent 55%),
    radial-gradient(ellipse 40% 50% at 50% 100%,rgba(234,179,8,.08) 0%,transparent 50%);
  animation:blobPulse 12s ease-in-out infinite alternate;
}
@keyframes blobPulse{from{opacity:1}to{opacity:.6;transform:scale(1.05)}}

.hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:
    linear-gradient(100deg,rgba(5,8,16,.92) 0%,rgba(5,8,16,.72) 55%,rgba(5,8,16,.8) 100%),
    linear-gradient(180deg,rgba(5,8,16,.3) 0%,rgba(5,8,16,.7) 100%);
}
.hero-video-bg{position:absolute;inset:0;z-index:0;width:100%;height:100%;object-fit:cover}
.hero-content{position:relative;z-index:2;padding-top:0;width:100%}

/* Badge pill */
.badge-pill{
  display:inline-flex;align-items:center;gap:7px;
  background:rgba(249,115,22,.12);border:1px solid rgba(249,115,22,.35);
  color:#fdba74;padding:5px 16px;border-radius:var(--r-full);
  font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  backdrop-filter:blur(8px);
  animation:pillGlow 3s ease-in-out infinite alternate;
}
@keyframes pillGlow{
  from{box-shadow:0 0 0 rgba(249,115,22,0)}
  to  {box-shadow:0 0 20px rgba(249,115,22,.25)}
}

/* Hero headline */
.hero-title{
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(3rem,8vw,6rem);font-weight:700;
  color:#fff;line-height:1.0;letter-spacing:-.03em;margin:0 0 20px;
}
.hero-title span{
  background:linear-gradient(135deg,#f97316 0%,#eab308 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.hero-subtitle{font-size:1.08rem;color:rgba(255,255,255,.72);max-width:520px;line-height:1.75;margin-bottom:32px}

/* Stat pills in hero */
.stat-pill{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.18);
  color:#fff;padding:8px 18px;border-radius:var(--r-full);
  font-size:.82rem;font-weight:600;
  backdrop-filter:blur(8px);
  transition:background .2s var(--ease),border-color .2s var(--ease);
}
.stat-pill:hover{background:rgba(255,255,255,.16)}
.stat-pill.available{background:rgba(22,163,74,.18);border-color:rgba(22,163,74,.4)}
.stat-pill.sold     {background:rgba(220,38,38,.18);border-color:rgba(220,38,38,.4)}
.stat-pill i{font-size:.9rem}

/* Hero enquiry card */
.hero-card{
  background:rgba(255,255,255,.97);
  border-radius:var(--r-xl);padding:32px 28px;
  box-shadow:var(--s-xl);
  border:1px solid rgba(255,255,255,.6);
  position:relative;overflow:hidden;
  backdrop-filter:blur(20px);
}
.hero-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--blue),var(--orange));
}
.hero-card h5{color:var(--text);font-weight:800;font-size:1rem;margin-bottom:4px}

.quick-form{display:grid;gap:12px}
.form-control,.form-select{
  border:1.5px solid var(--border);border-radius:var(--r-sm);
  min-height:46px;color:var(--text);font-size:.9rem;
  background:var(--surface-2);padding:0 14px;font-family:'Poppins',sans-serif;
  transition:border-color .18s var(--ease),box-shadow .18s var(--ease);
}
.form-control:focus,.form-select:focus{
  border-color:var(--blue);box-shadow:0 0 0 4px rgba(37,99,235,.12);
  background:#fff;outline:none;
}

.quick-form-phones{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
.phone-badge{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--surface-2);color:var(--text);
  border:1.5px solid var(--border);padding:5px 12px;border-radius:var(--r-full);
  font-size:.8rem;font-weight:600;
  transition:all .18s var(--ease);
}
.phone-badge:hover{background:var(--blue);color:#fff;border-color:var(--blue)}

/* ── HIGHLIGHTS STRIP ────────────────────────────────────────── */
.highlights-strip{
  background:#fff;
  border-bottom:1px solid var(--border);
  box-shadow:0 4px 20px rgba(0,0,0,.04);
  position:relative;z-index:4;
}
.highlights-strip::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--blue),var(--orange),var(--gold),var(--blue));
  background-size:200%;animation:gradMove 4s linear infinite;
}
@keyframes gradMove{from{background-position:0%}to{background-position:200%}}

.highlight-item{
  display:flex;align-items:center;gap:14px;padding:22px 0;
  font-size:.88rem;font-weight:600;color:var(--text-2);
}
.highlight-item i{
  width:40px;height:40px;border-radius:var(--r-sm);
  display:inline-flex;align-items:center;justify-content:center;
  font-size:1rem;flex-shrink:0;
}
/* Each highlight gets a different color */
.highlight-item:nth-child(1) i{background:rgba(37,99,235,.1);color:var(--blue)}
.highlight-item:nth-child(2) i{background:rgba(249,115,22,.1);color:var(--orange)}
.highlight-item:nth-child(3) i{background:rgba(22,163,74,.1);color:var(--emerald)}
.highlight-item:nth-child(4) i{background:rgba(234,179,8,.12);color:var(--gold-d)}

/* ── ABOUT SECTION ───────────────────────────────────────────── */
.about-img-wrap{position:relative;border-radius:var(--r-xl);overflow:hidden;box-shadow:var(--s-xl)}
.about-img-wrap img{width:100%;height:100%;min-height:460px;object-fit:cover;display:block;transition:transform .6s var(--ease)}
.about-img-wrap:hover img{transform:scale(1.03)}

.about-badge{
  position:absolute;bottom:20px;left:20px;
  background:rgba(255,255,255,.97);border-radius:var(--r);
  padding:16px 20px;display:flex;align-items:center;gap:12px;
  box-shadow:var(--s-lg);backdrop-filter:blur(10px);
}
.about-badge i{font-size:1.6rem;color:var(--gold)}
.about-badge strong{display:block;color:var(--text);font-weight:800;font-size:.95rem}
.about-badge small{display:block;color:var(--text-m);font-size:.75rem}

/* Feature items */
.about-feature-item{
  display:flex;align-items:center;gap:14px;
  background:var(--surface);border:1.5px solid var(--border);
  border-radius:var(--r);padding:14px 16px;
  transition:transform .2s var(--ease),box-shadow .2s var(--ease),border-color .2s var(--ease);
}
.about-feature-item:hover{transform:translateX(6px);border-color:rgba(37,99,235,.25);box-shadow:var(--s-sm)}
.feature-icon{
  width:44px;height:44px;min-width:44px;border-radius:var(--r-sm);
  display:inline-flex;align-items:center;justify-content:center;font-size:1.05rem;
  background:var(--g-blue);color:#fff;box-shadow:var(--s-blue);flex-shrink:0;
}
.about-feature-item h6{font-size:.9rem;font-weight:700;color:var(--text);margin-bottom:2px}
.about-feature-item small{color:var(--text-m);font-size:.78rem}

/* ── STATS / PLOTS BENTO ─────────────────────────────────────── */
.stat-bento{
  background:var(--surface);border:1.5px solid var(--border);
  border-radius:var(--r-lg);padding:28px 24px;text-align:center;
  position:relative;overflow:hidden;box-shadow:var(--s-sm);
  transition:transform .22s var(--ease),box-shadow .22s var(--ease);
}
/* Top accent bar — sits highest */
.stat-bento::before{
  content:'';position:absolute;top:0;left:0;right:0;height:4px;
  border-radius:var(--r-lg) var(--r-lg) 0 0;z-index:2;
}
.stat-bento.s-blue::before  {background:var(--g-blue)}
.stat-bento.s-green::before {background:linear-gradient(90deg,var(--emerald),#22c55e)}
.stat-bento.s-amber::before {background:linear-gradient(90deg,var(--amber),var(--gold))}
.stat-bento.s-rose::before  {background:linear-gradient(90deg,var(--rose),#ef4444)}

/* Per-variant: tinted background + dot colour token */
.stat-bento.s-blue  {--ca:rgba(37,99,235,.7);  background:#dbeafe; border-color:#bfdbfe;}
.stat-bento.s-green {--ca:rgba(22,163,74,.7);  background:#dcfce7; border-color:#bbf7d0;}
.stat-bento.s-amber {--ca:rgba(161,98,7,.75);  background:#fef9c3; border-color:#fde68a;}
.stat-bento.s-rose  {--ca:rgba(220,38,38,.7);  background:#ffe4e6; border-color:#fecdd3;}

/* ── Full dot-grid pattern with radial vignette ──────────
   Dots tile the entire card; a radial mask hides them at
   the centre (where the number lives) and reveals them
   progressively toward all four edges / corners.
   Numbers stay 100% readable, pattern feels "full card". */
.stat-bento::after{
  content:'';
  position:absolute;inset:0;
  border-radius:inherit;
  pointer-events:none;z-index:0;

  /* repeating dot matrix — colour set per variant */
  background-image:radial-gradient(circle, var(--ca) 1.6px, transparent 1.6px);
  background-size:16px 16px;
  background-position:0 0;

  /* radial vignette: centre transparent → edges solid */
  -webkit-mask-image:radial-gradient(ellipse 90% 88% at 50% 50%,
    transparent  0%,
    transparent 34%,
    rgba(0,0,0,.25) 50%,
    rgba(0,0,0,.65) 66%,
    black        88%);
  mask-image:radial-gradient(ellipse 90% 88% at 50% 50%,
    transparent  0%,
    transparent 34%,
    rgba(0,0,0,.25) 50%,
    rgba(0,0,0,.65) 66%,
    black        88%);
  opacity:.65;
  transition:opacity .22s var(--ease);
}
/* on hover — brighten the pattern slightly */
.stat-bento:hover::after{opacity:.85;}

.stat-bento:hover{transform:translateY(-5px);box-shadow:var(--s-lg)}
.stat-bento.s-blue:hover  {box-shadow:0 12px 32px rgba(37,99,235,.22)}
.stat-bento.s-green:hover {box-shadow:0 12px 32px rgba(22,163,74,.22)}
.stat-bento.s-amber:hover {box-shadow:0 12px 32px rgba(234,179,8,.22)}
.stat-bento.s-rose:hover  {box-shadow:0 12px 32px rgba(220,38,38,.22)}

.stat-bento .big-num{
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(2.2rem,5vw,3.8rem);font-weight:700;line-height:1;
  margin-bottom:6px;display:block;
  position:relative;z-index:1; /* above ::after pattern */
}
.stat-bento.s-blue  .big-num{color:var(--blue)}
.stat-bento.s-green .big-num{color:var(--emerald)}
.stat-bento.s-amber .big-num{color:var(--amber)}
.stat-bento.s-rose  .big-num{color:var(--rose)}
.stat-bento .stat-lbl{
  font-size:.75rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.1em;color:var(--text-x);
  position:relative;z-index:1; /* above ::after pattern */
}

/* ── LUCKY DRAW SECTION ──────────────────────────────────────── */
.lucky-section{
  background:var(--g-dark);color:#fff;
  position:relative;overflow:hidden;
  padding:100px 0;
}
.lucky-section::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 60% 70% at 15% 50%,rgba(234,179,8,.12) 0%,transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 40%,rgba(249,115,22,.08) 0%,transparent 55%),
    radial-gradient(ellipse 40% 50% at 50% 90%,rgba(37,99,235,.1)  0%,transparent 55%);
}
.lucky-section::after{
  content:'';position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(circle at 1px 1px,rgba(255,255,255,.04) 1px,transparent 0);
  background-size:28px 28px;
}
.lucky-inner{position:relative;z-index:2;text-align:center}
.lucky-trophy{
  font-size:5rem;line-height:1;margin-bottom:16px;display:block;
  animation:trophyRock 2.2s ease-in-out infinite alternate;
  filter:drop-shadow(0 6px 20px rgba(234,179,8,.6));
}
@keyframes trophyRock{
  from{transform:rotate(-7deg) scale(1)}
  to  {transform:rotate(7deg)  scale(1.08)}
}
.lucky-section h2{
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(2rem,5vw,3.5rem);font-weight:700;
  color:#fff;margin-bottom:16px;
}
.lucky-section p{color:rgba(255,255,255,.68);font-size:1.05rem;max-width:540px;margin:0 auto 32px}

/* Trust chips */
.trust-chips{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:32px}
.trust-chip{
  display:inline-flex;align-items:center;gap:7px;
  padding:7px 16px;border-radius:var(--r-full);
  font-size:.75rem;font-weight:700;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);
  color:rgba(255,255,255,.8);
}
.trust-chip i{color:var(--gold)}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonial-card{
  background:var(--surface)!important;
  border:1.5px solid var(--border)!important;
  border-radius:var(--r-lg)!important;
  box-shadow:var(--s-sm)!important;
  padding:28px!important;height:100%;
  position:relative;overflow:hidden;
  transition:transform .22s var(--ease),box-shadow .22s var(--ease);
}
.testimonial-card::before{
  content:'"';position:absolute;top:-14px;left:18px;
  font-family:'Playfair Display',Georgia,serif;
  font-size:7rem;color:rgba(37,99,235,.07);line-height:1;pointer-events:none;
}
.testimonial-card:hover{transform:translateY(-5px);box-shadow:var(--s-lg)!important}
.stars{color:var(--gold);letter-spacing:2px;margin-bottom:12px;font-size:.9rem}
.review-text{
  color:var(--text-2);font-size:.92rem;line-height:1.75;
  font-style:italic;position:relative;z-index:1;margin-bottom:16px;
}
.reviewer{display:flex;align-items:center;gap:12px;padding-top:16px;border-top:1px solid var(--border-soft)}
.reviewer-avatar{
  width:46px;height:46px;border-radius:50%;flex-shrink:0;
  background:var(--g-blue);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-weight:700;font-size:1.1rem;box-shadow:var(--s-blue);
}
.reviewer strong{display:block;font-size:.9rem;color:var(--text);font-weight:700}
.reviewer small {display:block;font-size:.78rem;color:var(--text-m)}

/* ── BLOG CARDS ──────────────────────────────────────────────── */
.blog-card{
  background:var(--surface)!important;
  border:1.5px solid var(--border)!important;
  border-radius:var(--r-lg)!important;
  box-shadow:var(--s-sm)!important;
  overflow:hidden;height:100%;
  transition:transform .22s var(--ease),box-shadow .22s var(--ease);
}
.blog-card:hover{transform:translateY(-6px);box-shadow:var(--s-lg)!important}
.blog-img{height:210px;overflow:hidden;background:var(--surface-2)}
.blog-img img{width:100%;height:100%;object-fit:cover;transition:transform .45s var(--ease)}
.blog-card:hover .blog-img img{transform:scale(1.06)}
.blog-content{padding:20px}
.blog-cat{
  display:inline-block;font-size:.68rem;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;
  color:var(--orange);background:rgba(249,115,22,.09);
  padding:3px 10px;border-radius:var(--r-full);margin-bottom:10px;
}
.blog-content h6{font-size:.95rem;font-weight:700;color:var(--text);margin-bottom:8px;line-height:1.45}
.blog-card:hover .blog-content h6{color:var(--blue)}
.blog-content p{font-size:.82rem;color:var(--text-m);margin-bottom:10px;line-height:1.65}

/* ── PAGE BANNER (inner pages) ───────────────────────────────── */
.page-banner{
  background:linear-gradient(160deg,#030508 0%,#0a1220 45%,#0f1e38 100%);
  padding:130px 0 72px;color:#fff;
  position:relative;overflow:hidden;text-align:center;
}

/* Building silhouette sketch pattern */
.page-banner::before{
  content:'';
  position:absolute;inset:0;z-index:0;pointer-events:none;
  opacity:.10;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='220' viewBox='0 0 900 220'%3E%3Cstyle%3Epath%7Bfill:none;stroke:%23ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-linecap:round%7D%3C/style%3E%3C!-- Building 1 (tall) --%3E%3Cpath d='M30 220 L30 60 L90 60 L90 220'/%3E%3Cpath d='M30 60 L60 30 L90 60'/%3E%3Crect x='42' y='80' width='12' height='15' rx='1'/%3E%3Crect x='66' y='80' width='12' height='15' rx='1'/%3E%3Crect x='42' y='110' width='12' height='15' rx='1'/%3E%3Crect x='66' y='110' width='12' height='15' rx='1'/%3E%3Crect x='42' y='140' width='12' height='15' rx='1'/%3E%3Crect x='66' y='140' width='12' height='15' rx='1'/%3E%3Crect x='42' y='170' width='12' height='15' rx='1'/%3E%3Crect x='66' y='170' width='12' height='15' rx='1'/%3E%3Crect x='50' y='195' width='20' height='25' rx='1'/%3E%3C!-- Building 2 (medium left) --%3E%3Cpath d='M100 220 L100 90 L160 90 L160 220'/%3E%3Cpath d='M100 90 L130 70 L160 90'/%3E%3Crect x='110' y='105' width='15' height='12' rx='1'/%3E%3Crect x='136' y='105' width='15' height='12' rx='1'/%3E%3Crect x='110' y='128' width='15' height='12' rx='1'/%3E%3Crect x='136' y='128' width='15' height='12' rx='1'/%3E%3Crect x='110' y='151' width='15' height='12' rx='1'/%3E%3Crect x='136' y='151' width='15' height='12' rx='1'/%3E%3Crect x='118' y='193' width='24' height='27' rx='1'/%3E%3C!-- Building 3 (modern flat) --%3E%3Cpath d='M170 220 L170 110 L250 110 L250 220'/%3E%3Cpath d='M170 110 L170 95 L250 95 L250 110'/%3E%3Cline x1='170' y1='110' x2='250' y2='110'/%3E%3Crect x='180' y='120' width='18' height='14' rx='1'/%3E%3Crect x='213' y='120' width='18' height='14' rx='1'/%3E%3Crect x='180' y='145' width='18' height='14' rx='1'/%3E%3Crect x='213' y='145' width='18' height='14' rx='1'/%3E%3Crect x='180' y='170' width='18' height='14' rx='1'/%3E%3Crect x='213' y='170' width='18' height='14' rx='1'/%3E%3Crect x='197' y='192' width='22' height='28' rx='1'/%3E%3C!-- Building 4 (skyscraper) --%3E%3Cpath d='M265 220 L265 40 L310 40 L310 220'/%3E%3Cpath d='M265 40 L287 10 L310 40'/%3E%3Cline x1='287' y1='10' x2='287' y2='0'/%3E%3Crect x='272' y='55' width='10' height='10' rx='1'/%3E%3Crect x='292' y='55' width='10' height='10' rx='1'/%3E%3Crect x='272' y='75' width='10' height='10' rx='1'/%3E%3Crect x='292' y='75' width='10' height='10' rx='1'/%3E%3Crect x='272' y='95' width='10' height='10' rx='1'/%3E%3Crect x='292' y='95' width='10' height='10' rx='1'/%3E%3Crect x='272' y='115' width='10' height='10' rx='1'/%3E%3Crect x='292' y='115' width='10' height='10' rx='1'/%3E%3Crect x='272' y='135' width='10' height='10' rx='1'/%3E%3Crect x='292' y='135' width='10' height='10' rx='1'/%3E%3Crect x='272' y='155' width='10' height='10' rx='1'/%3E%3Crect x='292' y='155' width='10' height='10' rx='1'/%3E%3Crect x='272' y='175' width='10' height='10' rx='1'/%3E%3Crect x='292' y='175' width='10' height='10' rx='1'/%3E%3Crect x='278' y='195' width='20' height='25' rx='1'/%3E%3C!-- Building 5 --%3E%3Cpath d='M325 220 L325 100 L390 100 L390 220'/%3E%3Cpath d='M325 100 L357 78 L390 100'/%3E%3Crect x='335' y='115' width='14' height='13' rx='1'/%3E%3Crect x='363' y='115' width='14' height='13' rx='1'/%3E%3Crect x='335' y='138' width='14' height='13' rx='1'/%3E%3Crect x='363' y='138' width='14' height='13' rx='1'/%3E%3Crect x='335' y='161' width='14' height='13' rx='1'/%3E%3Crect x='363' y='161' width='14' height='13' rx='1'/%3E%3Crect x='348' y='193' width='22' height='27' rx='1'/%3E%3C!-- Building 6 (wide) --%3E%3Cpath d='M400 220 L400 130 L490 130 L490 220'/%3E%3Cpath d='M400 130 L400 115 L490 115 L490 130'/%3E%3Crect x='412' y='142' width='16' height='13' rx='1'/%3E%3Crect x='440' y='142' width='16' height='13' rx='1'/%3E%3Crect x='468' y='142' width='14' height='13' rx='1'/%3E%3Crect x='412' y='165' width='16' height='13' rx='1'/%3E%3Crect x='440' y='165' width='16' height='13' rx='1'/%3E%3Crect x='468' y='165' width='14' height='13' rx='1'/%3E%3Crect x='412' y='188' width='16' height='13' rx='1'/%3E%3Crect x='440' y='188' width='16' height='13' rx='1'/%3E%3Crect x='430' y='205' width='28' height='15' rx='1'/%3E%3C!-- Building 7 (tall narrow) --%3E%3Cpath d='M505 220 L505 55 L555 55 L555 220'/%3E%3Cpath d='M505 55 L530 30 L555 55'/%3E%3Cline x1='530' y1='30' x2='530' y2='18'/%3E%3Crect x='512' y='70' width='11' height='11' rx='1'/%3E%3Crect x='538' y='70' width='11' height='11' rx='1'/%3E%3Crect x='512' y='90' width='11' height='11' rx='1'/%3E%3Crect x='538' y='90' width='11' height='11' rx='1'/%3E%3Crect x='512' y='110' width='11' height='11' rx='1'/%3E%3Crect x='538' y='110' width='11' height='11' rx='1'/%3E%3Crect x='512' y='130' width='11' height='11' rx='1'/%3E%3Crect x='538' y='130' width='11' height='11' rx='1'/%3E%3Crect x='512' y='150' width='11' height='11' rx='1'/%3E%3Crect x='538' y='150' width='11' height='11' rx='1'/%3E%3Crect x='512' y='170' width='11' height='11' rx='1'/%3E%3Crect x='538' y='170' width='11' height='11' rx='1'/%3E%3Crect x='520' y='194' width='20' height='26' rx='1'/%3E%3C!-- Building 8 --%3E%3Cpath d='M570 220 L570 95 L635 95 L635 220'/%3E%3Cpath d='M570 95 L602 70 L635 95'/%3E%3Crect x='580' y='108' width='15' height='13' rx='1'/%3E%3Crect x='610' y='108' width='15' height='13' rx='1'/%3E%3Crect x='580' y='131' width='15' height='13' rx='1'/%3E%3Crect x='610' y='131' width='15' height='13' rx='1'/%3E%3Crect x='580' y='154' width='15' height='13' rx='1'/%3E%3Crect x='610' y='154' width='15' height='13' rx='1'/%3E%3Crect x='580' y='177' width='15' height='13' rx='1'/%3E%3Crect x='610' y='177' width='15' height='13' rx='1'/%3E%3Crect x='590' y='193' width='23' height='27' rx='1'/%3E%3C!-- Building 9 (modern slim) --%3E%3Cpath d='M650 220 L650 75 L700 75 L700 220'/%3E%3Cpath d='M650 75 L675 50 L700 75'/%3E%3Cline x1='675' y1='50' x2='675' y2='38'/%3E%3Crect x='658' y='88' width='12' height='11' rx='1'/%3E%3Crect x='682' y='88' width='12' height='11' rx='1'/%3E%3Crect x='658' y='108' width='12' height='11' rx='1'/%3E%3Crect x='682' y='108' width='12' height='11' rx='1'/%3E%3Crect x='658' y='128' width='12' height='11' rx='1'/%3E%3Crect x='682' y='128' width='12' height='11' rx='1'/%3E%3Crect x='658' y='148' width='12' height='11' rx='1'/%3E%3Crect x='682' y='148' width='12' height='11' rx='1'/%3E%3Crect x='658' y='168' width='12' height='11' rx='1'/%3E%3Crect x='682' y='168' width='12' height='11' rx='1'/%3E%3Crect x='662' y='193' width='28' height='27' rx='1'/%3E%3C!-- Building 10 (right end) --%3E%3Cpath d='M715 220 L715 115 L790 115 L790 220'/%3E%3Cpath d='M715 115 L715 100 L790 100 L790 115'/%3E%3Crect x='725' y='127' width='16' height='13' rx='1'/%3E%3Crect x='757' y='127' width='16' height='13' rx='1'/%3E%3Crect x='725' y='150' width='16' height='13' rx='1'/%3E%3Crect x='757' y='150' width='16' height='13' rx='1'/%3E%3Crect x='725' y='173' width='16' height='13' rx='1'/%3E%3Crect x='757' y='173' width='16' height='13' rx='1'/%3E%3Crect x='742' y='194' width='22' height='26' rx='1'/%3E%3C!-- Ground line --%3E%3Cline x1='0' y1='220' x2='900' y2='220'/%3E%3C/svg%3E");
  background-repeat:repeat-x;
  background-position:bottom center;
  background-size:900px 220px;
}

/* Bottom accent line */
.page-banner::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:3px;z-index:2;
  background:linear-gradient(90deg,var(--blue),var(--orange),var(--gold));
}
.page-banner .container{position:relative;z-index:1}
.page-banner h1{
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(2rem,5vw,3.5rem);font-weight:700;margin-bottom:10px;
}
.breadcrumb-item a{color:rgba(255,255,255,.6)!important;text-decoration:none}
.breadcrumb-item.active{color:rgba(255,255,255,.85)!important}
.breadcrumb-item+.breadcrumb-item::before{color:rgba(255,255,255,.35)!important}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-info-card{
  background:var(--g-dark)!important;
  border:0!important;border-radius:var(--r-xl)!important;
  padding:36px!important;color:#fff;position:relative;overflow:hidden;
}
.contact-info-card::after{
  content:'';position:absolute;bottom:-50px;right:-50px;
  width:180px;height:180px;border-radius:50%;
  background:rgba(37,99,235,.08);pointer-events:none;
}
.contact-form-card{
  background:#fff!important;border:1.5px solid var(--border)!important;
  border-radius:var(--r-xl)!important;padding:36px!important;box-shadow:var(--s-lg)!important;
}
.contact-info-item{
  display:flex;align-items:flex-start;gap:14px;
  padding:16px 0;border-bottom:1px solid rgba(255,255,255,.08);
}
.contact-info-item:last-child{border-bottom:0}
.ci-icon{
  width:44px;height:44px;min-width:44px;border-radius:var(--r-sm);
  background:rgba(249,115,22,.15);color:var(--orange);
  display:inline-flex;align-items:center;justify-content:center;font-size:1rem;
  border:1px solid rgba(249,115,22,.25);
}
.contact-info-item strong{display:block;color:#fff;font-weight:700;font-size:.85rem;margin-bottom:4px}
.contact-info-item p{color:rgba(255,255,255,.65);font-size:.9rem;margin:0}
.contact-info-item a{color:rgba(255,255,255,.75)}
.contact-info-item a:hover{color:var(--orange)}
.input-group-text{background:var(--surface-2);border-color:var(--border);color:var(--text-m)}

/* ══════════════════════════════════════════════════════════════
   LUCKY DRAW SECTION — dark cinematic
══════════════════════════════════════════════════════════════ */
.lucky-draw-section{
  position:relative;
  background:linear-gradient(145deg,#04060d 0%,#090f1d 35%,#0c1628 65%,#060b16 100%);
  padding:100px 0;overflow:hidden;
}
/* Dot-grid across entire section */
.lucky-draw-section::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background-image:radial-gradient(rgba(255,255,255,.055) 1px,transparent 1px);
  background-size:26px 26px;
}
/* Ambient gold glow blobs */
.lucky-draw-section::after{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 55% 45% at 10% 15%,rgba(212,165,0,.07) 0%,transparent 65%),
    radial-gradient(ellipse 45% 55% at 90% 85%,rgba(212,165,0,.06) 0%,transparent 65%),
    radial-gradient(ellipse 40% 35% at 50% 50%,rgba(37,99,235,.05) 0%,transparent 70%);
}
/* Section header text on dark bg */
.lucky-draw-section .section-tag{background:rgba(212,165,0,.15);color:#f59e0b;border-color:rgba(212,165,0,.3)}
.lucky-draw-section .section-title{color:#fff}
.lucky-draw-section .section-sub{color:rgba(255,255,255,.6)}

/* ── PRIZE CARDS ─────────────────────────────────────────────── */
.prize-card{
  background:linear-gradient(155deg,#0d1526 0%,#111c35 50%,#0a1220 100%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:28px 20px 24px;text-align:center;
  position:relative;overflow:hidden;height:100%;
  transition:transform .3s var(--ease),box-shadow .3s var(--ease);
}
/* Card inner dot pattern */
.prize-card::before{
  content:'';position:absolute;inset:0;pointer-events:none;border-radius:inherit;
  background-image:radial-gradient(rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:18px 18px;
}
/* Shine sweep on hover */
.prize-card::after{
  content:'';position:absolute;top:0;left:-90%;width:55%;height:100%;
  background:linear-gradient(110deg,transparent,rgba(255,255,255,.07),transparent);
  transform:skewX(-15deg);
  transition:left .65s var(--ease);pointer-events:none;z-index:1;
}
.prize-card:hover{transform:translateY(-8px) scale(1.025)}
.prize-card:hover::after{left:140%}

/* ── Rank-specific top glow bar + card glow ── */
.prize-card[data-rank="1"]{
  border-top:3px solid #f59e0b;
  box-shadow:0 0 0 1px rgba(245,158,11,.12),0 8px 40px rgba(245,158,11,.22),0 2px 8px rgba(0,0,0,.5);
}
.prize-card[data-rank="1"]::before{
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%,rgba(245,158,11,.12) 0%,transparent 65%),
    radial-gradient(rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:auto,18px 18px;
}
.prize-card[data-rank="1"]:hover{box-shadow:0 0 0 1px rgba(245,158,11,.2),0 20px 60px rgba(245,158,11,.4),0 4px 16px rgba(0,0,0,.5)}

.prize-card[data-rank="2"]{
  border-top:3px solid #b0b8c8;
  box-shadow:0 0 0 1px rgba(176,184,200,.1),0 8px 40px rgba(176,184,200,.12),0 2px 8px rgba(0,0,0,.5);
}
.prize-card[data-rank="2"]::before{
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%,rgba(176,184,200,.1) 0%,transparent 65%),
    radial-gradient(rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:auto,18px 18px;
}
.prize-card[data-rank="2"]:hover{box-shadow:0 0 0 1px rgba(176,184,200,.2),0 20px 60px rgba(176,184,200,.3),0 4px 16px rgba(0,0,0,.5)}

.prize-card[data-rank="3"]{
  border-top:3px solid #cd7f32;
  box-shadow:0 0 0 1px rgba(205,127,50,.12),0 8px 40px rgba(205,127,50,.18),0 2px 8px rgba(0,0,0,.5);
}
.prize-card[data-rank="3"]::before{
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%,rgba(205,127,50,.12) 0%,transparent 65%),
    radial-gradient(rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:auto,18px 18px;
}
.prize-card[data-rank="3"]:hover{box-shadow:0 0 0 1px rgba(205,127,50,.2),0 20px 60px rgba(205,127,50,.32),0 4px 16px rgba(0,0,0,.5)}

/* ── Rank number badge ── */
.prize-number{
  width:48px;height:48px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:.95rem;font-weight:800;margin:0 auto 16px;
  position:relative;z-index:2;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease);
}
.prize-card[data-rank="1"] .prize-number{
  background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;
  box-shadow:0 0 0 4px rgba(245,158,11,.2),0 4px 16px rgba(245,158,11,.4);
}
.prize-card[data-rank="2"] .prize-number{
  background:linear-gradient(135deg,#c0cad8,#8a9ab0);color:#fff;
  box-shadow:0 0 0 4px rgba(176,184,200,.2),0 4px 16px rgba(176,184,200,.3);
}
.prize-card[data-rank="3"] .prize-number{
  background:linear-gradient(135deg,#cd7f32,#a05a1a);color:#fff;
  box-shadow:0 0 0 4px rgba(205,127,50,.2),0 4px 16px rgba(205,127,50,.3);
}
/* Default badge colour (rank 4+, unranked) */
.prize-number{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  box-shadow:0 0 0 4px rgba(37,99,235,.2),0 4px 16px rgba(37,99,235,.3);
}
.prize-card:not([data-rank]) .prize-price{color:#60a5fa}
.prize-card:hover .prize-number{transform:scale(1.18) rotate(-6deg)}

/* prize type badge */
.prize-card .prize-type-badge{
  display:inline-block;padding:4px 14px;border-radius:99px;
  font-size:.7rem;font-weight:700;margin-bottom:14px;position:relative;z-index:2;
  letter-spacing:.03em;
}
/* icon */
.prize-icon{font-size:2.4rem;margin-bottom:12px;position:relative;z-index:2}

/* image wrapper */
.prize-img-wrap{
  margin-bottom:14px;position:relative;z-index:2;
  display:flex;align-items:center;justify-content:center;
}
.prize-img-wrap img{
  max-height:100px;max-width:100%;object-fit:contain;border-radius:10px;
  filter:drop-shadow(0 4px 12px rgba(0,0,0,.5));
  transition:transform .3s var(--ease),filter .3s;
}
.prize-card:hover .prize-img-wrap img{transform:scale(1.07);filter:drop-shadow(0 8px 20px rgba(0,0,0,.6))}

/* text */
.prize-card h6{font-size:.92rem;font-weight:700;color:#e8edf5;margin-bottom:6px;line-height:1.4;position:relative;z-index:2}
.prize-price{font-size:.8rem;font-weight:700;position:relative;z-index:2;color:#60a5fa}
.prize-card[data-rank="1"] .prize-price{color:#f59e0b}
.prize-card[data-rank="2"] .prize-price{color:#b0b8c8}
.prize-card[data-rank="3"] .prize-price{color:#cd7f32}

/* Corner star decoration for top-3 */
.prize-card[data-rank="1"] .pc-star,
.prize-card[data-rank="2"] .pc-star,
.prize-card[data-rank="3"] .pc-star{
  position:absolute;top:10px;right:12px;font-size:.7rem;letter-spacing:5px;
  opacity:.45;z-index:2;animation:sparkle 3s ease-in-out infinite alternate;
}
.prize-card[data-rank="1"] .pc-star{color:#f59e0b}
.prize-card[data-rank="2"] .pc-star{color:#c0cad8}
.prize-card[data-rank="3"] .pc-star{color:#cd7f32}

/* Lucky banner */
.lucky-banner{
  background:var(--g-gold);border-radius:var(--r-xl);
  padding:28px 32px;box-shadow:var(--s-gold);position:relative;overflow:hidden;
}
.lucky-banner::after{
  content:'✦  ✧  ✦';position:absolute;top:12px;right:20px;
  font-size:1rem;letter-spacing:10px;color:rgba(255,255,255,.3);
  animation:sparkle 3s ease-in-out infinite alternate;
}
@keyframes sparkle{from{opacity:.3;transform:translateY(0)}to{opacity:.7;transform:translateY(-4px) rotate(8deg)}}
.lucky-banner-inner{display:flex;align-items:center;gap:22px;color:var(--ink);position:relative;z-index:1}
.lucky-icon{font-size:3rem;flex-shrink:0;animation:trophyRock 2s ease-in-out infinite alternate;filter:drop-shadow(0 4px 8px rgba(0,0,0,.2))}
.lucky-banner h4{font-size:1.4rem;font-weight:800;margin-bottom:4px}
.lucky-banner p{font-size:.92rem;font-weight:500;opacity:.85}

/* ── GALLERY ─────────────────────────────────────────────────── */
.filter-btn{
  background:var(--surface);color:var(--text-m);
  border:1.5px solid var(--border);
  padding:7px 18px;border-radius:var(--r-full);font-size:.84rem;font-weight:600;
  margin:4px;cursor:pointer;transition:all .18s var(--ease);font-family:'Poppins',sans-serif;
}
.filter-btn.active,.filter-btn:hover{
  background:var(--blue);color:#fff;border-color:var(--blue);box-shadow:var(--s-blue);
}
.gallery-item{
  border-radius:var(--r-lg);overflow:hidden;
  box-shadow:var(--s-sm);position:relative;aspect-ratio:4/3;
  transition:transform .22s var(--ease),box-shadow .22s var(--ease);
}
.gallery-item:hover{transform:translateY(-5px);box-shadow:var(--s-lg)}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .45s var(--ease)}
.gallery-item:hover img{transform:scale(1.07)}
.gallery-overlay{
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(5,8,16,.78),rgba(14,21,38,.65));
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:8px;opacity:0;transition:opacity .22s var(--ease);
}
.gallery-item:hover .gallery-overlay{opacity:1}
.gallery-overlay i{font-size:2.2rem;color:#fff}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(155px,1fr));gap:10px}
.gallery-thumb{aspect-ratio:4/3;border-radius:var(--r);overflow:hidden;cursor:pointer}
.gallery-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .4s var(--ease)}
.gallery-thumb:hover img{transform:scale(1.06)}

/* ── PLOT MAP ────────────────────────────────────────────────── */
.plot-map-wrap,.block-filter-wrap{
  background:#fff;border:1.5px solid var(--border);
  border-radius:var(--r-lg);box-shadow:var(--s-sm);overflow:hidden;
}
.svg-container{position:relative;overflow:auto;max-height:85vh;cursor:grab;border:1px solid var(--border);border-radius:var(--r)}
.svg-container:active{cursor:grabbing}
#plotMapSVG{display:block;min-width:500px}
.plot-rect{cursor:pointer;stroke-width:1.5;transition:filter .15s ease}
.plot-rect:hover{filter:brightness(1.14) drop-shadow(0 0 8px rgba(0,0,0,.3))}
.plot-rect.available{fill:#22c55e;stroke:#16a34a}
.plot-rect.sold     {fill:#ef4444;stroke:#dc2626}
.plot-rect.booked   {fill:#f59e0b;stroke:#d97706}
.plot-rect.reserved {fill:#a855f7;stroke:#9333ea}
.plot-rect.corner   {stroke:#ffd700;stroke-width:2.5}
.plot-label{font-size:10px;font-weight:700;fill:#fff;pointer-events:none;text-anchor:middle;dominant-baseline:middle}
.map-tooltip{
  position:absolute;background:rgba(5,8,16,.96);color:#fff;
  padding:10px 14px;border-radius:var(--r-sm);font-size:.8rem;
  pointer-events:none;opacity:0;transition:opacity .15s ease;
  max-width:210px;z-index:10;box-shadow:var(--s-lg);border:1px solid rgba(255,255,255,.08);
}
.map-tooltip.visible{opacity:1}
.badge-stat{display:inline-block;padding:5px 16px;border-radius:var(--r-full);font-size:.8rem;font-weight:700;border:1px solid}
.badge-stat.total    {background:var(--blue-l);color:var(--blue);border-color:rgba(37,99,235,.2)}
.badge-stat.available{background:rgba(34,197,94,.1);color:var(--emerald);border-color:rgba(34,197,94,.3)}
.badge-stat.booked   {background:rgba(245,158,11,.1);color:var(--amber);border-color:rgba(245,158,11,.3)}
.badge-stat.sold     {background:rgba(239,68,68,.1);color:var(--rose);border-color:rgba(239,68,68,.3)}
.legend-box{display:inline-block;width:13px;height:13px;border-radius:3px;margin-right:5px;vertical-align:middle}
.legend-box.available{background:#22c55e}
.legend-box.booked   {background:#f59e0b}
.legend-box.sold     {background:#ef4444}
.plot-detail-row{display:flex;justify-content:space-between;align-items:center;padding:10px 0;border-bottom:1px solid var(--border-soft);font-size:.9rem}
.plot-detail-row:last-child{border:0}
.block-filter-label{font-weight:700;margin-bottom:12px;color:var(--text)}
.block-filter-scroll{display:flex;gap:8px;overflow-x:auto;padding-bottom:4px}
.block-btn,.filter-btn{border:1.5px solid var(--border);background:#fff;color:var(--text-2);border-radius:var(--r-sm);padding:8px 14px;font-weight:700;cursor:pointer;white-space:nowrap;transition:all .15s var(--ease);font-family:'Poppins',sans-serif}
.block-btn.active,.filter-btn.active,.block-btn:hover{background:var(--blue);color:#fff;border-color:var(--blue)}
.block-btn-letter,.block-btn-count{display:block;line-height:1.1}
.block-btn-count{font-size:.7rem;opacity:.7;margin-top:2px}
.plot-cell.available,.status-available{background:#dcfce7!important;color:#166534!important}
.plot-cell.booked,   .status-booked   {background:#fef9c3!important;color:#854d0e!important}
.plot-cell.sold,     .status-sold     {background:#fee2e2!important;color:#991b1b!important}
.plot-cell.reserved, .status-reserved {background:#f3e8ff!important;color:#6b21a8!important}

/* ── PAYMENT STEPS ───────────────────────────────────────────── */
.payment-step{
  background:#fff;border:1.5px solid var(--border);border-radius:var(--r-lg);
  padding:30px 22px;text-align:center;position:relative;overflow:hidden;
  box-shadow:var(--s-sm);height:100%;
  transition:transform .22s var(--ease),box-shadow .22s var(--ease);
}
.payment-step::before{content:'';position:absolute;top:0;left:0;right:0;height:4px}
.step-1::before{background:linear-gradient(90deg,#3b82f6,#60a5fa)}
.step-2::before{background:linear-gradient(90deg,var(--emerald),#22c55e)}
.step-3::before{background:var(--g-gold)}
.step-4::before{background:linear-gradient(90deg,var(--purple),#a78bfa)}
.step-5::before{background:var(--g-blue)}
.payment-step:hover{transform:translateY(-6px);box-shadow:var(--s-lg)}
.step-num{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  width:34px;height:34px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-size:.82rem;font-weight:800;color:#fff;
}
.step-1 .step-num{background:#3b82f6;box-shadow:0 4px 14px rgba(59,130,246,.5)}
.step-2 .step-num{background:var(--emerald);box-shadow:0 4px 14px rgba(22,163,74,.5)}
.step-3 .step-num{background:var(--gold);box-shadow:0 4px 14px rgba(234,179,8,.5)}
.step-4 .step-num{background:var(--purple);box-shadow:0 4px 14px rgba(124,58,237,.5)}
.step-5 .step-num{background:var(--blue);box-shadow:var(--s-blue)}
.step-icon{font-size:2.2rem;color:var(--text);margin:24px 0 14px}
.payment-step h5{font-weight:800;color:var(--text);margin-bottom:8px}
.step-amount{font-size:1.3rem;font-weight:800;color:var(--orange);margin-bottom:12px}
.payment-step p{font-size:.875rem;color:var(--text-m);line-height:1.65}

/* ── AVAILABILITY BAR ────────────────────────────────────────── */
.availability-bar{height:10px;background:var(--surface-3);border-radius:var(--r-full);overflow:hidden}
.availability-fill{
  display:block;height:100%;
  background:linear-gradient(90deg,var(--emerald) 0%,#22c55e 100%);
  border-radius:inherit;transition:width 1.2s var(--ease-out);position:relative;overflow:hidden;
}
.availability-fill::after{
  content:'';position:absolute;top:0;left:-80%;width:60%;height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.5),transparent);
  animation:shimBar 2s infinite;
}
@keyframes shimBar{to{left:130%}}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer{
  background:#04080f;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.site-footer::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;z-index:2;
  background:linear-gradient(90deg,var(--blue),var(--orange),var(--gold),var(--blue));
  background-size:200%;animation:gradMove 5s linear infinite;
}
/* Footer background image — image-url + opacity set dynamically via footer.php <style> inject */
.site-footer::after{
  content:'';
  position:absolute;inset:0;
  z-index:0;pointer-events:none;
  background-repeat:no-repeat;
  background-position:center bottom;
  background-size:cover;
  /* screen blend: sketch whites glow on dark bg, blacks vanish */
  mix-blend-mode:screen;
  /* fade out toward top so text stays legible */
  -webkit-mask-image:linear-gradient(to bottom,transparent 0%,rgba(0,0,0,.4) 30%,rgba(0,0,0,.85) 70%,#000 100%);
  mask-image:linear-gradient(to bottom,transparent 0%,rgba(0,0,0,.4) 30%,rgba(0,0,0,.85) 70%,#000 100%);
}

/* CTA band at top of footer */
.footer-cta-band{
  padding:56px 0 52px;
  border-bottom:1px solid rgba(255,255,255,.08);
  position:relative;z-index:1;
}
.footer-cta-band::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 50% 90% at 8% 50%,rgba(249,115,22,.09) 0%,transparent 65%),
    radial-gradient(ellipse 40% 70% at 92% 40%,rgba(37,99,235,.08) 0%,transparent 60%);
}
.footer-cta-band .fc-title{
  font-family:'Playfair Display',Georgia,serif;
  font-size:clamp(1.5rem,3vw,2.4rem);font-weight:700;
  color:#fff;line-height:1.2;margin-bottom:8px;
}
.footer-cta-band .fc-sub{color:rgba(255,255,255,.55);font-size:.95rem;margin:0}

/* Main footer body */
.footer-body{
  padding:52px 0 40px;
  border-bottom:1px solid rgba(255,255,255,.06);
  position:relative;z-index:1;
}

/* Footer logo — hard-constrained */
.footer-logo{
  height:46px !important;
  width:auto !important;
  max-width:150px !important;
  object-fit:contain !important;
  display:block !important;
  margin-bottom:16px;
}
.footer-brand-name{
  font-size:1.15rem;font-weight:800;color:#fff;
  margin-bottom:16px;display:none;
}
.footer-brand-name span{color:var(--orange)}
.footer-desc{color:rgba(255,255,255,.48);font-size:.85rem;line-height:1.75;margin-bottom:20px}

/* Phone list */
.footer-phones{display:flex;flex-direction:column;gap:8px}
.footer-phones a{
  display:inline-flex;align-items:center;gap:10px;
  color:rgba(255,255,255,.58);font-size:.84rem;
  transition:color .18s var(--ease);
}
.footer-phones a:hover{color:var(--orange)}
.footer-phones .ph-icon{
  width:28px;height:28px;border-radius:50%;flex-shrink:0;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(249,115,22,.14);border:1px solid rgba(249,115,22,.22);
  color:var(--orange);font-size:.7rem;
}

/* Column headings */
.footer-col-title{
  font-size:.68rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.14em;color:rgba(255,255,255,.28);margin-bottom:20px;
}

/* Nav links */
.footer-nav{list-style:none;padding:0;margin:0}
.footer-nav li{margin-bottom:10px}
.footer-nav a{
  display:inline-flex;align-items:center;gap:8px;
  color:rgba(255,255,255,.52);font-size:.875rem;
  transition:color .18s var(--ease),transform .18s var(--ease);
}
.footer-nav a::before{
  content:'';width:4px;height:4px;border-radius:50%;
  background:var(--orange);flex-shrink:0;
  opacity:0;transition:opacity .18s var(--ease);
}
.footer-nav a:hover{color:#fff;transform:translateX(5px)}
.footer-nav a:hover::before{opacity:1}

/* Enquiry form */
.footer-form{display:flex;flex-direction:column;gap:10px}
.footer-form .form-control{
  background:rgba(255,255,255,.07) !important;
  border:1.5px solid rgba(255,255,255,.12) !important;
  color:#fff !important;
  min-height:44px;border-radius:var(--r-sm);
  font-size:.875rem;padding:0 14px;
  font-family:'Poppins',sans-serif;
}
.footer-form .form-control::placeholder{color:rgba(255,255,255,.3) !important}
.footer-form .form-control:focus{
  border-color:var(--orange) !important;
  box-shadow:0 0 0 3px rgba(249,115,22,.15) !important;
  background:rgba(255,255,255,.10) !important;
  color:#fff !important;outline:none;
}
.footer-form .btn-footer-submit{
  display:flex;align-items:center;justify-content:center;gap:8px;
  width:100%;background:linear-gradient(135deg,#f97316,#ea6808);
  color:#fff;font-weight:700;font-size:.88rem;
  border:none;border-radius:var(--r-sm);
  min-height:46px;cursor:pointer;
  transition:box-shadow .18s var(--ease),transform .18s var(--ease);
  box-shadow:0 6px 20px rgba(249,115,22,.35);
}
.footer-form .btn-footer-submit:hover{
  box-shadow:0 10px 30px rgba(249,115,22,.55);transform:translateY(-2px);
}

/* Bottom bar */
.footer-bottom{
  padding:20px 0;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:14px;
  position:relative;z-index:1;
}
.footer-bottom p{color:rgba(255,255,255,.3);font-size:.8rem;margin:0}
.footer-social{display:flex;gap:8px}
.footer-social a{
  width:36px;height:36px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.5);font-size:.85rem;
  transition:all .2s var(--ease);
}
.footer-social a:hover{
  background:linear-gradient(135deg,#f97316,#ea6808);
  color:#fff;border-color:transparent;
  transform:translateY(-3px);box-shadow:0 8px 20px rgba(249,115,22,.4);
}

/* Trust pills */
.trust-pill{
  display:inline-flex;align-items:center;gap:6px;
  padding:5px 12px;border-radius:var(--r-full);
  font-size:.72rem;font-weight:700;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.72);
}
.trust-pill i{color:var(--gold)}
.trust-pills{display:flex;flex-wrap:wrap;gap:8px}

/* ══════════════════════════════════════════════════════════════
   VIDEO TOUR SECTION — dark cinematic with arch pattern + glow
══════════════════════════════════════════════════════════════ */
.video-tour-section{
  position:relative;
  background:linear-gradient(135deg,#030508 0%,#080f1c 35%,#0e1e38 65%,#050810 100%);
  padding:100px 0;
  overflow:hidden;
  color:#fff;
}
/* Mughal arch sketch — bottom texture */
.video-tour-section::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background-image:url('assets/img/footer-arch-pattern.svg');
  background-repeat:repeat-x;
  background-position:bottom center;
  background-size:1200px 240px;
  opacity:.06;
}
/* Radial blue glow behind the video */
.video-tour-section .vt-glow{
  position:absolute;right:-80px;top:50%;transform:translateY(-50%);
  width:600px;height:600px;border-radius:50%;pointer-events:none;
  background:radial-gradient(circle,rgba(37,99,235,.18) 0%,transparent 65%);
}
/* Left amber glow */
.video-tour-section .vt-glow2{
  position:absolute;left:-100px;bottom:-60px;
  width:420px;height:420px;border-radius:50%;pointer-events:none;
  background:radial-gradient(circle,rgba(249,115,22,.10) 0%,transparent 65%);
}

/* ── Tag badge ── */
.vt-tag{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 16px;border-radius:999px;
  background:rgba(220,38,38,.15);border:1px solid rgba(220,38,38,.3);
  color:#f87171;font-size:.78rem;font-weight:700;letter-spacing:.05em;
  text-transform:uppercase;margin-bottom:22px;
}

/* ── Feature rows ── */
.vt-feature{display:flex;align-items:flex-start;gap:14px;margin-bottom:18px}
.vt-feature-icon{
  width:40px;height:40px;border-radius:11px;flex-shrink:0;
  background:rgba(37,99,235,.14);border:1px solid rgba(37,99,235,.28);
  display:flex;align-items:center;justify-content:center;
  color:#60a5fa;font-size:.9rem;
}
.vt-feature-title{color:#fff;font-weight:600;font-size:.9rem;line-height:1.3}
.vt-feature-sub{color:rgba(255,255,255,.42);font-size:.8rem}

/* ── Video player frame with animated gradient border ── */
.vt-frame-outer{
  position:relative;
  border-radius:18px;
  padding:3px;
  background:linear-gradient(135deg,var(--blue),var(--orange),var(--gold));
  background-size:200%;
  animation:gradMove 5s linear infinite;
  box-shadow:0 0 48px rgba(37,99,235,.28),0 0 80px rgba(249,115,22,.14);
}
.vt-frame-inner{
  border-radius:16px;
  overflow:hidden;
  background:#000;
  position:relative;
}
.vt-frame-inner iframe,
.vt-frame-inner video{
  display:block;width:100%;height:100%;border:0;
}
/* 16:9 ratio container */
.vt-ratio{
  position:relative;width:100%;padding-bottom:56.25%;
}
.vt-ratio > *{
  position:absolute;inset:0;width:100%;height:100%;
}

/* ── Stats bar under video ── */
.vt-stat{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.09);
  border-radius:12px;
  padding:16px 12px;text-align:center;
  transition:background .2s;
}
.vt-stat:hover{background:rgba(255,255,255,.09)}
.vt-stat-num{
  font-family:'Playfair Display',Georgia,serif;
  font-size:1.45rem;font-weight:800;line-height:1;margin-bottom:4px;
}
.vt-stat-lbl{
  font-size:.68rem;text-transform:uppercase;letter-spacing:.1em;
  color:rgba(255,255,255,.45);
}

/* ── Placeholder (no video set) ── */
.vt-placeholder{
  display:flex;align-items:center;justify-content:center;flex-direction:column;
  gap:16px;padding:48px 24px;
  background:linear-gradient(135deg,#0a1220,#0d2240);
  text-align:center;
}
.vt-play-ring{
  width:76px;height:76px;border-radius:50%;
  background:rgba(220,38,38,.18);border:2px solid rgba(220,38,38,.38);
  display:flex;align-items:center;justify-content:center;
  font-size:1.9rem;color:#f87171;
  animation:pulse 2.5s ease-in-out infinite;
}

/* ── ABOUT (other pages) ─────────────────────────────────────── */
.about-features{display:flex;flex-direction:column;gap:0}
.about-feature-row{
  display:flex;gap:16px;align-items:flex-start;
  padding:18px 0;border-bottom:1px solid var(--border-soft);
}
.about-feature-row:last-child{border-bottom:0}
.about-feature-row h5{font-size:1rem;font-weight:700;color:var(--text);margin-bottom:4px}
.about-feature-row p{font-size:.875rem;margin:0}

/* ── ANIMATIONS & REVEALS ────────────────────────────────────── */
.reveal,.reveal-left,.reveal-right,.fade-in-up{
  opacity:0;transform:translateY(26px);
  transition:opacity .6s var(--ease-out),transform .6s var(--ease-out);
}
.reveal-left {transform:translateX(-28px)}
.reveal-right{transform:translateX(28px)}
.visible{opacity:1!important;transform:translate(0,0)!important}
.delay-1{transition-delay:.08s}
.delay-2{transition-delay:.16s}
.delay-3{transition-delay:.24s}
.delay-4{transition-delay:.32s}
.delay-5{transition-delay:.40s}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media(max-width:1199.98px){
}
@media(max-width:991.98px){
  .footer-cta-band .d-flex{flex-direction:column;align-items:flex-start}
  .wa-float{bottom:20px;right:16px}
  .scroll-top-btn{bottom:84px;right:16px}
}
@media(max-width:767.98px){
  .py-80  {padding-top:56px;padding-bottom:56px}
  .py-100 {padding-top:64px;padding-bottom:64px}
  .hero-section{min-height:auto}
  .hero-card{margin-top:32px}
  .lucky-banner-inner{flex-direction:column;text-align:center}
  .footer-bottom{flex-direction:column;align-items:flex-start}
  .footer-cta-band{padding:36px 0 32px}
  .page-banner{padding:100px 0 48px}
}
@media(max-width:575.98px){
  .hero-title{font-size:2.6rem}
  .section-title{font-size:1.85rem}
  .trust-chips{gap:6px}
}

/* ── REDUCED MOTION ──────────────────────────────────────────── */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
}

/* Dynamic fullscreen hero image slider */
.hero-section.hero-has-slider{
  min-height:100vh;
  background:#050810;
  overflow:hidden;
}
.hero-slider{
  position:absolute;
  inset:0;
  z-index:0;
  background:#050810;
}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform:scale(1.04);
  transition:opacity 900ms ease,transform 6500ms ease;
}
.hero-slide.active{
  opacity:1;
  transform:scale(1);
}
.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-slide-caption{
  position:absolute;
  left:50%;
  bottom:88px;
  transform:translateX(-50%);
  z-index:3;
  max-width:min(92vw,760px);
  padding:10px 18px;
  border-radius:999px;
  background:rgba(0,0,0,.42);
  color:#fff;
  font-size:.86rem;
  font-weight:700;
  text-align:center;
  backdrop-filter:blur(10px);
}
.hero-has-slider .hero-overlay{z-index:1}
.hero-has-slider .hero-content{
  position:relative;
  z-index:2;
}
.hero-slider-arrow{
  position:absolute;
  top:50%;
  z-index:4;
  width:50px;
  height:50px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:50%;
  background:rgba(5,8,16,.34);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  backdrop-filter:blur(12px);
  transition:all .2s var(--ease);
}
.hero-slider-arrow:hover{
  background:var(--primary);
  border-color:var(--primary);
}
.hero-slider-prev{left:24px;transform:translateY(-50%)}
.hero-slider-next{right:24px;transform:translateY(-50%)}
.hero-slider-dots{
  position:absolute;
  left:50%;
  bottom:30px;
  z-index:4;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:8px;
}
.hero-slider-dots button{
  width:9px;
  height:9px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.48);
  padding:0;
  cursor:pointer;
  transition:all .2s var(--ease);
}
.hero-slider-dots button.active{
  width:30px;
  background:linear-gradient(90deg,var(--gold),#f97316);
}
@media(max-width:767.98px){
  .hero-section.hero-has-slider{min-height:100vh}
  .hero-slider-arrow{
    width:42px;
    height:42px;
    top:auto;
    bottom:24px;
  }
  .hero-slider-prev{left:18px;transform:none}
  .hero-slider-next{right:18px;transform:none}
  .hero-slider-dots{bottom:38px}
  .hero-slide-caption{display:none}
}
@media(prefers-reduced-motion:reduce){
  .hero-slide{transition:none!important;transform:none!important}
}
