/* ============================================================
   ARKA — Ultra-Luxury Real Estate Landing Page
   Dark Maroon × Gold Luxury Aesthetic
   ============================================================ */

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

/* ── Variables ── */
:root {
  --color-primary:      #1A0A04;
  --color-secondary:    #3D1A10;
  --color-accent:       #C9A96E;
  --color-accent-light: #E8C98A;
  --color-text-light:   #F5EFE6;
  --color-text-muted:   #A89078;
  --color-off-white:    #F8F3ED;
  --color-near-black:   #0D0604;
  --font-display:       'Cormorant Garamond', Georgia, serif;
  --font-body:          'Montserrat', sans-serif;
  --transition:         0.3s ease;
}

/* ── Logo images ── */
.header-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.logo-img-arka {
  height: 75px;
  width: auto;
  display: block;
  filter: none;
  mix-blend-mode: multiply;
  transition: opacity var(--transition);
}
.logo-img-arka:hover { opacity: 0.75; }
.logo-img-builder {
  height: 30px;
  width: auto;
  display: block;
  border-radius: 3px;
  background: transparent;
  padding: 4px 8px;
  transition: opacity var(--transition);
}
.logo-img-builder:hover { opacity: 0.85; }
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
/* Loading screen logo */
.loader-logos-row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.loader-logos-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.25);
  animation: logoReveal 0.9s ease forwards;
}
.loader-logo-team4 {
  height: 48px !important;
  filter: brightness(0) invert(1);
}
.loader-logo-img {
  height: 150px;
  width: auto;
  display: block;
  animation: logoReveal 0.9s ease forwards;
  opacity: 0;
  filter: brightness(0) invert(1);
}
/* Sticky bar logo */
.sticky-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky-logos-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.3);
}
.sticky-logo-img {
  height: 32px;
  width: auto;
  padding: 3px 6px;
  border-radius: 2px;
  filter: brightness(0) invert(1);
}
.sticky-logo-team4 {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ── Real image helper ── */
.has-image::after,
.has-image::before { display: none !important; }
.gallery-item.has-image .gallery-item-bg { display: none; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: #F8F3ED;
  color: var(--color-text-light);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  width: 0%;
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 12px;
  text-transform: uppercase;
  animation: logoReveal 0.8s ease forwards;
  opacity: 0;
}
@keyframes logoReveal {
  from { opacity: 0; letter-spacing: 20px; }
  to   { opacity: 1; letter-spacing: 12px; }
}
.loader-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-top: 12px;
  animation: fadeUp 0.8s 0.4s ease forwards;
  opacity: 0;
}
.loader-ring {
  margin-top: 36px;
  position: relative;
  width: 80px;
  height: 80px;
}
.loader-ring-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.15);
  animation: ringPulse 1.5s ease-out infinite;
}
.loader-ring-inner:nth-child(2) { animation-delay: 0.3s; }
.loader-ring-inner:nth-child(3) { animation-delay: 0.6s; }
@keyframes ringPulse {
  0%   { transform: scale(0); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
.loader-dots {
  display: flex;
  gap: 6px;
  margin-top: 32px;
  animation: fadeUp 0.8s 0.6s ease forwards;
  opacity: 0;
}
.loader-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: dotBounce 1.2s ease infinite;
}
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%       { transform: translateY(-8px); opacity: 1; }
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: relative;
  z-index: 100;
  padding: 16px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #E8E4DE;
}
/* legacy text logo fallback — no longer used in main pages */
.header-logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1;
}
.header-logo span {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: 300;
  margin-top: 2px;
}
.header-nav { display: flex; gap: 36px; align-items: center; }
.header-nav a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3D1A10;
  transition: color var(--transition);
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.header-nav a:hover { color: var(--color-accent); }
.header-nav a:hover::after { transform: scaleX(1); }
.btn-enquire-header {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 11px 28px;
  border: 1.5px solid var(--color-secondary);
  color: var(--color-secondary);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  background: transparent;
}
.btn-enquire-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: -1;
}
.btn-enquire-header:hover { color: var(--color-accent); }
.btn-enquire-header:hover::before { transform: scaleX(1); }

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-accent);
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu Overlay */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(26,10,4,0.98);
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
}
#mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--color-text-light);
  font-size: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition);
}
.mobile-menu-close:hover { border-color: var(--color-accent); color: var(--color-accent); }
#mobile-menu a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: 4px;
  transition: color var(--transition);
}
#mobile-menu a:hover { color: var(--color-accent); }
.mobile-menu-cta {
  margin-top: 16px;
  padding: 14px 40px;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent) !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  letter-spacing: 3px !important;
}

/* ============================================================
   BUTTONS — Global
   ============================================================ */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--color-accent);
  color: var(--color-primary);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-20deg) translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover { background: var(--color-accent-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.3); }
