/* ==========================================================================
   RAJ RATAN DEVELOPERS - LUXURY REAL ESTATE DESIGN SYSTEM
   Theme: Royal Gold, Deep Obsidian/Navy, Emerald Green, Alabaster White
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Palette */
  --primary-gold: #d4af37;
  --primary-gold-light: #f3d069;
  --primary-gold-dark: #aa771c;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-subtle: rgba(212, 175, 55, 0.12);
  --gold-border: rgba(212, 175, 55, 0.28);
  
  --gold-gradient: linear-gradient(135deg, #f8df88 0%, #d4af37 50%, #996c14 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fae69e 0%, #e5be49 50%, #b3801f 100%);
  
  /* Dark / Contrast Tones */
  --bg-dark-obsidian: #070b13;
  --bg-dark-navy: #0d1524;
  --bg-dark-card: #121c2e;
  --bg-dark-card-hover: #18253d;
  --text-dark-primary: #f8fafc;
  --text-dark-secondary: #94a3b8;
  --text-dark-muted: #64748b;
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Light Tones */
  --bg-light: #ffffff;
  --bg-light-alt: #f8fafc;
  --bg-light-cream: #faf7f2;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border-light: #e2e8f0;

  /* Nature / Trust Accent */
  --emerald-green: #10b981;
  --emerald-dark: #065f46;
  --emerald-light: #ecfdf5;
  --emerald-border: #a7f3d0;

  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 14px 35px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
  --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.4);

  /* Layout */
  --container-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Section Headings Design */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-subtle);
  color: var(--primary-gold-dark);
  border: 1px solid var(--gold-border);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header.dark .section-tag {
  color: var(--primary-gold-light);
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header.dark .section-title {
  color: #ffffff;
}

.section-title span.gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-desc {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 400;
}

.section-header.dark .section-desc {
  color: var(--text-dark-secondary);
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 18px auto 0;
  border-radius: 2px;
}

/* Standard Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #070b13;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: 0.5s;
  z-index: -1;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

.btn-outline-gold {
  background: transparent;
  color: var(--primary-gold);
  border: 1.5px solid var(--primary-gold);
}

.btn-outline-gold:hover {
  background: var(--primary-gold);
  color: #070b13;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-dark {
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  background: #1e293b;
  border-color: var(--primary-gold);
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--bg-light-alt);
  color: var(--primary-gold-dark);
  transform: translateY(-2px);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  display: none !important;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-badge {
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-green);
  box-shadow: 0 0 6px var(--emerald-green);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
}

.topbar-item svg {
  color: var(--primary-gold);
}

.topbar-item a:hover {
  color: var(--primary-gold);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 12, 20, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 9, 16, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(212, 175, 55, 0.35);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 105px;
  width: 100%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 36px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 36px;
}

.brand-logo img {
  height: 78px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(212, 175, 55, 0.45));
  transition: var(--transition);
}

.brand-logo:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 6px 16px rgba(212, 175, 55, 0.7));
}

.nav-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 12px 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-gold-light);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-call-link-text {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.nav-call-link-text:hover {
  color: var(--primary-gold-light);
}

.nav-arrow {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
  color: #ffffff;
}

.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
  color: var(--primary-gold-light);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: rgba(10, 16, 28, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 10px 0;
  list-style: none;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  text-transform: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: var(--transition);
}

.dropdown-menu li a i {
  color: var(--primary-gold);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

.dropdown-menu li a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--primary-gold-light);
  padding-left: 24px;
}

/* Actions / Mobile Toggle */
.nav-actions {
  display: none;
  align-items: center;
}

.hamburger-btn {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--primary-gold);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.hamburger-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold-light);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
/* ==========================================================================
   HERO SECTION - 4-PROPERTY LUXURY SHOWCASE SLIDER
   ========================================================================== */
.hero.hero-slider {
  position: relative;
  min-height: 84vh;
  min-height: max(660px, 84vh);
  display: flex;
  align-items: center;
  background: #060a12;
  overflow: hidden;
  padding: 0;
  scroll-margin-top: 120px;
}

.hero-slides {
  position: relative;
  width: 100%;
  min-height: 84vh;
  min-height: max(660px, 84vh);
  display: flex;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  align-items: center;
  padding: 120px 0 120px;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(6, 10, 18, 0.35) 0%,
    rgba(6, 10, 18, 0.15) 60%,
    transparent 100%
  ),
  linear-gradient(
    0deg,
    rgba(6, 10, 18, 0.4) 0%,
    transparent 28%
  );
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-slide-content {
  max-width: 780px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border: none;
  box-shadow: none;
  animation: heroContentFadeIn 0.5s ease both;
}

.hero-slide.active .hero-slide-content {
  animation: heroContentFadeIn 0.5s ease both;
}

@keyframes heroContentFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(12, 18, 32, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  color: var(--primary-gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-slide-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-gold-light);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 0.95);
}

.hero-title * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}

