/* ==========================================================================
   ASHOK NANDAVANAM – BRINDHAVANAM PHASE V
   ULTRA-PREMIUM REDESIGN — COMPLETE STYLESHEET v3.0
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=Oswald:wght@500;600;700&display=swap');

/* ===================== DESIGN TOKENS ===================== */
:root {
  --blue: #7C3AED;
  --blue-deep: #4C1D95;
  --blue-rgb: 124, 58, 237;
  --red: #EC4899;
  --red-rgb: 236, 72, 153;
  --gold: #FF5C00;
  --gold-rgb: 255, 92, 0;
  --gold-dark: #C2410C;
  --dark: #0F172A;
  --dark2: #1E1B4B;
  --dark3: #312E81;
  --text: #0F172A;
  --text-soft: #475569;
  --bg: #FAF9FE;
  --white: #FFFFFF;

  --shadow-blue: 0 24px 60px rgba(124, 58, 237, 0.22);
  --shadow-gold: 0 12px 40px rgba(255, 92, 0, 0.25);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.10);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.25);

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.5s var(--ease);

  --font-h: 'Outfit', sans-serif;
  --font-s: 'Cormorant Garamond', serif;
  --font-b: 'Inter', sans-serif;
}

/* ===================== BASE ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-h);
  font-weight: 700;
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
}

.section-pad {
  padding: 110px 0;
}

.section-pad-sm {
  padding: 80px 0;
}

/* ===================== SCROLL PROGRESS ===================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #303258, #bb0706, #ffdd25);
  z-index: 9999;
  transition: width .1s linear;
}

/* AOS FALLBACK - Prevents elements from being invisible if JS crashes */
body:not([data-aos-easing]) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* ===================== KEYFRAMES ===================== */
@keyframes float-up-down {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

@keyframes float-gentle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--gold-rgb), .6);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(var(--gold-rgb), 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--gold-rgb), 0);
  }
}

@keyframes pulse-ring-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--blue-rgb), .6);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(var(--blue-rgb), 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--blue-rgb), 0);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 150%;
  }
}

@keyframes particle-rise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: .6;
  }

  50% {
    opacity: .3;
  }

  100% {
    transform: translateY(-100px) translateX(var(--tx, 20px)) scale(0.6);
    opacity: 0;
  }
}

@keyframes dot-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.8);
    opacity: .4;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes blink-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes bg-ken-burns {
  0% {
    transform: scale(1) translateX(0);
  }

  100% {
    transform: scale(1.12) translateX(-2%);
  }
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* ===================== UTILITY ===================== */
.shimmer-btn {
  position: relative;
  overflow: hidden;
}

.shimmer-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.5s infinite;
}

.glass {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.glass-light {
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(var(--blue-rgb), .12);
  backdrop-filter: blur(12px);
}

/* ===================== HEADER ===================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1060;
  height: 80px;
  display: flex;
  align-items: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), height .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  /* background: #303258; */
  background-color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(48, 50, 88, 0.5);
}

#main-header.scrolled {
  height: 80px;
  background: #fff;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

#main-header.header-hidden {
  transform: translateY(-180px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  position: relative;
}

.nav-logo {
  position: absolute;
  top: -15px;
  /* Adjust to ensure it aligns nicely with header top */
  left: 0;
  z-index: 1061;
}

.nav-logo img {
  height: 120px;
  width: auto;
  transition: all .4s var(--ease);
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, .3));
  border-radius: 0 0 4px 4px;
}

#main-header.scrolled .nav-logo img {
  height: 150px;
  /* Big logo hanging in half */
  transform: translateY(5px);
}

#main-header.scrolled .nav-logo {
  top: -20px;
  /* Adjust top so it stays flush with screen top when header shrinks */
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
}

.nav-links a {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .3px;
  color: #bb0708;
  padding: .55rem 1rem;
  border-radius: 6px;
  position: relative;
  transition: var(--t);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 1rem;
  width: 0;
  height: 2px;
  background: #bb0708;
  border-radius: 2px;
  transition: width .35s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: #bb0708;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: calc(100% - 2rem);
}

/* Right Nav CTA */
.nav-right {
  position: absolute;
  right: 0;
}