.btn-primary:hover::after { transform: skewX(-20deg) translateX(350%); }

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 38px;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: -1;
}
.btn-outline:hover { color: var(--color-primary); transform: translateY(-2px); }
.btn-outline:hover::before { transform: scaleX(1); }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  height: calc(100vh - 100px);
  min-height: 580px;
  overflow: hidden;
  margin: 0 32px;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,6,4,0.65) 0%,
    rgba(26,10,4,0.40) 45%,
    rgba(26,10,4,0.05) 100%
  ), linear-gradient(to top, rgba(13,6,4,0.35) 0%, transparent 35%);
}
/* Slide responsive images */
.slide-1 .hero-slide-bg,
.slide-2 .hero-slide-bg,
.slide-3 .hero-slide-bg,
.slide-4 .hero-slide-bg,
.slide-5 .hero-slide-bg { background-color: #1A0A04; }
.hero-slide-bg picture,
.hero-slide-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 0 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--color-accent);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-pin {
  width: 14px;
  height: 18px;
  flex-shrink: 0;
  margin-right: -4px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-text-light);
  margin-top: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s 0.2s ease;
}
.hero-headline--sm {
  font-size: clamp(38px, 5vw, 72px);
}
.hero-headline em {
  font-style: italic;
  color: var(--color-accent);
}.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(#ffffff);
  letter-spacing: 1px;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s 0.35s ease;
}
.hero-rera {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--color-text-white);
  border: 0px solid rgba(201,169,110,0.3);
  padding: 5px 14px;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s 0.45s ease;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s 0.55s ease;
}
.hero-slide.active .hero-eyebrow,
.hero-slide.active .hero-headline,
.hero-slide.active .hero-sub,
.hero-slide.active .hero-rera,
.hero-slide.active .hero-ctas {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero stats strip ── */
#hero-stats {
  background: var(--color-off-white);
  padding: 36px 80px;
}
.hero-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-stat-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: #1A0A04;
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
}
.hero-stat-divider {
  display: none;
}

.hero-watermark {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  letter-spacing: 24px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 6;
  line-height: 1;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
}
.hero-scroll-indicator span {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--color-text-muted);
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--color-accent);
  border-bottom: 1.5px solid var(--color-accent);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 24px;
  height: 2px;
  background: rgba(201,169,110,0.3);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--color-accent);
  width: 40px;
}

/* ============================================================
   MOBILE OPEN FORM
   ============================================================ */
#mobile-form {
  display: none;
  background: var(--color-primary);
  border-top: 3px solid var(--color-accent);
  padding: 40px 24px;
}
#mobile-form .form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 24px;
}

/* ============================================================
   SECTION — Common
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--color-accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.1;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-top: 12px;
  line-height: 1.8;
}
.section-padding { padding: 100px 80px; }

/* ============================================================
   PROJECT OVERVIEW
   ============================================================ */
#overview {
  background: var(--color-off-white);
  padding: 100px 80px;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.overview-img {
  height: 600px;
  background: linear-gradient(135deg, #2A1008 0%, #3D1A10 50%, #1A0A04 100%);
  position: relative;
  overflow: hidden;
}
.overview-img::after {
  content: 'ARKA — TOWER RENDER';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,169,110,0.35);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.overview-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(201,169,110,0.05) 50%, transparent 60%);
  animation: sheen 4s ease infinite;
}
@keyframes sheen {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}
.overview-text { color: #2A1008; }
.overview-text .section-eyebrow { color: var(--color-secondary); }
.overview-text .section-eyebrow::before { background: var(--color-secondary); }
.overview-text .section-title { color: #1A0A04; }
.overview-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: #5A3A28;
  line-height: 1.85;
  margin-top: 20px;
}
.overview-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.overview-pill {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 900 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid rgba(61,26,16,0.3);
  color: var(--color-secondary);
}
.overview-ctas {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.overview-ctas .btn-outline {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}
.overview-ctas .btn-outline::before { background: var(--color-secondary); }
.overview-ctas .btn-outline:hover { color: var(--color-off-white); }
.overview-rera {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-top: 20px;
}

/* ============================================================
   COUNTERS
   ============================================================ */
#counters {
  background: var(--color-primary);
  padding: 80px;
  position: relative;
  overflow: hidden;
}
#counters::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,169,110,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.counters-grid {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.counter-item {
  flex: 1;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}
.counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3), transparent);
}
.counter-number {
  font-family: var(--font-display);
  font-size: clamp(60px, 7vw, 90px);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  display: block;
}
.counter-suffix {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  color: var(--color-accent);
}
.counter-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 10px;
  display: block;
}

/* ============================================================
   VIDEO WALKTHROUGH — Full Width Autoplay
   ============================================================ */
#video {
  background: #000;
  padding: 0;
  line-height: 0;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201,169,110,0.9);
  color: #1A0A04;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.video-play-btn:hover { background: var(--color-accent); transform: translate(-50%, -50%) scale(1.1); }
.video-play-btn.hidden { display: none; }
.video-fullwidth {
  position: relative;
  width: 100%;
  padding-bottom: 32%;
  overflow: hidden;
}
.video-fullwidth iframe,
.video-fullwidth video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto;
  object-fit: cover;
}

/* ============================================================
   9 LEAGUE FEATURES — Image Card Style
   ============================================================ */
#features {
  background: #F8F3ED;
  padding: 100px 80px;
}
.features-arrow { display: none; }
.features-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 48px;
  gap: 24px;
}
.features-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-muted);
  max-width: 360px;
  text-align: right;
  line-height: 1.7;
  color: #3A2010;
  align-self: center;
}
.features-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-img-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}
.feature-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.feature-img-card:hover .feature-img-bg { transform: scale(1.06); }
.feature-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,6,4,0.88) 0%, rgba(13,6,4,0.2) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px 22px;
  transition: background var(--transition);
}
.feature-img-card:hover .feature-img-overlay {
  background: linear-gradient(to top, rgba(13,6,4,0.92) 0%, rgba(13,6,4,0.35) 60%, transparent 100%);
}
.feature-img-info { flex: 1; }
.feature-img-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}
.feature-img-desc {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}
.feature-img-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  flex-shrink: 0;
  margin-left: 12px;
  align-self: flex-end;
}