.hero-subtext {
  font-size: 1.15rem;
  color: #f1f5f9;
  margin-bottom: 28px;
  max-width: 680px;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.hero-checkpoints {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  margin-bottom: 34px;
  max-width: 620px;
}

.checkpoint-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.checkpoint-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-glass:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--primary-gold);
  color: var(--primary-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Prev/Next Navigation Arrows */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(10, 16, 28, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 12;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-nav-arrow.hero-prev {
  left: 28px;
}

.hero-nav-arrow.hero-next {
  right: 28px;
}

.hero-nav-arrow:hover {
  background: var(--gold-gradient);
  color: #060a12;
  border-color: var(--primary-gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

/* Bottom Interactive Property Tabs */
.hero-property-tabs-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  padding-bottom: 24px;
  pointer-events: auto;
}

.hero-property-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.hero-tab-btn {
  background: rgba(8, 14, 25, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 18px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-tab-btn:hover {
  background: rgba(14, 23, 40, 0.95);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-3px);
}

.hero-tab-btn.active {
  background: rgba(14, 23, 40, 0.96);
  border-color: var(--primary-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.25);
}

.hero-tab-btn .tab-index {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-gold);
  flex-shrink: 0;
}

.hero-tab-btn .tab-info {
  flex: 1;
  min-width: 0;
}

.hero-tab-btn .tab-title {
  display: block;
  font-size: 0.96rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-tab-btn.active .tab-title {
  color: var(--primary-gold-light);
}

.hero-tab-btn .tab-loc {
  display: block;
  font-size: 0.78rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-tab-btn .tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-tab-btn .tab-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  transition: width 0.1s linear;
}

/* ==========================================================================
   METRICS & TRUST STRIP
   ========================================================================== */
.metrics-strip {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 34px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 18px;
  border-right: 1px solid #e2e8f0;
}

.metric-card:last-child {
  border-right: none;
}

.metric-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold-dark);
  flex-shrink: 0;
}

.metric-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-start;
  transition: transform 0.3s ease;
}

.metric-num span {
  color: var(--primary-gold-dark);
  margin-left: 1px;
}

.counter-pop {
  animation: counterPop 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes counterPop {
  0% { transform: scale(1); }
  45% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.badge-number,
.who-stat .num {
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
}

.metric-label {
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ==========================================================================
   GOVERNMENT APPROVALS & TRUST BADGES RIBBON
   ========================================================================== */
.approvals-section {
  background: #ffffff;
  padding: 50px 0 60px;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  position: relative;
}

.approvals-header {
  text-align: center;
  margin-bottom: 32px;
}

.approvals-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
}

/* Modern continuous auto-scroll ticker */
.approvals-ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.approvals-track {
  display: flex;
  align-items: center;
  gap: 85px;
  width: max-content;
  animation: scrollApprovals 36s linear infinite;
  will-change: transform;
}

.approvals-ticker:hover .approvals-track {
  animation-play-state: paused;
}

@keyframes scrollApprovals {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Badge items without background boxes */
.approval-badge-item {
  flex-shrink: 0;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.approval-badge-item:hover {
  transform: scale(1.1);
  background: transparent !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

/* Substantially enlarged, ultra-crisp badges */
.approval-badge-item img {
  height: 140px;
  max-height: 155px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.08));
  transition: transform 0.35s ease, filter 0.35s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.approval-badge-item:hover img {
  filter: drop-shadow(0 14px 28px rgba(16, 185, 129, 0.32));
}

@media (max-width: 992px) {
  .approvals-track {
    gap: 65px;
    animation-duration: 30s;
  }
  .approval-badge-item img {
    height: 110px;
    max-height: 120px;
  }
}

@media (max-width: 768px) {
  .approvals-track {
    gap: 45px;
    animation-duration: 24s;
  }
  .approval-badge-item img {
    height: 85px;
    max-height: 95px;
  }
}

/* ==========================================================================
   ABOUT RAJRATAN SECTION
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 60px;
  align-items: stretch;
}

.about-media-col {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  height: 100%;
  min-height: 560px;
  flex: 1;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.8s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.04);
}

.about-badge-card {
  position: absolute;
  bottom: 25px;
  right: -15px;
  background: #080d18;
  color: #ffffff;
  border: 2px solid var(--primary-gold);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  box-shadow: var(--shadow-gold), 0 20px 35px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-gold-light);
  line-height: 1;
}

.badge-text {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

.about-text-col .section-tag {
  margin-bottom: 12px;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 500;
}

.about-desc {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.98rem;
}

.about-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 34px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-item .icon {
  color: var(--primary-gold-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.about-feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.about-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   OUR PROJECTS SECTION
   ========================================================================== */
.projects-section {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.project-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.filter-btn {
  background: #ffffff;
  color: #475569;
  border: 1px solid #cbd5e1;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold-dark);
  background: var(--gold-subtle);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: #070b13;
  border-color: var(--primary-gold);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 25px rgba(212, 175, 55, 0.18);
}

.project-media-wrap {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.project-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover .project-media-wrap img {
  transform: scale(1.06);
}

.project-badge-status {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.status-completed {
  background: var(--emerald-green);
  color: #ffffff;
}

.status-ongoing {
  background: #f59e0b;
  color: #0f172a;
}

.status-upcoming {
  background: var(--primary-gold);
  color: #070b13;
}

.project-badge-rera {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(7, 12, 20, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--primary-gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.project-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b45309;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.project-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 12px;
}

.project-card-desc {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 20px;
}

.project-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 22px;
}

.spec-item {
  text-align: center;
}

.spec-label {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.spec-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.project-card-footer {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
}

.project-view-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.28);
}

/* ==========================================================================
   INTERACTIVE PLOT EMI & INVESTMENT CALCULATOR
   ========================================================================== */
.calculator-section {
  padding: 90px 0;
  background: var(--bg-light-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.calc-container-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.calc-controls-col {
  padding: 45px;
}

.calc-controls-col h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.calc-controls-col p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.calc-slider-group {
  margin-bottom: 28px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.slider-header label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.slider-val-badge {
  background: var(--gold-subtle);
  color: var(--primary-gold-dark);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.92rem;
}

.calc-range-input {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
  transition: var(--transition);
}

.calc-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
  border: 2px solid #ffffff;
  transition: transform 0.15s ease;
}

.calc-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.slider-hints {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 6px;
}

.calc-results-col {
  background: #f8fafc;
  color: var(--text-primary);
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border-light);
  position: relative;
}

.calc-results-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
}

.calc-result-box {
  margin-bottom: 24px;
}

.calc-result-box .label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 4px;
}

.calc-result-box .value-huge {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-gold-dark);
  line-height: 1.1;
}

.calc-stats-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 26px;
}

.mini-stat .m-label {
  font-size: 0.78rem;
  color: #64748b;
  display: block;
}

.mini-stat .m-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.calc-results-col .btn-gold {
  width: 100%;
}

/* ==========================================================================
   EXCLUSIVE PLOTS CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner-section {
  position: relative;
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.cta-banner-overlay {
  display: none;
}

.cta-banner-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-xl);
  padding: 52px 42px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 18px;
}

.cta-banner-sub {
  font-size: 1.05rem;
  color: #475569;
  margin-bottom: 30px;
  line-height: 1.65;
}

.cta-banner-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.cta-pill-item {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  color: #1e293b;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.cta-pill-item i,
.cta-pill-item svg {
  color: var(--primary-gold-dark);
}

.cta-banner-content .btn-outline-gold {
  color: var(--primary-gold-dark);
  border-color: var(--primary-gold-dark);
  background: #ffffff;
}

.cta-banner-content .btn-outline-gold:hover {
  background: var(--primary-gold);
  color: #070b13;
}

@media (max-width: 768px) {
  .cta-banner-content {
    padding: 36px 20px;
  }
  .cta-banner-title {
    font-size: 1.95rem;
  }
}

/* ==========================================================================
   HOW IT WORKS (3-STEP PROCESS)
   ========================================================================== */
.steps-section {
  padding: 100px 0;
  background: #ffffff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}

.step-card {
  background: var(--bg-light-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 55, 0.15);
  background: #ffffff;
}

.step-media-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.step-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.step-card:hover .step-media-box img {
  transform: scale(1.08);
}

.step-number-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #070b13;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.step-body {
  padding: 28px 24px;
  text-align: center;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   AMENITIES & INFRASTRUCTURE SECTION
   ========================================================================== */
.amenities-section {
  padding: 100px 0;
  background: #f8fafc;
  color: var(--text-primary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.amenity-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.amenity-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
}

.amenity-img {
  height: 180px;
  overflow: hidden;
}

.amenity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.amenity-content {
  padding: 22px;
}

.amenity-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  transition: var(--transition);
}

.amenity-card:hover .amenity-title {
  color: var(--primary-gold-dark);
}

.amenity-desc {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ==========================================================================
   ASSOCIATIVE PARTNERS SECTION
   ========================================================================== */
.partners-section {
  padding: 70px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.partners-header {
  text-align: center;
  margin-bottom: 40px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.partner-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 180px;
  transition: var(--transition);
  box-shadow: none;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: none;
}

.partner-card img {
  max-height: 140px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-card:hover img {
  transform: scale(1.08);
}

/* ==========================================================================
   GALLERY SECTION WITH LIGHTBOX
   ========================================================================== */
.gallery-section {
  padding: 100px 0;
  background: var(--bg-light-alt);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold-dark);
}

.gallery-filter-btn.active {
  background: var(--gold-gradient);
  color: #070b13;
  border-color: var(--primary-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  height: 270px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: #0f172a;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 12, 20, 0.85) 0%, rgba(7, 12, 20, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-overlay p {
  color: var(--primary-gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 100px 0;
  background: #f8fafc;
  color: var(--text-primary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08), 0 0 20px rgba(212, 175, 55, 0.15);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.testimonial-quote {
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 26px;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-gold);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Detail-page testimonial columns with alternating vertical motion */
.detail-testimonials-section {
  padding: 90px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.legacy-testimonials-section {
  display: none;
}

/* The scrolling review wall belongs on the homepage only. */
body:has(.project-detail-hero) .detail-testimonials-section {
  display: none;
}

/* Keep homepage sections flush, and add clean spacing under page banners. */
body:has(.hero-slider) section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body:has(.page-banner) .page-banner {
  margin-bottom: 32px;
}

body:has(.page-banner) .who-we-are-section {
  padding-top: 36px !important;
}

.testimonial-marquee {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-height: 650px;
}

.testimonial-column-window {
  height: 610px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 7%, #000 93%, transparent);
}

.testimonial-column-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: testimonialsUp 30s linear infinite;
  will-change: transform;
}

.testimonial-column-reverse .testimonial-column-track {
  animation-name: testimonialsDown;
  animation-duration: 34s;
}

.testimonial-marquee:hover .testimonial-column-track {
  animation-play-state: paused;
}

.testimonial-review-card {
  flex: 0 0 auto;
  min-height: 188px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.05);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-person strong {
  display: block;
  color: #1e293b;
  font-size: 1rem;
}

.review-person small,
.review-age {
  display: block;
  color: #94a3b8;
  font-size: 0.78rem;
  margin-top: 3px;
}

.review-age { margin: 18px 0 12px; }

.testimonial-review-card p {
  color: #475569;
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}

.review-avatar {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.avatar-blue { background: #287be5; }
.avatar-purple { background: #943de8; }
.avatar-orange { background: #e87800; }
.avatar-red { background: #f05b55; }
.avatar-yellow { background: #f5b400; }
.avatar-green { background: #10a867; }
.avatar-pink { background: #ed1c5c; }

@keyframes testimonialsUp {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes testimonialsDown {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

.user-info h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.user-info span {
  font-size: 0.82rem;
  color: var(--primary-gold-dark);
  font-weight: 600;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 100px 0;
  background: #ffffff;
}

.faq-wrapper {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
  background: var(--bg-light-alt);
}

.faq-item.active {
  border-color: var(--primary-gold);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.15);
  background: #ffffff;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-gold-dark);
}

.faq-item.active .faq-question {
  color: var(--primary-gold-dark);
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--text-secondary);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: var(--gold-subtle);
  color: var(--primary-gold-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px 24px;
}

/* ==========================================================================
   LOCATION & CONTACT BOOKING SECTION
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background: #ffffff;
  color: var(--text-primary);
  border-top: 1px solid var(--border-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-col {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-col h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.contact-info-col p {
  color: #64748b;
  font-size: 0.96rem;
  margin-bottom: 28px;
}

.contact-info-col form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-col form .form-group {
  width: 100%;
}

.contact-info-col form .form-control {
  display: block;
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-primary);
  font: inherit;
  font-size: 0.95rem;
  box-sizing: border-box;
  transition: var(--transition);
}

.contact-info-col form textarea.form-control {
  min-height: 112px;
  resize: vertical;
}

.contact-info-col form .form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  color: var(--primary-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-details h5 {
  font-size: 0.85rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.method-details a, .method-details span {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  transition: var(--transition);
}

.method-details a:hover {
  color: var(--primary-gold-dark);
}

/* Map Embed */
.map-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  min-height: 460px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.map-col iframe {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  border: none;
  filter: contrast(1.05) saturate(1.1);
}

.map-footer-stats {
  background: #f8fafc;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid #e2e8f0;
}

.map-stat {
  font-size: 0.82rem;
  color: #64748b;
}

.map-stat strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #05080f;
  color: #94a3b8;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand img,
.footer-logo img,
.footer-brand-col img {
  height: 80px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 3px 12px rgba(212, 175, 55, 0.4));
  transition: var(--transition);
}

.footer-logo:hover img {
  transform: scale(1.03);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 320px;
}

/* Consistent, larger footer social icons on every page */
.footer .social-links,
.footer .footer-brand-col > div[style*="display: flex"] {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer .social-links a,
.footer .topbar-badge,
.footer .footer-brand-col > div[style*="display: flex"] a {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #f8fafc;
  font-size: 1.08rem;
  line-height: 1;
  transition: var(--transition);
}

.footer .social-links a:hover,
.footer .topbar-badge:hover,
.footer .footer-brand-col > div[style*="display: flex"] a:hover {
  color: var(--primary-gold-light);
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--primary-gold);
  transform: translateY(-3px);
}

.footer .topbar-badge::before {
  display: none;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--primary-gold-light);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom a:hover {
  color: var(--primary-gold-light);
}

/* ==========================================================================
   BLOGS SECTION
   ========================================================================== */
.blogs-section {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08), 0 0 25px rgba(212, 175, 55, 0.15);
}

.blog-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-media img {
  transform: scale(1.08);
}

.blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 12, 20, 0.85);
  backdrop-filter: blur(8px);
  color: var(--primary-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  color: var(--primary-gold-dark);
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 12px;
  font-weight: 700;
}

.blog-title a {
  color: #0f172a;
  transition: var(--transition);
}

.blog-title a:hover {
  color: var(--primary-gold-dark);
}

.blog-excerpt {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-gold-dark);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}

.blog-read-more:hover {
  color: var(--primary-gold);
  gap: 12px;
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */
.page-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #060a12;
  padding: 80px 0 60px;
}

.page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65);
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 12, 20, 0.7) 0%, rgba(7, 12, 20, 0.95) 100%);
  z-index: 2;
}

.page-banner-content {
  position: relative;
  z-index: 3;
}

.page-banner-content h1 {
  color: #ffffff;
  font-family: var(--font-heading);
  width: 100%;
  max-width: 100%;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
  overflow-wrap: anywhere;
}

.page-banner-content p {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #e2e8f0;
  font-size: 1.08rem;
  line-height: 1.6;
  text-align: center;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumbs a {
  color: #cbd5e1;
}

.breadcrumbs a:hover {
  color: var(--primary-gold);
}

.breadcrumbs .separator {
  font-size: 0.7rem;
  color: var(--primary-gold);
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.page-banner-subtitle {
  max-width: 680px;
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Who We Are Highlight */
.who-we-are-section {
  padding: 60px 0;
  background: var(--bg-light-alt);
  position: relative;
  margin-top: -40px;
  z-index: 10;
}

.who-we-are-card {
  background: #090f1d;
  border: 2px solid var(--primary-gold);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-dark), 0 0 40px rgba(212, 175, 55, 0.2);
  text-align: center;
}

.who-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.who-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.65;
  color: #ffffff;
  max-width: 980px;
  margin: 0 auto;
  font-weight: 600;
  font-style: italic;
}

.who-divider {
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 30px auto;
  border-radius: 2px;
}

.who-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.who-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.who-stat .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.who-stat .lbl {
  font-size: 0.88rem;
  color: #cbd5e1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* About Detailed Grid */
.about-detailed-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-detailed-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-visual-col {
  position: relative;
}

.visual-main-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.visual-main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visual-main-frame:hover img {
  transform: scale(1.03);
}

.visual-accent-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #0c1424;
  border: 1px solid var(--primary-gold);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.visual-accent-badge i {
  font-size: 2rem;
  color: var(--primary-gold);
}

.visual-accent-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-gold-light);
}

.visual-accent-badge span {
  font-size: 0.82rem;
  color: #94a3b8;
}

.about-body-narrative {
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.about-body-narrative p {
  margin-bottom: 18px;
}

.about-body-narrative .highlight-p {
  font-size: 1.12rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.7;
}

.quote-accent-box {
  background: var(--bg-light-cream);
  border-left: 4px solid var(--primary-gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
  position: relative;
}

.quote-accent-box .quote-icon {
  color: var(--primary-gold);
  font-size: 1.5rem;
  opacity: 0.4;
  margin-bottom: 8px;
  display: block;
}

.quote-accent-box p {
  font-style: italic;
  color: #1e293b;
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 0;
}

.about-actions-row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Pillars Section */
.pillars-section {
  padding: 100px 0;
  background: #080d18;
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pillar-card {
  background: #0e172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.15);
}

.pillar-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-bottom: 22px;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.pillar-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 100px 0;
  background: #f8fafc;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 44px 38px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}

.mv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-subtle);
  color: var(--primary-gold-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.mv-card p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.mv-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mv-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e293b;
  font-size: 0.92rem;
  font-weight: 600;
}

.mv-points li i {
  color: var(--emerald-green);
  font-size: 0.95rem;
}

/* ==========================================================================
   PROJECT DETAILS PAGE STYLES (GREEN VALLEY & MASTER LAYOUTS)
   ========================================================================== */
.project-detail-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: #050912;
  overflow: hidden;
  padding: 120px 0 80px;
}

.project-detail-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.project-detail-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.38) saturate(1.2);
}

.project-detail-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(13, 21, 36, 0.4) 0%, rgba(5, 9, 18, 0.92) 85%);
}

.project-detail-hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.project-badge-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.badge-pill-gold {
  background: rgba(212, 175, 55, 0.18);
  color: var(--primary-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.badge-pill-green {
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.badge-pill-loc {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}

.project-detail-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.project-detail-title .gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-detail-tagline {
  font-size: 1.25rem;
  color: #f1f5f9;
  font-weight: 500;
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto 28px;
}

.project-detail-tagline strong {
  color: var(--primary-gold-light);
}

.project-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Specs Bar Strip */
.project-specs-bar-section {
  position: relative;
  z-index: 10;
  margin-top: -45px;
  padding: 0 20px;
}

.specs-bar-container {
  background: #09101d;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.15);
  padding: 26px 36px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.spec-bar-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-bar-box:last-child {
  border-right: none;
}

.spec-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--primary-gold-light);
  flex-shrink: 0;
}

.spec-bar-info span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark-muted);
  margin-bottom: 3px;
  font-weight: 700;
}

.spec-bar-info strong {
  display: block;
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 700;
}

/* Overview Layout */
.project-overview-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 50px;
  align-items: start;
}

/* Keep animated badge content from expanding the overview grid horizontally. */
.project-overview-grid > *,
.project-story-content,
.detail-approval-ticker {
  min-width: 0;
  max-width: 100%;
}

.project-story-content p,
.project-story-content h3 {
  overflow-wrap: anywhere;
}

.project-story-content h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.project-story-content p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 22px;
}

.project-key-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.key-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.key-bullet-item i {
  color: var(--primary-gold-dark);
  font-size: 1.15rem;
  margin-top: 3px;
}

.key-bullet-item div strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.key-bullet-item div span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Lead Booking Sticky Box */
.project-sidebar-card {
  background: #090f1d;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.12);
  position: sticky;
  top: 110px;
  color: #ffffff;
}

.sidebar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sidebar-price-box {
  display: none;
}

.project-sidebar-card .lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.project-sidebar-card .lead-form .form-group {
  width: 100%;
  margin-bottom: 0 !important;
}

.project-sidebar-card .lead-form .form-control {
  display: block;
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  padding: 10px 12px;
}

.project-sidebar-card .lead-form > .btn,
.project-sidebar-card .lead-form button[type="submit"] {
  width: 100%;
  min-height: 46px;
  margin: 0;
  justify-content: center;
}

.project-sidebar-card > div:last-child {
  width: 100%;
  text-align: center;
}

.sidebar-price-box {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-price-label {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 4px;
}

.sidebar-price-amount {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary-gold-light);
}

.sidebar-direct-call {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
}

.sidebar-call-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #05080f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.sidebar-call-info small {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  display: block;
}

.sidebar-call-info a {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
}

.sidebar-call-info a:hover {
  color: var(--primary-gold-light);
}

/* Amenities Grid 6-Card Custom */
.amenities-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.amenity-detail-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.amenity-detail-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-gold);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08), 0 0 20px rgba(212, 175, 55, 0.15);
}

.amenity-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.amenity-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: var(--primary-gold-dark);
  transition: var(--transition);
}

.amenity-detail-card:hover .amenity-card-icon {
  background: var(--gold-gradient);
  color: #070b13;
  transform: rotate(5deg) scale(1.05);
}

.amenity-card-index {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #e2e8f0;
}

.amenity-detail-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.amenity-detail-card p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
}