.nav-cta {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  background: linear-gradient(135deg, #bb0708 0%, #be110a 30%, #ffdd25 100%);
  /* background: #a70606; */
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  animation: pulse-ring 2.5s infinite;
  transition: var(--t);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.nav-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 36px rgba(var(--red-rgb), .45);
  background: linear-gradient(135deg, #bb0708 0%, #be110a 30%, #ffdd25 100%);
  color: #ffffff;
}

/* ===================== HERO ===================== */
#hero {
  position: relative;
  width: 100%;
  display: flex;
  background: var(--bg);
  margin-top: 82px;
}

.hero-image-container {
  width: 100%;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-form-container {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 10;
  width: 380px;
}

@keyframes form-pop {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes form-glow {
  0% {
    box-shadow: 0 10px 30px rgba(var(--blue-rgb), 0.15), 0 0 0 0 rgba(var(--gold-rgb), 0.4);
  }

  70% {
    box-shadow: 0 15px 40px rgba(var(--blue-rgb), 0.25), 0 0 20px 8px rgba(var(--gold-rgb), 0.25);
  }

  100% {
    box-shadow: 0 10px 30px rgba(var(--blue-rgb), 0.15), 0 0 0 0 rgba(var(--gold-rgb), 0);
  }
}

.hero-form-card {
  padding: 2.2rem 2rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid #ffdd25;
  backdrop-filter: blur(10px);
  animation: form-pop 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, form-glow 2.5s infinite ease-in-out;
  transform-origin: center;
  position: relative;
}

/* Subtle corner accent for form */
.hero-form-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 30px;
  height: 30px;
  border-top: 3px solid #bb0706;
  border-left: 3px solid #bb0706;
  border-radius: var(--r-md) 0 0 0;
}

.hero-form-card::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 30px;
  height: 30px;
  border-bottom: 3px solid #bb0706;
  border-right: 3px solid #bb0706;
  border-radius: 0 0 var(--r-md) 0;
}

.hero-form-card .form-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto 1rem auto;
  /* background: linear-gradient(135deg, #bb0708 0%, #be110a 30%, #ffdd25 100%); */
  border-radius: 8px;
  background: #a70606;
  padding: 0.6rem 1.2rem;
}

.hero-form-card .form-logo img {
  max-height: 70px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.hero-form-card .form-title {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 0.3rem;
  text-align: center;
}

.hero-form-card .form-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-form-card .form-control {
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f9f9f9;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.hero-form-card .form-control:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--gold-rgb), 0.15);
  outline: none;
}

/* ===================== MARQUEE TICKER ===================== */
.ticker-wrap {
  background: linear-gradient(135deg, #bb0708 0%, #bb0708 100%, #ffdd25 100%);
  padding: .7rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(var(--gold-rgb), .15);
  border-bottom: 1px solid rgba(var(--gold-rgb), .15);
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 25s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 0 2.5rem;
  color: rgba(255, 255, 255, .8);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-item i {
  color: #ffe32f;
  font-size: .9rem;
}

.ticker-sep {
  color: rgb(255 255 255);
  font-size: 1.2rem;
}

/* ===================== SECTION LABELS & TITLES ===================== */
.s-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #bb0706;
  margin-bottom: .75rem;
}

.s-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ffdd25, #bb0706);
  border-radius: 2px;
  flex-shrink: 0;
}

.s-title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
}

.s-title .highlight {
  color: #bb0706;
}

.s-title .accent {
  color: #ffdd25;
}

.s-desc {
  font-size: 1.05rem;
  color: #1f2731;
  line-height: 1.8;
  font-weight: 400;
  max-width: 600px;
}

/* ===================== WHY ASHOK — STORYTELLING ===================== */
#why-us {
  background: #fff;
  overflow: hidden;
  position: relative;
}

.why-us-bg-num {
  position: absolute;
  left: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-h);
  font-size: clamp(18rem, 30vw, 32rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(var(--blue-rgb), .05);
  user-select: none;
  pointer-events: none;
  letter-spacing: -20px;
}

/* Left storytelling */
.why-left {
  position: relative;
  z-index: 2;
  padding-right: 3rem;
}