/* ============================================================
   AMENITIES
   ============================================================ */
#amenities {
  background: #fff;
  padding: 100px 80px 140px;
}

/* Two-column layout */
.amenities-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* ── Left column ── */
.amenities-left { position: sticky; top: 40px; }
.amenities-img-wrap { position: relative; display: flex; flex-direction: column; gap: 20px; }

.amenities-main-img {
  width: 100%;
  height: 480px;
  border-radius: 20px 20px 20px 80px;
  background-size: cover;
  background-position: center;
}
.amenities-img-inset {
  position: absolute;
  width: 160px;
  height: 200px;
  right: -24px;
  top: 60px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  border: 3px solid #fff;
}

.amenities-stat-card {
  position: static;
  background: #1A0A04;
  border-radius: 16px;
  padding: 22px 28px;
  box-shadow: 0 20px 48px rgba(13,6,4,0.35);
  min-width: 220px;
}
.amenities-stat-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.amenities-stat-block {
  flex: 1;
}
.amenities-stat-divider {
  display: none;
}
.amenities-stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 4px;
}
.amenities-stat-num span {
  font-size: 28px;
}
.amenities-stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}
.amenities-stat-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.amenities-stat-chips span {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 20px;
  padding: 3px 10px;
}
.amenities-stat-chips span em {
  font-style: normal;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.8;
  margin-left: 4px;
}

/* ── Right column ── */
.amenities-right .section-title { color: #1A0A04; }
.amenities-sub {
  color: #5A3A28;
  margin-bottom: 36px;
  font-size: 15px;
}

/* Tabs */
.amenities-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(61,26,16,0.12);
}
.atab-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  color: #A89078;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.atab-btn.active, .atab-btn:hover {
  color: #1A0A04;
  border-bottom-color: var(--color-accent);
}
.atab-area {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-top: 2px;
}
.atab-area-badge {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-accent);
  background: rgba(180,130,80,0.1);
  border: 1px solid var(--color-accent);
  border-radius: 6px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 16px;
  grid-column: 1 / -1;
}
.atab-content { display: none; }
.atab-content.active { display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; animation: fadeInRows 0.3s ease; }
@keyframes fadeInRows { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Amenity rows — icon + name, separated by lines */
.amenity-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  transition: background 0.2s ease;
}
.amenity-row:hover .amenity-row-icon { background: var(--color-accent); }
.amenity-row:hover .amenity-row-icon svg { stroke: #1A0A04; }
.amenity-row:hover .amenity-row-name { color: var(--color-secondary); }

.amenity-row-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(201,169,110,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.amenity-row-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  transition: stroke 0.25s ease;
}
.amenity-row-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #3D1A10;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--color-off-white);
  padding: 100px 80px 100px;
  position: relative;
  text-align: center;
}

/* Curved notch at top — cream bg bulges upward around badge */
#testimonials::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 120px;
  background: var(--color-off-white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

/* ── Rotating badge ── */
.testi-badge-wrap {
  display: flex;
  justify-content: center;
  margin-top: -160px;
  margin-bottom: 56px;
  position: relative;
  z-index: 3;
}
.testi-badge {
  position: relative;
  width: 160px;
  height: 160px;
}
.testi-badge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spinBadge 14s linear infinite;
  transform-origin: center;
}
@keyframes spinBadge { to { transform: rotate(360deg); } }

.testi-badge-inner {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.testi-badge-quote {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-top: -12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
.testi-badge-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,6,4,0.35);
  border-radius: 50%;
}
.testi-badge-quote { z-index: 2; }

/* ── Main testimonial body ── */
.testi-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}
.testi-stage {
  flex: 1;
  position: relative;
  min-height: 200px;
}
.testi-item {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: testiIn 0.5s ease;
}
.testi-item.active { display: flex; }
@keyframes testiIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testi-quote {
  font-family: var(--font-body);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  color: #1A0A04;
  line-height: 1.45;
  margin: 0 0 36px;
  letter-spacing: -0.3px;
}

.testi-author-wrap { text-align: center; }
.testi-author-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #1A0A04;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.testi-author-role {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: #8A6A50;
  letter-spacing: 0.5px;
  padding-top: 8px;
  border-top: 2px solid var(--color-accent);
  display: inline-block;
}

/* ── Arrow buttons ── */
.testi-arrow {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(61,26,16,0.2);
  background: #fff;
  color: #1A0A04;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.testi-arrow:hover {
  background: var(--color-accent);
  color: #1A0A04;
  border-color: var(--color-accent);
}

/* ============================================================
   SPECIFICATIONS
   ============================================================ */
#specifications {
  background: var(--color-off-white);
  padding: 100px 80px;
}