/* Master Plan Showcase */
.master-plan-box {
  background: #080d19;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.master-plan-viewer {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  margin-bottom: 30px;
}

.master-plan-viewer img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #060a14;
  display: block;
  transition: transform 0.5s ease;
}

.master-plan-viewer:hover img {
  transform: scale(1.02);
}

.viewer-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(7, 12, 20, 0.85);
  backdrop-filter: blur(8px);
  color: var(--primary-gold-light);
  border: 1px solid var(--primary-gold);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plots-dimension-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plot-dim-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.plot-dim-card h5 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-gold-light);
  margin-bottom: 6px;
}

.plot-dim-card p {
  color: #94a3b8;
  font-size: 0.88rem;
  margin: 0;
}

/* Gallery 6-Grid */
.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.detail-gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 270px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.detail-gallery-item:hover img {
  transform: scale(1.08);
}

.detail-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 8, 15, 0.88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #ffffff;
  transition: var(--transition);
}

.detail-gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Approval badges on project detail pages */
.detail-approval-ticker {
  width: 100%;
  min-height: 170px;
  margin-top: 25px;
  padding: 30px 0;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.detail-approval-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 72px;
  padding: 0 34px;
  animation: detailApprovalScroll 24s linear infinite;
  will-change: transform;
}

.detail-approval-ticker:hover .detail-approval-track {
  animation-play-state: paused;
}