.why-big-num {
  font-family: var(--font-h);
  font-size: clamp(7rem, 15vw, 14rem);
  font-weight: 900;
  line-height: .9;
  background: linear-gradient(135deg, #bb0708 0%, #ffdb23 100%, #ffdd25 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .5rem;
  display: block;
}

.why-big-label {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.why-big-label span {
  color: #bb0706;
  display: block;
}

.why-desc {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  /* max-width: 400px; */
}

.why-trust-line {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 600;
  color: #bb0706;
  font-size: .95rem;
}

.why-trust-line::before {
  content: '';
  width: 36px;
  height: 2px;
  background: #bb0706;
  border-radius: 2px;
}

/* Stat cards - Luxury Typographic Left-Border Layout */
.stat-float-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 2rem;
  position: relative;
  z-index: 2;
  margin-top: 1rem;
}

.stat-float-grid::before {
  content: none;
}

.stat-float-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 0 0 1.5rem;
  text-align: left;
  border-left: 4px solid rgba(var(--blue-rgb), 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  width: 100%;
}

/* Hover dynamic border fill */
.stat-float-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -4px;
  /* Match border width */
  bottom: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #bb0706, #ffdd25);
  transition: bottom 0.5s ease;
}

.stat-float-card:hover {
  transform: translateX(12px);
  box-shadow: none;
  background: transparent;
}

.stat-float-card:hover::before {
  bottom: 0;
}

/* Luxury Icon Design */
.sfc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--blue-rgb), 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.5rem 0;
  transition: all 0.4s ease;
  z-index: 2;
}

.sfc-icon i {
  font-size: 1.4rem;
  color: #bb0706;
  background: none;
  -webkit-text-fill-color: initial;
  transition: all 0.4s ease;
}

/* Icon hover effects */
.stat-float-card:hover .sfc-icon {
  background: #bb0706;
  box-shadow: 0 8px 20px rgba(var(--blue-rgb), 0.2);
}

.stat-float-card:hover .sfc-icon i {
  color: #fff;
  transform: scale(1.1);
}

/* Number Styling - Huge & Elegant */
.sfc-num {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #bb0706;
  margin-bottom: 0.5rem;
  letter-spacing: -1.5px;
}

.sfc-suffix {
  font-size: 1.5rem;
  color: var(--gold);
}

.sfc-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Horizontal Icon Timeline — Why Investors */
.investor-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 5rem;
  position: relative;
}

.investor-timeline::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #303258, #bb0706, #ffdd25, #bb0706, #303258);
}

.inv-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
  position: relative;
}

.inv-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bb0708 0%, #be110a 30%, #ffdd25 100%);
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, .2), var(--shadow-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: var(--t);
}

.inv-dot i {
  color: #fff;
  font-size: 1.1rem;
}

.inv-item:hover .inv-dot {
  transform: scale(1.2);
  background: linear-gradient(135deg, #bb0708 0%, #be110a 30%, #ffdd25 100%);
}

.inv-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
}

/* ===================== PROJECT OVERVIEW ===================== */
#overview {
  background: var(--bg);
  position: relative;
  /* overflow: hidden; */
}

/* Blueprint watermark */
#overview::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(var(--blue-rgb), .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--blue-rgb), .04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.overview-inner {
  position: relative;
  z-index: 1;
}

/* Highlight cards */
.proj-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.proj-hl-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(var(--blue-rgb), .08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .9rem;
  transition: var(--t);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.proj-hl-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #bb0706, #ffdd25);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.proj-hl-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-blue);
}

.proj-hl-card:hover::after {
  transform: scaleX(1);
}

.hl-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--blue-rgb), .1), rgba(var(--blue-rgb), .04));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}

.hl-icon i {
  font-size: 1.3rem;
  color: #bb0706;
  transition: var(--t);
}

.proj-hl-card:hover .hl-icon {
  background: linear-gradient(135deg, #bb0708 0%, #be110a 30%, #ffdd25 100%);
}

.proj-hl-card:hover .hl-icon i {
  color: #fff;
}

.hl-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.hl-desc {
  font-size: .82rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

/* Zigzag rows */
.zz-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 6rem;
}

.zz-row.reverse {
  direction: rtl;
}

.zz-row.reverse>* {
  direction: ltr;
}

.zz-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-blue);
}

.zz-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.zz-img:hover img {
  transform: scale(1.07);
}

.zz-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(var(--blue-rgb), .92);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
  border-left: 3px solid var(--gold);
}

.zz-features {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin: 1.5rem 0 2rem;
}

.zz-feat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.1rem;
  background: #fff;
  border-radius: 12px;
  border-left: 3px solid transparent;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  transition: var(--t);
}