/* Two-column layout */
.spec-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Left */
.spec-left .section-title { color: #1A0A04; }
.accordion-list { width: 100%; }
.accordion-item {
  border-bottom: 1px solid rgba(61,26,16,0.12);
  overflow: hidden;
}
.accordion-item:first-child { border-top: 1px solid rgba(61,26,16,0.12); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  background: transparent;
  text-align: left;
  transition: all var(--transition);
}
.accordion-trigger:hover .accordion-trigger-title { color: var(--color-accent); }
.accordion-trigger-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1A0A04;
  transition: color 0.25s ease;
}
.accordion-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(61,26,16,0.25);
  border-radius: 50%;
  background-image: none;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 18px;
  font-weight: 300;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.accordion-trigger.active .accordion-trigger-title { color: var(--color-accent); }
.accordion-trigger.active .accordion-icon {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: none;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body-inner {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #5A3A28;
  line-height: 1.85;
  padding-bottom: 24px;
}

/* Right: image stack */
.spec-right { position: sticky; top: 40px; }
.spec-img-stack {
  position: relative;
  height: 580px;
}
.spec-img-main {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 4px 4px 60px 4px;
}
.spec-img-inset {
  position: absolute;
  width: 200px;
  height: 240px;
  bottom: -20px;
  left: -20px;
  background-size: cover;
  background-position: center;
  border-radius: 4px 4px 4px 40px;
  border: 4px solid var(--color-off-white);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

/* ============================================================
   LOCATION
   ============================================================ */
#location {
  background: var(--color-primary);
  padding: 100px 80px;
}
.loc-header {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}
.loc-header .section-eyebrow { justify-content: center; }
.loc-header .section-eyebrow::before { display: none; }

.loc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* ── Left: tabs (with icons) ── */
.loc-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.loc-tab {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 16px 10px;
  color: rgba(255,255,255,0.4);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.loc-tab-icon {
  width: 17px;
  height: 17px;
  display: block;
  transition: opacity 0.25s;
  opacity: 0.45;
}
.loc-tab.active .loc-tab-icon,
.loc-tab:hover .loc-tab-icon { opacity: 1; }
.loc-tab.active, .loc-tab:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.loc-tab-content { display: none; }
.loc-tab-content.active { display: block; animation: fadeInRows 0.3s ease; }

/* ── Location cards ── */
.loc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0 15px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: background 0.2s;
}
.loc-card:last-child { border-bottom: none; }
.loc-card::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 1.5px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.25s, transform 0.25s;
}
.loc-card:hover::before { opacity: 1; transform: scaleY(1); }
.loc-card-marker {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(201,169,110,0.45);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.loc-card:hover .loc-card-marker {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 6px rgba(201,169,110,0.5);
}
.loc-card-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2px;
  flex: 1;
  transition: color 0.2s;
}
.loc-card:hover .loc-card-name { color: #fff; }
.loc-card-time {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-accent);
  white-space: nowrap;
  border: 1px solid rgba(201,169,110,0.25);
  background: rgba(201,169,110,0.06);
  padding: 3px 11px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  transition: background 0.2s, border-color 0.2s;
}
.loc-card-time b {
  font-weight: 700;
  font-size: 13px;
}
.loc-card:hover .loc-card-time {
  background: rgba(201,169,110,0.12);
  border-color: rgba(201,169,110,0.45);
}

/* ── Right: premium map frame ── */
.loc-map-frame {
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 3px;
  overflow: hidden;
  background: #0a0603;
}
.loc-map-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: rgba(201,169,110,0.05);
  border-bottom: 1px solid rgba(201,169,110,0.14);
  gap: 12px;
}
.loc-coord-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
}
.loc-coord-nums {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.35);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Map with filter tint + beacon */
.loc-map {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.loc-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: sepia(0.45) brightness(0.82) contrast(1.08) saturate(0.85);
}
.loc-beacon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-beacon-ring {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201,169,110,0.22);
  animation: locBeacon 2.4s ease-out infinite;
}
.loc-beacon-ring--2 {
  width: 80px;
  height: 80px;
  animation-delay: 1.2s;
}
.loc-beacon-core {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.35), 0 2px 10px rgba(0,0,0,0.6);
  position: relative;
  z-index: 1;
}
@keyframes locBeacon {
  0%   { opacity: 0.75; transform: scale(0.25); }
  100% { opacity: 0;    transform: scale(1); }
}

/* Note bar */
.loc-note {
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  border-top: 1px solid rgba(201,169,110,0.12);
  background: rgba(201,169,110,0.025);
  display: flex;
  gap: 8px;
  align-items: baseline;
  flex-wrap: wrap;
}
.loc-note-label {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid rgba(201,169,110,0.3);
  padding: 2px 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================================================
   FLOOR PLANS
   ============================================================ */
#floorplans {
  background: var(--color-primary);
  padding: 100px 80px;
}

.fp-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.fp-header .section-eyebrow { justify-content: center; }
.fp-header .section-eyebrow::before { display: none; }

/* BHK selector */
.fp-selector {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 2px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.fp-sel-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 48px;
  color: rgba(255,255,255,0.45);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  border-right: 1px solid rgba(201,169,110,0.25);
}
.fp-sel-btn:last-child { border-right: none; }
.fp-sel-btn.active {
  background: var(--color-accent);
  color: var(--color-primary);
}
.fp-sel-btn:hover:not(.active) { color: var(--color-accent); }

.fp-tab-content { display: none; }
.fp-tab-content.active { display: block; animation: fadeIn 0.35s ease; }

/* Two-col layout */
.fp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: center;
}