.detail-approval-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  color: #1e293b;
  font-size: 1.08rem;
  font-weight: 800;
}

.detail-approval-item img {
  width: auto;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.detail-approval-item span {
  display: none;
}

@keyframes detailApprovalScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Proximities Section */
.proximities-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}

.proximities-list-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
}

.proximities-list-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.proximities-list-card p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 26px;
}

.prox-pins-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.prox-pin-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.prox-pin-item:hover {
  background: #ffffff;
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.prox-pin-item i {
  color: #dc2626;
  font-size: 1.15rem;
  margin-top: 2px;
}

.prox-pin-item strong {
  display: block;
  font-size: 0.92rem;
  color: #0f172a;
  line-height: 1.35;
}

.prox-pin-item span {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}

.prox-map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.prox-map-card iframe {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  border: none;
}

/* Unified Proximity & Location Card */
.prox-location-card {
  background: #09101d;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
  display: flex;
  flex-direction: column;
}

.prox-card-top-bar {
  background: linear-gradient(135deg, #0d1728 0%, #17243b 100%);
  padding: 16px 22px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.prox-card-top-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #ffffff;
  margin: 0 0 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prox-card-top-info h4 i {
  color: var(--primary-gold);
}

.prox-card-top-info span {
  font-size: 0.82rem;
  color: #94a3b8;
  display: block;
}

.prox-card-top-info span strong {
  color: var(--primary-gold-light);
}

.prox-card-map-link {
  color: var(--primary-gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.prox-card-map-link:hover {
  background: var(--primary-gold);
  color: #050811;
}

.prox-card-map-wrap {
  width: 100%;
  height: 220px;
  position: relative;
  background: radial-gradient(circle at 50% 50%, #0e1a30 0%, #070c18 100%);
  overflow: hidden;
  display: block;
  text-decoration: none;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.prox-card-map-wrap:hover {
  background: radial-gradient(circle at 50% 50%, #132342 0%, #080f1e 100%);
}

.map-bg-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.08) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 50%, rgba(30, 58, 138, 0.3) 0%, transparent 70%);
  background-size: 26px 26px, 26px 26px, 100% 100%;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.prox-card-map-wrap:hover .map-bg-grid {
  transform: scale(1.04);
}

.map-roads-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.prox-card-map-wrap:hover .map-roads-svg {
  opacity: 0.75;
}

.map-radar-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  padding: 16px;
  background: rgba(5, 10, 20, 0.35);
  backdrop-filter: blur(1.5px);
  transition: background 0.3s ease;
}

.prox-card-map-wrap:hover .map-radar-center {
  background: rgba(5, 10, 20, 0.15);
}

.map-radar-pulse {
  position: relative;
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-radar-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  animation: mapPing 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.8;
}

.map-radar-ring.ring-2 {
  animation-delay: 0.9s;
}

.map-pulse-dot {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #fef08a);
  color: #050811;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.prox-card-map-wrap:hover .map-pulse-dot {
  transform: scale(1.12);
}

@keyframes mapPing {
  0% {
    transform: scale(0.5);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.map-click-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--primary-gold);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.prox-card-map-wrap:hover .map-click-cta {
  background: var(--primary-gold);
  color: #050811;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.45);
}

.map-click-sub {
  color: #cbd5e1;
  font-size: 0.75rem;
  margin-top: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.map-badge-overlay {
  position: absolute;
  bottom: 10px;
  right: 12px;
  z-index: 5;
  pointer-events: none;
}

.gmaps-pill-btn {
  background: rgba(9, 16, 29, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.5);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.prox-commute-matrix {
  padding: 18px 22px 22px;
  background: #09101d;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.prox-matrix-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.prox-matrix-heading span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary-gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.prox-matrix-heading small {
  font-size: 0.78rem;
  color: #64748b;
}

.prox-commute-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.prox-commute-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.prox-commute-row:last-child {
  border-bottom: none;
}

.prox-commute-name {
  color: #cbd5e1;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prox-commute-name i {
  color: var(--primary-gold);
  font-size: 0.62rem;
}

.prox-commute-time {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.2);
  white-space: nowrap;
}

.prox-commute-time.badge-direct {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.25);
}

.prox-highway-highlight {
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.prox-highway-highlight i {
  color: var(--primary-gold-dark);
  font-size: 1.3rem;
}

.prox-highway-highlight p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #78350f;
}

/* Bank Partners Strip */
.bank-partners-strip {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}

.bank-partners-left {
  max-width: 320px;
}

.bank-partners-left h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.bank-partners-left p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.bank-chips-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bank-chip {
  background: var(--bg-light-alt);
  border: 1px solid #e2e8f0;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.86rem;
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.bank-chip:hover {
  background: #ffffff;
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.bank-chip img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 28px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

.bank-chip i {
  color: var(--primary-gold-dark);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .project-detail-title {
    font-size: 2.8rem;
  }
  .specs-bar-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-overview-grid {
    grid-template-columns: 1fr;
  }
  .amenities-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proximities-grid {
    grid-template-columns: 1fr;
  }
  .bank-partners-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }
  .overview-section,
  .amenities-section,
  .gallery-section,
  .proximities-section,
  .cta-banner,
  .detail-testimonials-section {
    padding: 52px 0 !important;
  }
  .section-header {
    margin-bottom: 30px !important;
  }
}

@media (max-width: 640px) {
  .project-detail-title {
    font-size: 2rem;
  }
  .specs-bar-container {
    grid-template-columns: 1fr;
    padding: 18px 20px;
  }
  .spec-bar-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
  }
  .overview-section,
  .amenities-section,
  .gallery-section,
  .proximities-section,
  .cta-banner,
  .detail-testimonials-section {
    padding: 36px 0 !important;
  }
  .section-header {
    margin-bottom: 22px !important;
  }
  .amenities-detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-gallery-grid {
    grid-template-columns: 1fr;
  }
  .prox-pins-grid {
    grid-template-columns: 1fr;
  }
  .plots-dimension-strip {
    grid-template-columns: 1fr;
  }
  .prox-card-top-bar {
    padding: 12px 16px;
  }
  .prox-commute-matrix {
    padding: 14px 16px;
  }
  .bank-chips-wrap {
    gap: 8px;
  }
  .bank-chip {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================================================== */

/* Page Banner */
.page-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 19, 0.65) 0%, rgba(7, 11, 19, 0.8) 100%);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 0 60px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: var(--primary-gold-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--primary-gold);
}

.breadcrumbs .separator {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-banner-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Who We Are Card */
.who-we-are-section {
  /* Keep the card clear of the hero banner instead of overlapping it. */
  padding: 56px 0 0;
  margin-top: 0;
  position: relative;
  z-index: 3;
}

.who-we-are-card {
  background: linear-gradient(135deg, #0c1424 0%, #1a2744 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.who-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.who-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-weight: 500;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

.who-divider {
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 24px auto;
  border-radius: 2px;
}

.who-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.who-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.who-stat .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-gold-light);
}

.who-stat .lbl {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* About Detailed Section */
.about-detailed-section {
  padding: 90px 0;
  background: #ffffff;
}

.about-detailed-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}

.about-visual-col {
  position: relative;
  display: flex;
  flex-direction: column;
}

.visual-main-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  flex: 1;
}

.visual-main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-accent-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: linear-gradient(135deg, #0c1424 0%, #1a2744 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.visual-accent-badge i {
  color: var(--primary-gold);
  font-size: 1.5rem;
}

.visual-accent-badge strong {
  display: block;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}

.visual-accent-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.about-content-col .section-tag {
  margin-bottom: 14px;
}

.about-body-narrative {
  margin-top: 24px;
}

.about-body-narrative p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-body-narrative .highlight-p {
  font-size: 1.02rem;
  color: var(--text-primary);
  font-weight: 500;
}

.quote-accent-box {
  background: var(--gold-subtle);
  border-left: 4px solid var(--primary-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
  position: relative;
}

.quote-accent-box .quote-icon {
  color: var(--primary-gold);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.quote-accent-box p {
  color: #334155;
  font-style: italic;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

.about-actions-row {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Pillars Section */
.pillars-section {
  padding: 90px 0;
  background: #f8fafc;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.pillar-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--primary-gold-dark);
  font-size: 1.5rem;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 90px 0;
  background: #ffffff;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mv-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.mv-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.mv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-subtle);
  color: var(--primary-gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.mv-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.mv-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mv-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 6px 0;
}

.mv-points li i {
  color: var(--emerald-green);
  font-size: 0.85rem;
}

/* CTA Banner Section */
.cta-banner-section {
  padding: 60px 0;
  background: #f8fafc;
}

.cta-banner-card {
  background: linear-gradient(135deg, #0c1424 0%, #1a2744 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* Detail pages: keep the full-width content bands on the light page canvas.
   Dark cards and the image hero remain intentionally contrasted. */
section[style*="#070c18"],
section[style*="#070b14"],
section[style*="#060913"],
section[style*="linear-gradient(135deg, #090f1d"] {
  background: var(--bg-light) !important;
  color: var(--text-primary) !important;
}

section[style*="#070c18"] .section-title,
section[style*="#070b14"] .section-title,
section[style*="#060913"] .section-title,
section[style*="linear-gradient(135deg, #090f1d"] h2 {
  color: var(--text-primary) !important;
  text-shadow: none;
}

section[style*="#070c18"] .section-desc,
section[style*="#070b14"] .section-desc,
section[style*="#060913"] .section-desc,
section[style*="linear-gradient(135deg, #090f1d"] p {
  color: var(--text-secondary) !important;
}

.cta-content .section-tag {
  color: var(--primary-gold-light);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #ffffff;
  margin: 12px 0;
  line-height: 1.2;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 500px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

/* Badge Pill (used in about page) */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-subtle);
  color: var(--primary-gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.fab-whatsapp {
  background: #25d366;
}

.fab-whatsapp:hover {
  background: #20ba59;
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.fab-call {
  background: var(--gold-gradient);
  color: #070b13;
}

.fab-call:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.45);
}

.back-to-top {
  opacity: 0;
  visibility: hidden;
  background: #0f172a;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--primary-gold);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #1e293b;
  transform: translateY(-3px);
}

/* ==========================================================================
   MODALS (BOOKING & LIGHTBOX)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 8, 16, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2800;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.modal-content-card {
  background: radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.09) 0%, transparent 45%), #0c1424;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 175, 55, 0.18);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-content-card::-webkit-scrollbar {
  width: 6px;
}

.modal-content-card::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.modal-content-card::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.35);
  border-radius: 10px;
}

.modal-content-card::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.6);
}

.modal-backdrop.open .modal-content-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  font-size: 1.05rem;
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--primary-gold);
  color: #ffffff;
  transform: rotate(90deg);
}

/* Modal Content Typography & Badges */
.modal-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  padding-right: 40px;
}

.inquiry-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #f7d570;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.inquiry-badge i {
  color: var(--primary-gold-light);
  font-size: 0.85rem;
}

.badge-free-vip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.38);
  color: #34d399;
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.inquiry-heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.25;
  letter-spacing: 0.4px;
}

.text-gold-accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.inquiry-sub {
  font-size: 0.92rem;
  color: #94a3b8;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

/* Site Tour Quick Trust Perks */
.site-tour-perks {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.tour-perk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #cbd5e1;
}

.tour-perk i {
  color: var(--primary-gold);
  font-size: 0.82rem;
}

/* Inquiry Form */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inquiry-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.inquiry-form label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #cbd5e1;
  margin: 0;
}

.inquiry-form label .required {
  color: var(--primary-gold);
  font-weight: 700;
}

/* Input with Luxury Icon Wrapper */
.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-icon-wrapper > i {
  position: absolute;
  left: 16px;
  color: var(--primary-gold);
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition);
}

.input-icon-wrapper input,
.input-icon-wrapper select {
  padding-left: 44px !important;
}

.inquiry-form input,
.inquiry-form select {
  width: 100%;
  background: rgba(18, 28, 46, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  font-family: var(--font-body);
  box-sizing: border-box;
}

.inquiry-form input::placeholder {
  color: #64748b;
  opacity: 1;
}

.inquiry-form input:focus,
.inquiry-form select:focus {
  border-color: var(--primary-gold);
  background: rgba(24, 38, 62, 0.95);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18), 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* Custom Select Styling */
.inquiry-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 42px;
  cursor: pointer;
}

.inquiry-form select option {
  background: #0c1527;
  color: #ffffff;
  padding: 12px;
}

/* Date Picker Indicator */
.inquiry-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.85) sepia(80%) saturate(300%) hue-rotate(5deg);
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.inquiry-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* 2-Column Responsive Row */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Modal Submit Button */
.modal-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: 12px;
  letter-spacing: 0.5px;
  margin-top: 6px;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Modal Trust Footer */
.modal-trust-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-trust-footer i {
  color: var(--primary-gold);
}

.modal-trust-footer a {
  color: var(--primary-gold-light);
  font-weight: 600;
  transition: var(--transition);
}

.modal-trust-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 540px) {
  .modal-content-card {
    padding: 28px 18px;
    border-radius: 16px;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .inquiry-heading {
    font-size: 1.5rem;
  }
  .site-tour-perks {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-content-box {
  max-width: 95vw;
  max-height: 90vh;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-content-box img {
  max-width: 95vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
}

.lightbox-caption {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-top: 14px;
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: #080d18;
  color: #ffffff;
  border: 1px solid var(--primary-gold);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  animation: toastSlideUp 0.3s ease;
}

@keyframes toastSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-links {
    gap: 20px;
  }
  .nav-link {
    font-size: 0.84rem;
  }
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-nav-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }
  .hero-nav-arrow.hero-prev {
    left: 14px;
  }
  .hero-nav-arrow.hero-next {
    right: 14px;
  }
  .hero-property-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .about-image-wrapper {
    min-height: 420px;
    height: 420px;
  }
  .about-badge-card {
    right: 20px;
    bottom: 20px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .calc-container-box {
    grid-template-columns: 1fr;
  }
  .calc-results-col {
    border-left: none;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-actions {
    display: flex;
  }
  .nav-container {
    height: 96px;
  }
  .brand-logo img {
    height: 70px;
    max-width: 180px;
  }
  .nav-links {
    position: fixed;
    top: 96px;
    left: 0;
    width: 100%;
    background: #070c14;
    flex-direction: column;
    padding: 30px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    display: none;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.8);
  }
  .nav-links.open {
    display: flex;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    padding: 6px 14px;
    margin-top: 6px;
  }
}

@media (max-width: 768px) {
  .detail-approval-ticker {
    min-height: 130px;
    padding: 22px 0;
  }
  .detail-approval-item img {
    height: 72px;
  }
  .topbar {
    display: none;
  }
  .nav-container {
    height: 86px;
  }
  .brand-logo img {
    height: 62px;
    max-width: 155px;
  }
  .nav-links {
    top: 86px;
  }
  .blogs-grid {
    grid-template-columns: 1fr;
  }
  .hero-nav-arrow {
    display: none;
  }
  .hero.hero-slider {
    position: relative;
    min-height: 100svh;
    min-height: 640px;
    height: auto;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-slides {
    position: relative;
    width: 100%;
    min-height: 100svh;
    min-height: 640px;
    display: flex;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    padding: 95px 0 155px;
    z-index: 1;
    overflow: hidden;
  }
  .hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
  }
  .hero-bg-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .hero-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(7, 11, 19, 0.78) 0%,
      rgba(7, 11, 19, 0.62) 40%,
      rgba(7, 11, 19, 0.94) 100%
    );
    z-index: 2;
  }
  .hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 16px;
  }
  .hero-slide-content {
    max-width: 100%;
    padding: 0;
    text-align: left;
  }
  .hero-pill {
    padding: 5px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
    gap: 6px;
    margin-bottom: 10px;
    max-width: 100%;
  }
  .hero-slide-location {
    font-size: 0.86rem;
    gap: 6px;
    margin-bottom: 10px;
    color: var(--primary-gold-light);
  }
  .hero-title {
    font-size: clamp(1.75rem, 5.8vw, 2.25rem);
    line-height: 1.18;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
  }
  .hero-subtext {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 16px;
    color: #e2e8f0;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-checkpoints {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 18px;
  }
  .checkpoint-item {
    font-size: 0.84rem;
    gap: 8px;
  }
  .checkpoint-icon {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
  .hero-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.95rem;
  }
  .hero-property-tabs-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding-bottom: 12px;
  }
  .hero-property-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    width: 100%;
  }
  .hero-tab-btn {
    padding: 6px 10px;
    border-radius: 8px;
    gap: 8px;
  }
  .hero-tab-btn .tab-index {
    font-size: 0.85rem;
  }
  .hero-tab-btn .tab-title {
    font-size: 0.76rem;
  }
  .hero-tab-btn .tab-loc {
    font-size: 0.65rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid,
  .amenities-grid,
  .gallery-grid,
  .testimonials-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-marquee {
    grid-template-columns: 1fr;
    max-height: 520px;
  }
  .testimonial-column-window {
    height: 500px;
  }
  .testimonial-column-window:nth-child(n + 2) {
    display: none;
  }
  .about-features-list {
    grid-template-columns: 1fr;
  }
  .about-detailed-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .who-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-banner-title {
    font-size: 2.2rem;
  }
  .who-title {
    font-size: 1.2rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .about-image-wrapper {
    min-height: 300px;
    height: 300px;
  }
  .about-badge-card {
    padding: 12px 16px;
    right: 10px;
    bottom: 10px;
    gap: 10px;
  }
  .badge-number {
    font-size: 2rem;
  }
  .badge-text {
    font-size: 0.8rem;
  }
  .who-stats-row {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .page-banner-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .hero.hero-slider {
    min-height: 100svh;
    min-height: 600px;
  }
  .hero-slide {
    padding: 85px 0 135px;
  }
  .hero-title {
    font-size: 1.68rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .hero-subtext {
    font-size: 0.88rem;
    -webkit-line-clamp: 2;
    margin-bottom: 12px;
  }
  .hero-checkpoints {
    gap: 6px;
    margin-bottom: 14px;
  }
  .checkpoint-item {
    font-size: 0.8rem;
  }
  .hero-property-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .hero-tab-btn {
    padding: 5px 8px;
    gap: 6px;
  }
  .hero-tab-btn .tab-index {
    font-size: 0.78rem;
  }
  .hero-tab-btn .tab-title {
    font-size: 0.72rem;
  }
  .hero-tab-btn .tab-loc {
    display: none;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .metric-card {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 8px;
  }
  .metric-card:last-child {
    border-bottom: none;
  }
  .calc-container-box {
    padding: 18px 14px;
  }
  .calc-results-col {
    padding: 18px 12px;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .floating-actions {
    bottom: 16px;
    right: 16px;
    gap: 8px;
  }
  .fab-btn {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   ABOUT US & CONTACT PAGES - DEDICATED MOBILE RESPONSIVENESS
   ========================================================================== */

@media (max-width: 992px) {
  /* About Page - Tablet Layout */
  .about-detailed-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual-col {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .who-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  /* Contact Page - Tablet Layout */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-info-col {
    padding: 32px;
  }
  .map-col {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  /* Fixed Nav Overflow on Mobile */
  .nav-links {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* 1. Page Hero Banner (About Us & Contact Pages) */
  .page-banner {
    min-height: 240px;
    padding: 55px 0 40px;
    text-align: center;
  }
  .page-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
  }
  .page-banner-title,
  .page-banner-content h1 {
    font-size: clamp(1.65rem, 6vw, 2.2rem) !important;
    line-height: 1.25;
    margin-bottom: 12px;
    word-break: break-word;
  }
  .page-banner-subtitle,
  .page-banner-content p {
    font-size: 0.94rem;
    line-height: 1.55;
    max-width: 100%;
    padding: 0 6px;
  }
  .breadcrumbs {
    font-size: 0.8rem;
    padding: 4px 14px;
    margin-bottom: 14px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* 2. About Page - Who We Are Highlight Box */
  .who-we-are-section {
    padding: 24px 0 36px;
  }
  .who-we-are-card {
    padding: 28px 18px;
    border-radius: 16px;
  }
  .who-tag {
    font-size: 0.76rem;
    padding: 4px 12px;
    margin-bottom: 12px;
  }
  .who-title {
    font-size: 1.1rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }
  .who-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .who-stat {
    padding: 16px 10px;
    border-radius: 12px;
  }
  .who-stat .num {
    font-size: 1.65rem;
    margin-bottom: 4px;
  }
  .who-stat .lbl {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  /* 3. About Page - Detailed Story Section */
  .about-detailed-section {
    padding: 45px 0;
  }
  .about-detailed-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .visual-main-frame {
    min-height: 260px;
    height: 260px;
    border-radius: 14px;
  }
  .visual-accent-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    left: auto;
    max-width: calc(100% - 24px);
    padding: 10px 14px;
    border-radius: 10px;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  }
  .visual-accent-badge i {
    font-size: 1.25rem;
  }
  .visual-accent-badge strong {
    font-size: 0.82rem;
  }
  .visual-accent-badge span {
    font-size: 0.72rem;
  }
  .about-content-col .section-title {
    font-size: clamp(1.6rem, 5.5vw, 2rem);
    line-height: 1.25;
    margin-bottom: 14px;
  }
  .about-body-narrative p {
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 14px;
  }
  .quote-accent-box {
    padding: 16px 14px;
    margin: 18px 0;
    border-left-width: 3px;
    border-radius: 0 10px 10px 0;
  }
  .quote-accent-box .quote-icon {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }
  .quote-accent-box p {
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .about-actions-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
  }
  .about-actions-row .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.95rem;
  }

  /* 4. About Page - Core Pillars Section */
  .pillars-section {
    padding: 45px 0;
  }
  .pillars-section .section-header {
    margin-bottom: 26px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pillar-card {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .pillar-icon-box {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
    margin-bottom: 12px;
  }
  .pillar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }
  .pillar-card p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  /* 5. About Page - Mission & Vision Section */
  .mission-vision-section {
    padding: 45px 0;
  }
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mv-card {
    padding: 24px 18px;
    border-radius: 14px;
  }
  .mv-badge {
    font-size: 0.74rem;
    padding: 4px 12px;
    margin-bottom: 10px;
  }
  .mv-card h3 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .mv-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 14px;
  }
  .mv-points {
    gap: 8px;
  }
  .mv-points li {
    font-size: 0.86rem;
    line-height: 1.4;
    gap: 8px;
  }
  .mv-points li i {
    font-size: 0.8rem;
  }

  /* 6. About Page - Statutory Approvals Strip */
  .approvals-section {
    padding: 30px 0 !important;
  }
  .approvals-header h3 {
    font-size: 1.3rem !important;
  }
  .approvals-header p {
    font-size: 0.85rem !important;
  }
  .approval-badge-item img {
    height: 44px;
    width: auto;
  }

  /* 7. About Page - CTA Banner Card */
  .cta-banner-section {
    padding: 35px 0;
  }
  .cta-banner-card {
    padding: 26px 18px;
    border-radius: 14px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .cta-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .cta-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 0;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  /* 8. Contact Page - Responsive Grid & Form */
  .contact-section {
    padding: 45px 0;
  }
  .contact-section .section-header {
    margin-bottom: 26px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .contact-info-col {
    padding: 24px 18px;
    border-radius: 16px;
  }
  .contact-info-col h3 {
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .contact-info-col p {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  .contact-methods {
    gap: 14px;
    margin-bottom: 22px;
  }
  .contact-method-item {
    gap: 12px;
    align-items: flex-start;
  }
  .method-icon {
    width: 38px;
    height: 38px;
    font-size: 0.92rem;
    flex-shrink: 0;
  }
  .method-details h5 {
    font-size: 0.76rem;
    margin-bottom: 2px;
  }
  .method-details a,
  .method-details span {
    font-size: 0.92rem;
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .contact-info-col form {
    gap: 12px;
  }
  .contact-info-col form .form-control {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.92rem;
    border-radius: 8px;
  }
  .contact-info-col form textarea.form-control {
    min-height: 90px;
  }

  /* Contact Page - Map & Location Stats */
  .map-col {
    height: auto !important;
    min-height: 360px;
    border-radius: 16px;
  }
  .map-col iframe {
    height: 250px;
    min-height: 230px;
  }
  .map-footer-stats {
    padding: 14px 16px;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  /* Extra Small Devices (Smartphones <= 576px) */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* About Page - Extra Small Phones */
  .who-we-are-card {
    padding: 20px 14px;
  }
  .who-title {
    font-size: 1.02rem;
    line-height: 1.5;
  }
  .who-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .who-stat {
    padding: 12px 8px;
  }
  .who-stat .num {
    font-size: 1.5rem;
  }
  .who-stat .lbl {
    font-size: 0.74rem;
  }

  .visual-main-frame {
    min-height: 210px;
    height: 210px;
  }
  .visual-accent-badge {
    padding: 8px 10px;
    bottom: 8px;
    right: 8px;
    gap: 8px;
  }
  .visual-accent-badge i {
    font-size: 1.1rem;
  }
  .visual-accent-badge strong {
    font-size: 0.76rem;
  }
  .visual-accent-badge span {
    font-size: 0.68rem;
  }

  /* Contact Page - Extra Small Phones */
  .contact-info-col {
    padding: 20px 14px;
  }
  .contact-info-col h3 {
    font-size: 1.25rem;
  }
  .map-footer-stats {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 14px;
  }
  .map-stat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .map-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .map-stat strong {
    font-size: 0.9rem;
  }

  /* Page Banner on Small Phones */
  .page-banner {
    padding: 45px 0 32px;
    min-height: 210px;
  }
  .page-banner-title,
  .page-banner-content h1 {
    font-size: 1.55rem !important;
  }
}

/* ==========================================================================
   GLOBAL SCROLL ANIMATIONS SYSTEM (APPLIES TO ALL PAGES)
   ========================================================================== */

/* 1. Gold Scroll Progress Bar (Top of Page) */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
  z-index: 9999;
  transition: width 0.08s ease-out;
  pointer-events: none;
}

/* 2. Scroll Reveal Animations Base States */
.reveal-init {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-init.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Fade Left (Slide In From Left) */
.reveal-fade-left {
  opacity: 0;
  transform: translateX(-42px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Fade Right (Slide In From Right) */
.reveal-fade-right {
  opacity: 0;
  transform: translateX(42px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Zoom In / Scale Reveal */
.reveal-zoom-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-zoom-in.revealed {
  opacity: 1;
  transform: scale(1);
}

/* 3D Flip Up Reveal */
.reveal-flip-up {
  opacity: 0;
  transform: perspective(1000px) rotateX(12deg) translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-flip-up.revealed {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translateY(0);
}

/* Stagger Delay Classes */
.stagger-1 { transition-delay: 0.08s !important; }
.stagger-2 { transition-delay: 0.16s !important; }
.stagger-3 { transition-delay: 0.24s !important; }
.stagger-4 { transition-delay: 0.32s !important; }
.stagger-5 { transition-delay: 0.40s !important; }
.stagger-6 { transition-delay: 0.48s !important; }

/* Subtle Icon Pulse on Reveal */
.revealed .method-icon,
.revealed .pillar-icon-box,
.revealed .about-feature-item .icon {
  animation: revealIconGlow 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

@keyframes revealIconGlow {
  0% { transform: scale(1); }
  50% { transform: scale(1.14); filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6)); }
  100% { transform: scale(1); filter: none; }
}

/* Continuous Floating Animation for Badges & Key Highlights */
.floating-element {
  animation: subtleFloat 3.5s ease-in-out infinite alternate;
}

@keyframes subtleFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}

/* Accessibility: Disable transforms for users preferring reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-init,
  .reveal-fade-left,
  .reveal-fade-right,
  .reveal-zoom-in,
  .reveal-flip-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