.zz-feat:hover {
  border-left-color: #bb0706;
  transform: translateX(6px);
  box-shadow: var(--shadow-card);
}

.zz-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(var(--blue-rgb), .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
}

.zz-feat-icon i {
  color: #bb0706;
  font-size: 1.15rem;
  transition: var(--t);
}

.zz-feat:hover .zz-feat-icon {
  background: linear-gradient(135deg, #bb0708 0%, #be110a 30%, #ffdd25 100%);
}

.zz-feat:hover .zz-feat-icon i {
  color: #fff;
}

.zz-feat-text h5 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .1rem;
}

.zz-feat-text p {
  font-size: .82rem;
  color: var(--text-soft);
  margin: 0;
}

/* Solid CTA button */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, #bb0708 0%, #be110a 30%, #ffdd25 100%);
  /* background: #a70606; */
  color: #fff;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 26px;
  padding: .6rem 2rem;
  border-radius: 50px;
  border: none;
  transition: var(--t);
}

.btn-solid:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(var(--blue-rgb), .4);
  color: #fff;
}

/* ===================== AMENITIES — COVERFLOW 3D ===================== */
#amenities {
  background: linear-gradient(160deg, #F3F0FF 0%, #EDE5FF 50%, #F9F0FF 100%);
  overflow: hidden;
  position: relative;
}

#amenities::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 168, 0, .15) 0%, transparent 65%);
  pointer-events: none;
}

#amenities .s-label {
  color: #bb0706;
}

#amenities .s-title {
  color: var(--dark);
}

#amenities .s-desc {
  color: var(--text-soft);
}

.amenities-coverflow {
  width: 100%;
  padding: 2.5rem 0 4.5rem;
  overflow: visible !important;
}

.amenities-coverflow .swiper-slide {
  width: 320px;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: grab;
}

.amenity-cf-card {
  position: relative;
  height: 420px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
  animation: float-gentle 5s ease-in-out infinite;
}

.amenity-cf-card:nth-child(odd) {
  animation-delay: -.8s;
}

.amenity-cf-img {
  position: absolute;
  inset: 0;
}

.amenity-cf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.amenity-cf-card:hover .amenity-cf-img img {
  transform: scale(1.12);
}

.amenity-cf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 15, 40, .9) 0%, rgba(0, 15, 40, .3) 60%, transparent 100%);
  transition: var(--t);
}

.amenity-cf-card:hover .amenity-cf-overlay {
  background: linear-gradient(0deg, rgba(var(--blue-rgb), .92) 0%, rgba(var(--blue-rgb), .4) 60%, transparent 100%);
}

.amenity-cf-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.75rem;
}

.amenity-cf-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(var(--gold-rgb), .15);
  border: 1px solid rgba(var(--gold-rgb), .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--t);
}

.amenity-cf-icon i {
  color: var(--gold);
  font-size: 1.4rem;
}

.amenity-cf-card:hover .amenity-cf-icon {
  background: var(--gold);
  transform: translateY(-6px) scale(1.1);
}

.amenity-cf-card:hover .amenity-cf-icon i {
  color: var(--dark);
}

.amenity-cf-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.amenity-cf-sub {
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  margin: .25rem 0 0;
}

.amenity-glow-border {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 1px solid rgba(var(--gold-rgb), 0);
  transition: var(--t);
}

.amenity-cf-card:hover .amenity-glow-border {
  border-color: rgba(var(--gold-rgb), .35);
  box-shadow: inset 0 0 30px rgba(var(--gold-rgb), .06);
}

.amenities-coverflow .swiper-button-next,
.amenities-coverflow .swiper-button-prev {
  color: #fff;
  background: #bb0706;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: var(--t);
}

.amenities-coverflow .swiper-button-next:hover,
.amenities-coverflow .swiper-button-prev:hover {
  background: #bb0706;
}

.amenities-coverflow .swiper-button-next::after,
.amenities-coverflow .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 900;
}

.amenities-coverflow .swiper-pagination-bullet {
  background: rgba(0, 0, 0, .3);
  opacity: 1;
}

.amenities-coverflow .swiper-pagination-bullet-active {
  background: #bb0706;
  width: 24px;
  border-radius: 4px;
}

/* ===================== GALLERY — CREATIVE EFFECT ===================== */
#gallery {
  background: var(--dark2);
  overflow: hidden;
  padding: 100px 0;
}