/* LEFT: locked image */
.fp-locked-wrap {
  position: relative;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
}
.fp-plan-img {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}
/* Fake floor plan grid lines as blur placeholder */
.fp-plan-blur {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(201,169,110,0.08) 0px, rgba(201,169,110,0.08) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(201,169,110,0.08) 0px, rgba(201,169,110,0.08) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(0deg, rgba(201,169,110,0.04) 0px, rgba(201,169,110,0.04) 1px, transparent 1px, transparent 120px),
    repeating-linear-gradient(90deg, rgba(201,169,110,0.04) 0px, rgba(201,169,110,0.04) 1px, transparent 1px, transparent 120px);
  filter: blur(2px);
}
.fp-plan-blur::after {
  content: '';
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(201,169,110,0.15);
  box-shadow: inset 0 0 0 20px rgba(201,169,110,0.04), inset 0 0 0 60px rgba(0,0,0,0), inset 80px 0 0 rgba(201,169,110,0.06), inset -80px 0 0 rgba(201,169,110,0.06);
}

/* Overlay lock */
.fp-unlock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,6,4,0.78);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.3s ease;
  cursor: pointer;
}
.fp-unlock-overlay:hover { background: rgba(13,6,4,0.88); }
.fp-unlock-overlay:hover .fp-unlock-btn {
  background: var(--color-accent);
  color: var(--color-primary);
}

.fp-lock-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,169,110,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.fp-lock-icon svg { width: 26px; height: 26px; stroke: var(--color-accent); }

.fp-unlock-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.fp-unlock-sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 28px;
}
.fp-unlock-btn {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  transition: all 0.25s ease;
}

/* RIGHT: details */
.fp-details-col { padding: 8px 0; }
.fp-config-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 16px;
  background: rgba(201,169,110,0.12);
  color: var(--color-accent);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 2px;
  margin-bottom: 20px;
}
.fp-area-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  color: var(--color-text-light);
  line-height: 1;
  margin-bottom: 6px;
}
.fp-area-dash { color: var(--color-accent); margin: 0 4px; }
.fp-area-unit-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.fp-divider {
  height: 1px;
  background: rgba(201,169,110,0.15);
  margin: 28px 0;
}

/* Specs table */
.fp-specs-list { display: flex; flex-direction: column; gap: 0; }
.fp-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.fp-spec-row:last-child { border-bottom: none; }
.fp-spec-key {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}
.fp-spec-val {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.3px;
}

/* Bottom CTA */
.fp-enquire-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  background: var(--color-accent);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s ease;
  margin-bottom: 14px;
}
.fp-enquire-cta:hover { background: #b8923a; }
.fp-enquire-cta svg { stroke: var(--color-primary); flex-shrink: 0; }
.fp-cta-note {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.3px;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  background: var(--color-off-white);
  padding: 100px 80px;
}
.gallery-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.gallery-header .section-title { color: #1A0A04; }
.gallery-header .section-eyebrow { justify-content: center; }
.gallery-header .section-eyebrow::before { display: none; }
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(61,26,16,0.2);
  color: #8A6A50;
  transition: all var(--transition);
  background: transparent;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(201,169,110,0.05);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #2A1008 0%, #3D1A10 50%, #1A0A04 100%);
  background-size: cover;
  background-position: center;
  transition: all var(--transition);
}
/* Every 3rd item starting at 1 spans 2 rows — true bento layout */
.gallery-item:nth-child(3n+1) { grid-row: span 2; }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,10,4,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item:hover { border: 1px solid rgba(201,169,110,0.5); }
.gallery-item-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0 20px;
  text-align: center;
}
.gallery-item-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(201,169,110,0.25);
  text-transform: uppercase;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-item-bg { transform: scale(1.05); }
.gallery-zoom {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-size: 20px;
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13,6,4,0.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
#lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner {
  position: relative;
  max-width: 1000px;
  width: 90%;
  border: 1px solid rgba(201,169,110,0.2);
}
.lightbox-content {
  width: 100%;
  background: #0D0603;
  position: relative;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
.lightbox-content img {
  width: 100%;
  max-height: calc(85vh - 48px);
  object-fit: contain;
  display: block;
}
.lightbox-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  padding: 14px 20px;
  background: rgba(13,6,4,0.9);
}
.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-primary);
  cursor: pointer;
  border: none;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(201,169,110,0.4);
  background: rgba(26,10,4,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 20px;
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--color-accent); color: var(--color-primary); }

/* ============================================================
   CONSTRUCTION UPDATES
   ============================================================ */
#construction {
  background: var(--color-off-white);
  padding: 100px 80px;
}
.construction-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.construction-header .section-title { color: #1A0A04; }
.construction-header .section-sub { color: #5A3A28; }
.construction-header .section-eyebrow { justify-content: center; }
.construction-header .section-eyebrow::before { display: none; }
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-accent), rgba(201,169,110,0.3), transparent);
}
.timeline-items {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
}
.timeline-item {
  flex: 0 0 200px;
  text-align: center;
}
.timeline-img {
  height: 120px;
  background: linear-gradient(135deg, #D4C0AC 0%, #C0A88C 100%);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.timeline-img::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-off-white);
  z-index: 2;
}
.timeline-img-label {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(61,26,16,0.4);
  text-transform: uppercase;
}
.timeline-date {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-top: 20px;
}
.timeline-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: #5A3A28;
  margin-top: 6px;
  line-height: 1.5;
}
.timeline-upcoming .timeline-img { background: linear-gradient(135deg, #E8D8C8 0%, #D4C0A8 100%); border: 2px dashed rgba(201,169,110,0.3); }
.timeline-upcoming .timeline-date { color: var(--color-text-muted); }

/* ============================================================
   ABOUT BUILDER
   ============================================================ */
#about {
  background: var(--color-off-white);
  padding: 100px 80px;
}

/* ── Top row ── */
.about-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto 60px;
}
.about-top-left .section-title { color: #1A0A04; }
.about-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: #5A3A28;
  line-height: 1.85;
  margin-bottom: 32px;
}