#gallery .s-label {
  color: #bb0706;
}

#gallery .s-title {
  color: var(--dark);
}

#gallery .s-desc {
  color: var(--text-soft);
}

.gallery-creative {
  width: 100%;
  padding: 2rem 0 5rem;
  overflow: visible !important;
}

.gallery-creative .swiper-slide {
  width: 75%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0, 0, 0, .5);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.gallery-creative .swiper-slide-active {
  box-shadow: 0 24px 80px rgba(var(--blue-rgb), .5), 0 0 60px rgba(var(--gold-rgb), .08);
}

.gallery-slide-inner {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.gallery-slide-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.gallery-creative .swiper-slide:hover .gallery-slide-inner img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, .9) 0%, transparent 100%);
}

.gallery-caption h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .3rem;
}

.gallery-caption p {
  color: rgba(255, 255, 255, .6);
  font-size: .88rem;
  margin: 0;
}

.gallery-creative .swiper-button-next,
.gallery-creative .swiper-button-prev {
  color: var(--gold);
  background: rgba(var(--blue-rgb), .6);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: var(--t);
}

.gallery-creative .swiper-button-next:hover,
.gallery-creative .swiper-button-prev:hover {
  background: #bb0706;
  transform: scale(1.1);
}

.gallery-creative .swiper-button-next::after,
.gallery-creative .swiper-button-prev::after {
  font-size: 1.1rem;
  font-weight: 900;
}

.gallery-creative .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .3);
  opacity: 1;
}

.gallery-creative .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ===================== LAYOUT PLAN ===================== */
#layout-plan {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Blueprint bg */
#layout-plan::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(var(--blue-rgb), .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--blue-rgb), .05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.layout-inner {
  position: relative;
  z-index: 1;
}

.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.layout-img-box {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-blue);
}

.layout-img-box img {
  width: 100%;
  display: block;
  transition: transform .7s var(--ease);
}

.layout-img-box:hover img {
  transform: scale(1.05);
}

/* Hotspots */
.hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  z-index: 5;
  transition: var(--t);
}

.hotspot::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(var(--gold-rgb), .5);
  animation: dot-pulse 1.8s ease-in-out infinite;
}

.hotspot::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(var(--gold-rgb), .2);
  animation: dot-pulse 1.8s ease-in-out infinite .3s;
}

.hotspot-tip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 30, 60, .92);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: .5rem .9rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: var(--t);
  pointer-events: none;
  border: 1px solid rgba(var(--gold-rgb), .2);
}

.hotspot:hover .hotspot-tip {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.hotspot:hover {
  transform: scale(1.35);
}

/* Layout controls */
.layout-img-ctrls {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: .5rem;
}

.layout-ctrl {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 20, 50, .75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--gold-rgb), .3);
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
  outline: none;
}

.layout-ctrl:hover {
  background: #bb0706;
}

/* Layout highlights */
.layout-hls {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2rem;
}

.layout-hl {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 1.5rem;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(var(--blue-rgb), .08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  transition: var(--t);
}

.layout-hl:hover {
  transform: translateX(8px);
  border-color: #bb0706;
  box-shadow: var(--shadow-card);
}

.lh-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bb0708 0%, #be110a 30%, #ffdd25 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lh-body h5 {
  font-size: .93rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .1rem;
}

.lh-body p {
  font-size: 13px;
  color: var(--text-soft);
  margin: 0;
}

/* ===================== LOCATION — TIMELINE ===================== */
#location {
  background: #fff;
  overflow: hidden;
  position: relative;
}

/* Map bg watermark */
#location::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(var(--blue-rgb), .04) 0%, transparent 70%);
  pointer-events: none;
}

.loc-timeline {
  position: relative;
  max-width: 860px;
  margin: 4rem auto 0;
}

.loc-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #303258, #bb0706, #ffdd25, #bb0706, #303258);
  transform: translateX(-50%);
  transform-origin: top;
  border-radius: 2px;
}

.loc-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.75rem;
}

.loc-item:last-child {
  margin-bottom: 0;
}

.loc-card {
  background: #fff;
  border: 1px solid rgba(var(--blue-rgb), .12);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
  transition: var(--t);
}

.loc-card:hover {
  border-color: #bb0706;
  transform: scale(1.04);
  box-shadow: var(--shadow-blue);
}

.loc-name {
  font-weight: 700;
  font-size: .92rem;
  color: var(--text);
  margin-bottom: .3rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.loc-name i {
  color: #bb0706;
}

.loc-time-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(var(--blue-rgb), .08);
  color: #bb0706;
  font-size: .78rem;
  font-weight: 700;
  padding: .2rem .7rem;
  border-radius: 50px;
}

.loc-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-node {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bb0708 0%, #be110a 30%, #ffdd25 100%);
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, .2), var(--shadow-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: var(--t);
}

.loc-node i {
  color: #fff;
  font-size: 1.15rem;
}

.loc-item:hover .loc-node {
  transform: scale(1.25);
  background: linear-gradient(135deg, #bb0708 0%, #be110a 30%, #ffdd25 100%);
}

.loc-empty {}

/* Right side (even items) */
.loc-item.is-right .loc-card {
  grid-column: 3;
  grid-row: 1;
  text-align: left;
}

.loc-item.is-right .loc-center {
  grid-column: 2;
  grid-row: 1;
}

.loc-item.is-right .loc-empty {
  grid-column: 1;
  grid-row: 1;
}

/* Left side (odd items) */
.loc-item.is-left .loc-card {
  grid-column: 1;
  text-align: right;
}

.loc-item.is-left .loc-center {
  grid-column: 2;
}

.loc-item.is-left .loc-empty {
  grid-column: 3;
}

.loc-item.is-left .loc-name {
  justify-content: flex-end;
}

/* ===================== ABOUT ===================== */
#about {
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
}

.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(48, 50, 88, .95) 0%, rgba(15, 10, 30, .95) 100%);
}

.about-z {
  position: relative;
  z-index: 2;
}

.about-glass {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  backdrop-filter: blur(24px);
  border-radius: var(--r-xl);
  padding: 4rem;
}

.about-stats-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-top: 2.5rem;
}

.about-stats-row::-webkit-scrollbar {
  display: none;
}

.ast {
  min-width: 140px;
  flex-shrink: 0;
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-md);
  transition: var(--t);
}

.ast:hover {
  background: rgba(var(--gold-rgb), .1);
  border-color: rgba(var(--gold-rgb), .35);
  transform: translateY(-6px);
}

.ast-num {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
}

.ast-lbl {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: .35rem;
}

/* ===================== SITE VISIT CTA ===================== */
#site-cta {
  background: linear-gradient(135deg, #303258 0%, #bb0706 50%, #ffdd25 100%);
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
  position: relative;
  overflow: hidden;
}

#site-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.cta-headline em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.cta-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cta-feat {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .9);
  font-size: .88rem;
  font-weight: 600;
  padding: .6rem 1.3rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

.cta-feat i {
  color: var(--gold);
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

/* CTA Buttons */
.btn-cta-w {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #fff;
  color: #bb0706;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .9rem;
  padding: 1.05rem 2.25rem;
  border-radius: 50px;
  border: none;
  animation: pulse-ring 2.5s infinite;
  transition: var(--t);
}

.btn-cta-w:hover {
  transform: translateY(-5px);
  background: var(--gold);
  box-shadow: 0 18px 40px rgba(255, 255, 255, .3);
}

.btn-cta-g {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .9rem;
  padding: 1.05rem 2.25rem;
  border-radius: 50px;
  border: none;
  transition: var(--t);
}

.btn-cta-g:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, .45);
  color: #fff;
}

.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(135deg, #bb0708 0%, #be110a 30%, #ffdd25 100%);
  color: var(--dark);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .9rem;
  padding: 1.05rem 2.25rem;
  border-radius: 50px;
  border: none;
  transition: var(--t);
}

.btn-cta-gold:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(var(--gold-rgb), .5);
}

/* CTA Glass Form */
.cta-glass-form {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(24px);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  animation: float-gentle 5s ease-in-out infinite;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.gl-input-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.gl-input-wrap i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1rem;
}

.gl-input {
  width: 100%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  padding: .85rem 1rem .85rem 2.75rem;
  border-radius: 12px;
  font-size: .9rem;
  outline: none;
  font-family: var(--font-b);
  transition: var(--t);
}

.gl-input::placeholder {
  color: rgba(255, 255, 255, .45);
}