/* Pillars */
.about-pillars { display: flex; flex-direction: column; gap: 24px; }
.about-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-pillar-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(201,169,110,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-pillar-icon svg { width: 18px; height: 18px; stroke: var(--color-accent); }
.about-pillar-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #1A0A04;
  margin-bottom: 6px;
}
.about-pillar-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: #5A3A28;
  line-height: 1.7;
}

/* ── Bottom row ── */
.about-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-main-img {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  min-height: 480px;
  width: 100%;
}
.about-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #fff;
  border-radius: 16px;
  padding: 32px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.about-stats-item {
  flex: 1;
  text-align: center;
}
.about-stats-divider {
  display: none;
}

/* Bento stat grid */
.about-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-bento-stat {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.about-bento-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.about-bento-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #1A0A04;
  line-height: 1;
  margin-bottom: 6px;
}
.about-bento-num span {
  font-size: 32px;
  color: var(--color-accent);
}
.about-bento-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: #8A6A50;
  letter-spacing: 0.5px;
}

/* 4th bento cell — builder logo / CTA image */
.about-bento-img {
  border-radius: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.about-bento-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,10,4,0.0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.3s ease;
}
.about-bento-img:hover .about-bento-img-overlay { background: rgba(26,10,4,0.55); }
.about-bento-cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.about-bento-img:hover .about-bento-cta { opacity: 1; transform: translateY(0); }

/* ============================================================
   MAIN ENQUIRY FORM — full-bg image + right white card
   ============================================================ */
#enquiry {
  position: relative;
  min-height: 100vh;
  background-image: url('../images/Copy of ARKA@IMPACT3D (43)-1500x1500.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 120px 80px 100px;
}

/* Left overlay text */
.enq-overlay-text {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
}
.enq-overlay-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.enq-overlay-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 28px;
}
.enq-overlay-rera {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 8px 16px;
  border: 1px solid rgba(201,169,110,0.35);
  display: inline-block;
  border-radius: 2px;
}
#enquiry::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,6,4,0.72) 0%,
    rgba(13,6,4,0.45) 45%,
    rgba(13,6,4,0.15) 100%
  );
  pointer-events: none;
}

/* Status badge top-left */
.enq-status-badge {
  position: absolute;
  top: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  z-index: 2;
}
.enq-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5DC87A;
  box-shadow: 0 0 0 3px rgba(93,200,122,0.25);
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(93,200,122,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(93,200,122,0.1); }
}

/* White floating card */
.enq-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  padding: 48px 44px;
  flex-shrink: 0;
  width: 460px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.15);
}
.enq-card-head { margin-bottom: 28px; }
.enq-card-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: #1A0A04;
  line-height: 1.1;
  margin-bottom: 8px;
}
.enq-card-sub {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: #7A5A48;
  letter-spacing: 0.3px;
}
.enq-card-divider {
  width: 48px;
  height: 2px;
  background: var(--color-accent);
  margin-top: 20px;
  border-radius: 2px;
}

/* Form fields — light theme */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7A5A48;
  margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #F8F3ED;
  border: 1.5px solid #E8DDD5;
  border-radius: 6px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #1A0A04;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-accent);
  background: #fff;
}
.form-input::placeholder, .form-textarea::placeholder { color: #B0927E; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: #F8F3ED;
  color: #1A0A04;
  cursor: pointer;
}
.form-select option { background: #fff; color: #1A0A04; }
.form-textarea { resize: vertical; min-height: 80px; }
.form-error {
  font-family: var(--font-body);
  font-size: 11px;
  color: #D9534F;
  margin-top: 5px;
  display: none;
}
.form-error.visible { display: block; }
.form-input.error, .form-select.error { border-color: rgba(217,83,79,0.7); }

.btn-submit {
  width: 100%;
  padding: 17px;
  background: var(--color-primary);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  margin-top: 6px;
}
.btn-submit::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(201,169,110,0.15);
  transform: skewX(-20deg) translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-submit:hover { background: #2C1208; }
.btn-submit:hover::after { transform: skewX(-20deg) translateX(350%); }

.form-privacy {
  font-family: var(--font-body);
  font-size: 11px;
  color: #A08878;
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.4px;
}

/* Location tag */
.enq-location-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #E8DDD5;
}

/* ============================================================
   FAQs
   ============================================================ */
#faqs {
  background: var(--color-off-white);
  padding: 100px 80px;
}
.faqs-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.faqs-header .section-title { color: #1A0A04; }
.faqs-header .section-eyebrow { justify-content: center; }
.faqs-header .section-eyebrow::before { display: none; }
.faqs-list { max-width: 900px; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--color-near-black);
  padding: 28px 80px;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 11px;
  color: #ffffff;
  transition: color var(--transition);
  letter-spacing: 1px;
}
.footer-links a:hover { color: var(--color-accent); }
.footer-rera {
  font-family: var(--font-body);
  font-size: 10px;
  color: #ffffff;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* ============================================================
   STICKY ELEMENTS
   ============================================================ */
/* Bottom Bar */
#sticky-bottom {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: rgba(26,10,4,0.97);
  backdrop-filter: blur(8px);
  border-top: 2px solid var(--color-accent);
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#sticky-bottom.visible { transform: translateY(0); }
.sticky-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 4px;
}
.sticky-phone {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-phone a { color: inherit; }
.sticky-cta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--color-accent);
  color: var(--color-primary);
  transition: background var(--transition);
}
.sticky-cta:hover { background: var(--color-accent-light); }