.gl-input:focus {
  border-color: rgba(var(--gold-rgb), .6);
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), .15);
}

.btn-gl-submit {
  width: 100%;
  background: linear-gradient(135deg, #bb0708 0%, #be110a 30%, #ffdd25 100%);
  color: var(--dark);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: 12px;
  border: none;
  margin-top: .25rem;
  transition: var(--t);
}

.btn-gl-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(var(--gold-rgb), .45);
}

/* ===================== FOOTER ===================== */
#footer {
  background: #050D1A;
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-desc {
  color: rgba(255, 255, 255, .4);
  font-size: .88rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: .7rem;
}

.soc-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .55);
  font-size: 1rem;
  transition: var(--t);
}

.soc-btn:hover {
  background: #bb0706;
  border-color: #bb0706;
  color: #fff;
  transform: translateY(-3px);
}

.f-heading {
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(var(--gold-rgb), .15);
}

.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.f-links a {
  color: rgba(255, 255, 255, .45);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: var(--t);
}

.f-links a i {
  color: var(--gold);
  font-size: .75rem;
}

.f-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.f-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(255, 255, 255, .45);
  font-size: .88rem;
}

.f-contact-item i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .25);
  font-size: .8rem;
  margin: 0;
}

/* ===================== FLOATING ELEMENTS ===================== */
.wa-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
  animation: pulse-ring 2.5s infinite;
  transition: var(--t);
}

.wa-float:hover {
  transform: scale(1.15) translateY(-4px);
  color: #fff;
}

.btt-btn {
  position: fixed;
  bottom: 24px;
  right: 40px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #bb0706;
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgb(237 167 34);
  opacity: 0;
  pointer-events: none;
  transition: var(--t);
}

.btt-btn.show {
  opacity: 1;
  pointer-events: all;
}

.btt-btn:hover {
  background: #ffdd25;
  color: var(--dark);
  transform: translateY(-4px);
}

/* Sticky mobile bar */
.mob-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: transparent;
  padding: 0;
  border-top: none;
}

.mob-sticky-inner {
  display: flex;
  gap: 0;
  width: 100%;
}

.msb {
  flex: 1;
  padding: 1.1rem .5rem;
  border-radius: 0;
  border: none;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  text-transform: uppercase;
}

.msb-call {
  background: #bb0706;
  color: #fff;
}

.msb-enq {
  background: #bb0706;
  color: #fff;
  border-left: 2px solid #fff;
}

/* ===================== MODAL ===================== */
.lead-modal .modal-content {
  background: var(--dark2);
  border: 1px solid rgba(var(--gold-rgb), .15);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.lead-modal .modal-header {
  background: linear-gradient(135deg, #bb0708 0%, #be110a 30%, #ffdd25 100%);
  border-bottom: none;
  padding: 1.75rem 2rem;
}

.lead-modal .modal-title {
  color: #fff;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.25rem;
}

.lead-modal .modal-subtitle {
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  margin: .25rem 0 0;
}

.lead-modal .btn-close {
  filter: brightness(0) invert(1);
  opacity: .8;
}

.lead-modal .modal-body {
  padding: 2rem;
}

.success-view {
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 8px 28px rgba(34, 197, 94, .45);
}

.success-view h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: .75rem;
}

.success-view p {
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1.5rem;
}

/* Lightbox */
#lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .95);
  align-items: center;
  justify-content: center;
}

#lb-overlay.open {
  display: flex;
}

.lb-ctrls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: .5rem;
}

.lb-ctrl {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
}

.lb-ctrl:hover {
  background: #bb0706;
}

.lb-ctrl.close {
  background: rgba(var(--red-rgb), .7);
}

#lb-img {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .8);
  transition: transform .3s var(--ease);
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:1200px) {
  .stat-float-grid {
    gap: 2rem 1rem;
  }

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

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

@media(max-width:992px) {
  .nav-links {
    display: none;
  }

  #hero {
    flex-direction: column;
  }

  .hero-form-container {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    padding: 2rem 1.5rem;
    margin-top: -20px;
    /* Overlap the image slightly, or just 0 */
  }

  .hero-form-card {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }

  .zz-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .zz-row.reverse {
    direction: ltr;
  }

  .layout-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .loc-timeline {
    max-width: 100%;
  }

  .loc-item.is-left .loc-name {
    justify-content: flex-start;
  }

  .about-glass {
    padding: 2.5rem;
  }

  .mob-sticky {
    display: flex;
  }

  .investor-timeline {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .investor-timeline::before {
    display: none;
  }

  .inv-item {
    flex: 0 1 calc(33% - 1rem);
  }
}

@media(max-width:768px) {

  #gallery {
    padding: 50px 0 0;
  }

  .sfc-label {
    align-self: center;
  }

  .sfc-icon {
    align-self: center;
  }

  .sfc-num {
    align-self: center;
  }

  .why-big-num {
    text-align: center;
  }

  .why-big-label {
    text-align: center;
  }


  html {
    font-size: 15px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .s-title {
    font-size: 2.4rem !important;
  }

  .s-desc {
    font-size: 1.05rem !important;
    padding: 0 10px;
  }

  .hero-project-logo {
    height: 80px;
  }

  #hero {
    margin-top: 80px;
  }

  #main-header {
    height: 80px;
  }

  #main-header.scrolled {
    height: 75px;
  }

  .nav-logo {
    top: -20px;
  }

  .nav-logo img {
    height: 90px;
  }

  #main-header.scrolled .nav-logo {
    top: -25px;
  }

  #main-header.scrolled .nav-logo img {
    height: 110px;
    transform: translateY(0);
  }

  .nav-cta {
    font-size: 1rem;
    padding: 0.8rem 1.4rem;
  }

  .stat-float-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
    margin-top: 2rem;
  }

  .sfc-num {
    font-size: 18px;
  }

  .gallery-creative .swiper-slide {
    width: 90%;
  }

  .gallery-slide-inner {
    height: 300px;
  }

  .amenities-coverflow .swiper-slide {
    width: 280px;
  }

  .amenity-cf-card {
    height: 360px;
  }

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

  .about-glass {
    padding: 1.75rem;
  }

  .proj-highlights {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-left {
    padding-right: 0;
  }
}

@media(max-width:576px) {
  html {
    font-size: 14.5px;
  }

  .s-title {
    font-size: 20px !important;
  }

  .btt-btn {
    bottom: 60px;
    right: 10px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .loc-item {
    grid-template-columns: 1fr auto;
  }

  .loc-item.is-right .loc-card {
    grid-column: 1;
    text-align: left;
  }

  .loc-item.is-right .loc-center {
    grid-column: 2;
  }

  .loc-item.is-right .loc-empty {
    display: none;
  }

  .loc-item.is-left .loc-card {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    justify-content: flex-start;
  }

  .loc-item.is-left .loc-center {
    grid-column: 2;
    grid-row: 1;
  }

  .loc-item.is-left .loc-empty {
    display: none;
  }

  .loc-item.is-left .loc-name {
    justify-content: flex-start;
  }

  .loc-track {
    left: auto;
    right: 1.5rem;
  }

  .cta-headline {
    font-size: 2.2rem;
  }

  .inv-item {
    flex: 0 1 calc(50% - .75rem);
  }
}


/* ===================== NEW FOOTER ===================== */
.new-footer {
  background-color: #525659;
  padding: 3rem 0 1.5rem;
  color: #fff;
  font-family: var(--font-b);
}

.footer-disclaimer p {
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.footer-qr-section {
  text-align: center;
  margin-bottom: 2rem;
}

.qr-box {
  display: inline-block;
  background: #fff;
  padding: 8px;
  margin-bottom: 1rem;
}

.qr-box img {
  width: 120px;
  height: 120px;
  display: block;
}

.rera-text {
  font-size: 0.85rem;
  margin: 0;
  color: #fff;
}

.footer-divider {
  border: 0;
  height: 1px;
  background: #fff;
  margin: 0 0 1.5rem 0;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-bar p {
  margin: 0;
  font-size: 0.85rem;
  color: #fff;
}

@media(max-width: 768px) {





  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    margin-bottom: 40px;
  }
}




.form-control {
  height: 50px;
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #999999;
  border: none;
  border-radius: 0;
  background-color: #f3f3f3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.form-control:focus {
  border: none;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  background-color: #f3f3f3;
}

.form-control::-webkit-input-placeholder {
  color: #999999;
}

.form-control:-ms-input-placeholder {
  color: #999999;
}

.form-control::-ms-input-placeholder {
  color: #999999;
}

.form-control::placeholder {
  color: #999999;
}