/* Sidebar — single enquire button */
#sticky-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg) translateX(100%);
  writing-mode: vertical-lr;
  z-index: 9997;
  display: block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 14px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  transition: background var(--transition), padding var(--transition), transform 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
#sticky-sidebar.visible {
  transform: translateY(-50%) rotate(180deg) translateX(0);
  opacity: 1;
  pointer-events: auto;
}
#sticky-sidebar:hover {
  background: var(--color-accent-light);
  padding: 18px 18px;
}

/* Back to Top */
#back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9996;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--color-accent-light); transform: translateY(-3px); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .section-padding, #overview, #counters, #features, #amenities,
  #testimonials, #specifications, #location, #floorplans, #gallery,
  #construction, #about, #enquiry, #faqs, #footer {
    padding-left: 40px;
    padding-right: 40px;
  }
  #video { padding: 0 !important; }
  #header, #header.scrolled { padding-left: 40px; padding-right: 40px; }
  .hero-content { padding: 0 40px; }
  .features-img-grid { grid-template-columns: repeat(2, 1fr); }
  .features-header-row { flex-direction: column; align-items: flex-start; }
  .features-sub { text-align: left; font-size: 16px; font-weight: 500; color: #3A2010; }
}

@media (min-width: 901px) {
  #sticky-bottom { display: none !important; }
}
@media (max-width: 900px) {
  #hero { margin: 0 16px; border-radius: 12px; }
  #sticky-bottom { display: flex; }
  .header-nav { display: none; }
  .btn-enquire-header { display: none; }
  #header { position: fixed; top: 0; left: 0; right: 0; z-index: 9000; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
  .logo-img-arka { height: 48px; }
  .logo-img-builder { height: 36px; padding: 2px 4px; }
  .hamburger { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1.5px solid var(--color-accent); border-radius: 4px; }
  .overview-grid, .fp-layout, .about-top, .about-bottom, .loc-body, .spec-layout { grid-template-columns: 1fr; gap: 40px; }
  #enquiry { padding: 80px 24px 60px; justify-content: center; flex-direction: column; min-height: auto; gap: 32px; }
  .enq-overlay-text { max-width: 100%; text-align: center; }
  .enq-overlay-title { font-size: 40px; }
  .enq-status-badge { top: 24px; left: 24px; }
  .enq-card { max-width: 100%; border-radius: 16px; padding: 36px 28px; }
  .about-main-img { min-height: 260px; border-radius: 16px; }
  .about-stats-bar { flex-direction: column; gap: 24px; padding: 24px 20px; }
  .about-stats-item { text-align: center; }
  .about-stats-divider { width: 60px; height: 1px; }
  .about-bento-num { font-size: 40px; }
  .spec-right { display: none; }
  .spec-img-stack { height: 320px; }
  .spec-img-inset { display: none; }
  .testimonials-track .testimonial-card { flex: 0 0 85vw; }
  #testimonials { padding: 20px 16px 60px; }
  .testi-badge-wrap { margin-top: -80px; margin-bottom: 32px; }
  .testi-badge { width: 120px; height: 120px; }
  .testi-badge-ring { width: 120px; height: 120px; }
  .testi-body { gap: 8px; }
  .testi-quote { font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
  .testi-arrow { width: 36px; height: 36px; font-size: 14px; flex-shrink: 0; }
  #mobile-form { display: block; }
  #sticky-sidebar { display: block; font-size: 9px; padding: 14px 10px; letter-spacing: 2px; }
  .amenities-layout { grid-template-columns: 1fr; gap: 48px; }
  .amenities-left { position: static; }
  .amenities-main-img { height: 360px; }
  .gallery-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 16px;
    grid-template-columns: unset;
    grid-auto-rows: unset;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item {
    flex: 0 0 80vw;
    height: 260px;
    scroll-snap-align: start;
    grid-row: unset !important;
    aspect-ratio: unset;
  }
  .counters-grid { flex-wrap: wrap; }
  .counter-item { flex: 0 0 50%; }
  .counter-item::after { display: none; }
  .timeline::before { display: none; }
}

@media (max-width: 600px) {
  .atab-content.active { grid-template-columns: 1fr; }
  #hero { margin: 0; border-radius: 0; height: 90svh; }
  .hero-slide-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(10,6,18,0.85) 0%,
      rgba(10,6,18,0.40) 35%,
      rgba(10,6,18,0.10) 60%,
      rgba(13,6,4,0.55) 100%
    ), linear-gradient(
      to right,
      rgba(13,6,4,0.55) 0%,
      transparent 60%
    );
  }
  #hero-stats { padding: 24px 20px; }
  .hero-stats-grid { flex-wrap: wrap; gap: 16px; }
  .hero-stat-item { flex: 0 0 calc(50% - 8px); }
  .hero-stat-divider { display: none; }
  #header { padding: 8px 16px; }
  body { padding-top: 60px; }
  #header.scrolled { padding: 8px 16px; }
  .logo-img-arka { height: 70px; }
  .logo-img-builder { height: 30px; padding: 1px 3px; }
  .hero-content {
    padding: 60px 24px 40px;
    justify-content: flex-start;
    text-align: left;
    max-width: 100%;
  }
  .hero-slide-bg img { object-position: center 85%; }
  .hero-headline { font-size: clamp(34px, 9vw, 50px); line-height: 1.1; }
  .hero-headline--sm { font-size: clamp(30px, 8vw, 44px); }
  .hero-sub { font-size: 13px; margin-top: 8px; }
  .hero-ctas { flex-direction: column; gap: 10px; margin-top: 20px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { width: 100%; text-align: center; }
  .loc-map { height: 260px; }
  .loc-map-topbar { flex-wrap: wrap; gap: 4px; }
  .loc-coord-nums { font-size: 9.5px; }
  .loc-tabs { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(201,169,110,0.25); border-radius: 10px; overflow: hidden; margin-bottom: 16px; gap: 0; }
  .loc-tab { padding: 10px 10px 8px; font-size: 9px; gap: 4px; border: none; border-bottom: 2px solid transparent; width: 100%; justify-content: center; }
  .fp-selector { width: 100%; box-sizing: border-box; }
  .fp-sel-btn { flex: 1; padding: 12px 8px; font-size: 10px; letter-spacing: 1.5px; text-align: center; }
  .loc-tab-icon { width: 15px; height: 15px; }
  .loc-card { padding: 12px 0 12px 12px; }
  .loc-card-name { font-size: 13px; }
  .section-padding, #overview, #counters, #features, #amenities,
  #testimonials, #specifications, #location, #floorplans, #gallery,
  #construction, #about, #enquiry, #faqs, #footer {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #video {
    padding: 0 !important;
  }
  .video-fullwidth {
    padding-bottom: 56% !important;
  }
  .features-grid { grid-template-columns: 1fr; }
  .features-img-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    gap: 14px;
    padding: 0 20px 16px 20px;
    margin: 0 -20px;
    max-width: none;
    box-sizing: content-box;
  }
  .features-img-grid::-webkit-scrollbar { display: none; }
  .feature-img-card {
    flex: 0 0 78vw;
    scroll-snap-align: start;
    height: 340px;
    border-radius: 12px;
    touch-action: pan-x;
  }
  .feature-img-card:last-child { margin-right: 0; }
  .features-slider-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 -20px;
    padding: 0;
  }
  .features-img-grid {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
  }
  .features-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--color-accent);
    background: rgba(26,10,4,0.75);
    color: var(--color-accent);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
  }
  .features-arrow--prev { left: 4px; }
  .features-arrow--next { right: 4px; }
  .features-arrow:disabled { opacity: 0.3; pointer-events: none; }
  .feature-img-card { height: 280px; }
  #amenities { padding: 60px 20px !important; }
  .amenities-layout { grid-template-columns: 1fr; gap: 40px; width: 100%; max-width: 100%; box-sizing: border-box; }
  .amenities-left { position: static; width: 100%; box-sizing: border-box; }
  .amenities-img-wrap { padding-bottom: 0; display: flex; flex-direction: column; gap: 16px; width: calc(100vw - 40px); max-width: calc(100vw - 40px); box-sizing: border-box; }
  .amenities-main-img { height: 320px; border-radius: 16px !important; width: 100%; box-sizing: border-box; display: block; }
  .amenities-img-inset { display: none; }
  .amenities-stat-card { position: static; left: auto; bottom: auto; padding: 20px 24px; border-radius: 20px !important; width: 100%; box-sizing: border-box; }
  .overview-img { height: calc(100vw - 40px); max-height: calc(100vw - 40px); border-radius: 16px; }
  .loc-header .section-title { font-size: 22px; line-height: 1.2; }
  .amenities-stat-row { flex-wrap: wrap; gap: 12px; }
  .amenities-stat-chips { flex-wrap: wrap; }
  .amenities-tabs { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; scrollbar-width: none; }
  .amenities-tabs::-webkit-scrollbar { display: none; }
  .atab-btn { flex-shrink: 0; padding: 12px 20px; font-size: 10px; white-space: nowrap; }
  .gallery-item { flex: 0 0 85vw; height: 240px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 28px 20px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 8px; }
  .lightbox-prev { left: 0; }
  .lightbox-next { right: 0; }
  #sticky-bottom { padding: 10px 16px; justify-content: space-between; align-items: center; }
  .sticky-phone { display: none; }
  .sticky-logo-team4, .sticky-logos-divider { display: none; }
  .sticky-logo-img { height: 44px; }
  .sticky-cta { margin-right: 68px; flex-shrink: 0; white-space: nowrap; }
  .hero-dots { right: 20px; }
  .footer-links { gap: 16px; }
}
