/* ==========================================================================
   ddaflatsbooking.com by Empire States - Modern Architectural Glassmorphism
   Theme: Bright, High-End Real Estate Glassmorphism (Airy, Crisp, Image-Forward)
   ========================================================================== */

:root {
  /* Core Architectural Palette */
  --bg-base: #f8fafc;
  --bg-surface: #ffffff;
  --bg-elevated: #f1f5f9;
  
  /* Crisp Light Glassmorphism Tokens */
  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-bg-subtle: rgba(255, 255, 255, 0.6);
  --glass-bg-card: rgba(255, 255, 255, 0.88);
  --glass-bg-hover: rgba(255, 255, 255, 0.96);
  --glass-border: rgba(255, 255, 255, 0.9);
  --glass-border-specular: rgba(226, 232, 240, 0.8);
  --glass-border-accent: rgba(37, 99, 235, 0.25);
  --glass-blur: blur(24px);
  --glass-shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.04);
  --glass-shadow: 0 12px 36px rgba(15, 23, 42, 0.07), 0 2px 6px rgba(15, 23, 42, 0.03);
  --glass-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1), 0 4px 12px rgba(15, 23, 42, 0.05);

  /* Refined Architectural Accents (Zero AI Neon, Zero Gold) */
  --accent-blue: #1d4ed8;
  --accent-blue-dark: #1e3a8a;
  --accent-blue-light: #3b82f6;
  --accent-blue-subtle: rgba(29, 78, 216, 0.08);

  --accent-emerald: #059669;
  --accent-emerald-dark: #047857;
  --accent-emerald-subtle: rgba(5, 150, 105, 0.1);

  --tag-hot: #e11d48;
  --tag-hot-bg: rgba(225, 29, 72, 0.08);

  /* Typography */
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-faint: #94a3b8;

  /* Font Families */
  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-hindi: 'Inter', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.18s ease;
  --transition-medium: 0.28s var(--ease-spring);
  --transition-slow: 0.45s var(--ease-spring);
}

/* Base Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body[lang="hi"] {
  font-family: var(--font-hindi);
}

/* Subtle Architectural Ambient Mesh */
.ambient-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.4;
}

.glow-orb-1 {
  top: -15%;
  right: 10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, #e0f2fe 0%, rgba(224, 242, 254, 0) 70%);
}

.glow-orb-2 {
  top: 35%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #dcfce7 0%, rgba(220, 252, 231, 0) 70%);
}

.glow-orb-3 {
  bottom: 5%;
  right: 15%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #f1f5f9 0%, rgba(241, 245, 249, 0) 70%);
}

/* Sticky Promo Bar */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  background: linear-gradient(90deg, #1e3a8a 0%, #1d4ed8 100%);
  color: #ffffff;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(30, 58, 138, 0.2);
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.promo-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 2px 9px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.promo-link {
  background: #ffffff;
  color: #1e3a8a;
  padding: 3px 13px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 800;
  transition: var(--transition-fast);
}

.promo-link:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}

/* Glassmorphic Navbar (Airy, Frosted White) */
.navbar {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  transition: var(--transition-fast);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.25);
}

.brand-icon svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.2;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text-primary);
  line-height: 1.1;
}

.brand-title span {
  color: var(--accent-blue);
}

.brand-sub {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

/* Nav Links & Dropdowns */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 11px;
  border-radius: 8px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-blue);
  background: var(--accent-blue-subtle);
}

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

.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.drop-arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.nav-dropdown:hover .drop-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  padding: 8px;
  min-width: 250px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 1050;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
  animation: dropFade 0.2s ease forwards;
}

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

.drop-item {
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.drop-item:hover {
  background: var(--accent-blue-subtle);
}

.drop-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.drop-item:hover .drop-item-title {
  color: var(--accent-blue);
}

.drop-item-sub {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 1px;
}

/* Bilingual Toggle Switch (Crisp Frosted Pill) */
.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(241, 245, 249, 0.9);
  border: 1px solid rgba(203, 213, 225, 0.7);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: inherit;
}

.lang-btn.active {
  background: #ffffff;
  color: var(--accent-blue);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.1);
}

.lang-btn:hover:not(.active) {
  color: var(--text-primary);
}

/* Header CTAs */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-glass-cta {
  background: var(--accent-blue);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.25);
  white-space: nowrap;
}

.btn-glass-cta:hover {
  background: var(--accent-blue-dark);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35);
  transform: translateY(-1px);
}

.menu-toggle-btn {
  display: none;
  background: rgba(241, 245, 249, 0.8);
  border: 1px solid rgba(203, 213, 225, 0.7);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.menu-toggle-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  padding: 20px 24px 28px;
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
  box-shadow: var(--glass-shadow-lg);
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.mobile-drawer.open {
  display: flex;
}

.mobile-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  border-bottom: 1px solid rgba(241, 245, 249, 0.8);
  transition: var(--transition-fast);
}

.mobile-link:hover, .mobile-link:active {
  background: var(--accent-blue-subtle);
  color: var(--accent-blue);
}

/* ==========================================================================
   Hero Section (Airy, Image-Driven Architectural Layout)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 4% 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/hero-bg-narela.webp');
  background-size: cover;
  background-position: center top;
  opacity: 0.10;
  filter: saturate(1.1);
  pointer-events: none;
  z-index: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.72) 0%, rgba(248, 250, 252, 0.96) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-grid > * {
  min-width: 0;
  max-width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
}

.hero-right {
  min-width: 0;
  max-width: 100%;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.trust-chip {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.6);
  animation: pulse-emerald 2s infinite;
}

@keyframes pulse-emerald {
  0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(5, 150, 105, 0); }
  100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.hero-title {
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.8px;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
  max-width: 100%;
}

.hero-title em {
  font-style: normal;
  color: var(--accent-blue);
}

.hero-sub {
  font-size: 16.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 530px;
  margin-bottom: 24px;
}

.hero-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.feature-chip {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 6px 13px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.feature-chip svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 2.4;
}

.hero-action-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-primary-glass {
  background: var(--accent-blue);
  color: #ffffff;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.25);
  transition: var(--transition-fast);
}

.btn-primary-glass:hover {
  background: var(--accent-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.35);
}

.btn-outline-glass {
  background: #ffffff;
  border: 1.5px solid rgba(203, 213, 225, 0.9);
  color: var(--text-primary);
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  transition: var(--transition-fast);
}

.btn-outline-glass:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  transform: translateY(-2px);
}

/* Hero Stats Strip */
.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 16px;
  gap: 8px;
  box-shadow: var(--glass-shadow-sm);
}

.hstat-item {
  text-align: center;
  border-right: 1px solid rgba(226, 232, 240, 0.8);
  padding: 0 8px;
}

.hstat-item:last-child {
  border-right: none;
}

.hstat-val {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.hstat-val span {
  color: var(--accent-blue);
}

.hstat-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

/* Hero Real Photo Rail */
.hero-photo-rail {
  margin-top: 20px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--glass-shadow-sm);
  min-width: 0;
  max-width: 100%;
}

.photo-rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  min-width: 0;
}

.rail-title {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text-primary);
}

.rail-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

.rail-link:hover {
  text-decoration: underline;
}

.photo-rail-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  min-width: 0;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.rail-thumb-btn {
  flex: 0 0 90px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: #f1f5f9;
  transition: var(--transition-fast);
}

.rail-thumb-btn:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.2);
}

.rail-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero Visual Showcase Box (Prominent Real Images) */
.hero-visual-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  max-width: 100%;
}

.hero-main-photo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--glass-shadow-lg);
  aspect-ratio: 16/10;
  border: 4px solid #ffffff;
  min-width: 0;
  max-width: 100%;
}

.hero-main-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-overlay-glass {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
  min-width: 0;
}

.photo-overlay-info {
  flex: 1 1 auto;
  min-width: 0;
}

.photo-overlay-info h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.photo-overlay-info p {
  font-size: 11.5px;
  color: var(--text-secondary);
  font-weight: 600;
}

.photo-tag-pill {
  background: var(--accent-emerald-subtle);
  color: var(--accent-emerald-dark);
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 50px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Floating Callback Card in Hero */
.hero-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--glass-shadow);
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-emerald));
  border-radius: 18px 18px 0 0;
}

.card-top-alert {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  margin-bottom: 16px;
}

.card-top-alert h3 {
  font-size: 15px;
  font-weight: 800;
  color: #15803d;
  margin-bottom: 2px;
}

.card-top-alert p {
  font-size: 12px;
  color: #166534;
}

.btn-whatsapp-full {
  width: 100%;
  background: #10b981;
  color: #ffffff;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-size: 14.5px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
  transition: var(--transition-fast);
  margin-bottom: 16px;
}

.btn-whatsapp-full:hover {
  background: #059669;
  transform: translateY(-1px);
}

.btn-whatsapp-full svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.divider-text {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  margin-bottom: 14px;
}

.divider-text::before, .divider-text::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 25%;
  height: 1px;
  background: #e2e8f0;
}

.divider-text::before { left: 0; }
.divider-text::after { right: 0; }

.form-input-group {
  margin-bottom: 12px;
}

.form-input-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.glass-input {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 9px;
  padding: 11px 13px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition-fast);
}

.glass-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.glass-input::placeholder {
  color: var(--text-faint);
}

.glass-select {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 9px;
  padding: 11px 13px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.glass-select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.btn-card-submit {
  width: 100%;
  background: var(--accent-blue);
  color: #ffffff;
  padding: 12px;
  border-radius: 9px;
  border: none;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-card-submit:hover {
  background: var(--accent-blue-dark);
}

.card-footer-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   Ticker Section
   ========================================================================== */
.ticker-strip {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker-loop 32s linear infinite;
}

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

.ticker-item {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticker-highlight {
  color: var(--accent-blue);
  font-weight: 800;
}

.ticker-tag {
  background: var(--accent-blue-subtle);
  color: var(--accent-blue);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 800;
}

.ticker-dot {
  color: #cbd5e1;
  font-size: 8px;
}

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

/* ==========================================================================
   General Section Layouts
   ========================================================================== */
.section {
  padding: 80px 4%;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: rgba(241, 245, 249, 0.65);
  border-top: 1px solid rgba(226, 232, 240, 0.7);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 46px;
}

.section-tag {
  display: inline-block;
  background: var(--accent-blue-subtle);
  color: var(--accent-blue);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-title em {
  font-style: normal;
  color: var(--accent-blue);
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   Active Schemes Section (Image-Header Cards)
   ========================================================================== */
.schemes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.scheme-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-medium);
}

.scheme-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-lg);
  border-color: var(--accent-blue);
}

.scheme-img-header {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.scheme-img-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-spring);
}

.scheme-card:hover .scheme-img-header img {
  transform: scale(1.05);
}

.scheme-badge-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.scheme-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.badge-active {
  background: #1d4ed8;
  color: #ffffff;
}

.badge-discount {
  background: #10b981;
  color: #ffffff;
}

.badge-govt {
  background: #4f46e5;
  color: #ffffff;
}

.scheme-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.scheme-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 8px;
}

.scheme-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.scheme-dates-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 18px;
}

.sdate-box span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sdate-box b {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-primary);
}

.sdate-box.sdate-red b {
  color: #e11d48;
}

.scheme-btn-group {
  display: flex;
  gap: 10px;
}

.btn-scheme-primary {
  flex: 1;
  background: var(--accent-blue);
  color: #ffffff;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-scheme-primary:hover {
  background: var(--accent-blue-dark);
}

.btn-scheme-wa {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #15803d;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-scheme-wa:hover {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
}

/* ==========================================================================
   Interactive Narela Pocket & Flat Explorer
   ========================================================================== */
.pocket-explorer-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 34px;
  box-shadow: var(--glass-shadow-lg);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: center;
}

.explorer-controls {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pocket-result-box {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.result-pocket-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 6px;
}

.result-flat-number {
  font-size: 52px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.result-flat-type {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

/* ==========================================================================
   Locations Showcase (with Preview Badges)
   ========================================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.loc-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 22px;
  transition: var(--transition-fast);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: var(--glass-shadow-sm);
}

.loc-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-blue);
  box-shadow: var(--glass-shadow);
}

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

.loc-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

.loc-badge-tag {
  font-size: 11px;
  font-weight: 800;
  background: var(--accent-blue-subtle);
  color: var(--accent-blue);
  padding: 3px 9px;
  border-radius: 6px;
}

.loc-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
  flex-grow: 1;
}

.loc-cta {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   Interactive EMI Calculator
   ========================================================================== */
.emi-calculator-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  box-shadow: var(--glass-shadow-lg);
}

.slider-group {
  margin-bottom: 22px;
}

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

.slider-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
}

.slider-value-display {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent-blue);
  background: var(--accent-blue-subtle);
  padding: 4px 11px;
  border-radius: 8px;
}

.glass-range-slider {
  width: 100%;
  height: 7px;
  background: #e2e8f0;
  border-radius: 6px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.glass-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.glass-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.emi-result-panel {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.emi-big-amount {
  font-size: 38px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.emi-sub-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.emi-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 24px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-secondary);
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 8px;
}

.breakdown-row b {
  color: var(--text-primary);
  font-weight: 800;
}

/* ==========================================================================
   Services Section (6 Cards)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 26px;
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
  box-shadow: var(--glass-shadow-sm);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-blue);
  box-shadow: var(--glass-shadow);
}

.service-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--accent-blue-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 2.2;
}

.service-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-bullet-list li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.service-bullet-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-emerald);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==========================================================================
   Real Photos & Floor Plans Gallery
   ========================================================================== */
.gallery-tab-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.gallery-tab-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: inherit;
}

.gallery-tab-btn.active, .gallery-tab-btn:hover {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.2);
}

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

.gallery-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-medium);
  box-shadow: var(--glass-shadow-sm);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-blue);
  box-shadow: var(--glass-shadow);
}

.gallery-img-container {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f1f5f9;
}

.gallery-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-spring);
}

.gallery-card:hover .gallery-img-container img {
  transform: scale(1.05);
}

.gallery-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 6px;
}

.gallery-info {
  padding: 16px;
}

.gallery-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.gallery-sub {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
  position: relative;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-caption {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 14px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ==========================================================================
   Why Invest in Narela (4 Pillars)
   ========================================================================== */
.invest-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--glass-shadow-sm);
  transition: var(--transition-medium);
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-blue);
  box-shadow: var(--glass-shadow);
}

.pillar-badge {
  display: inline-block;
  background: var(--accent-blue-subtle);
  color: var(--accent-blue);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 6px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.pillar-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.pillar-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pillar-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Why Empire States vs Traditional Agents
   ========================================================================== */
.transparency-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--glass-shadow-lg);
}

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

.transparency-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--accent-blue);
  border-radius: 12px;
  padding: 20px;
}

.transparency-item h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.transparency-item p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Testimonials & Google Reviews
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--glass-shadow-sm);
}

.review-stars {
  color: #0284c7;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-blue-subtle);
  color: var(--accent-blue);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
}

.review-date {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   Bilingual FAQ Section (Accordion)
   ========================================================================== */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--glass-shadow-sm);
}

.faq-item.active {
  border-color: var(--accent-blue);
}

.faq-question {
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 2.2;
  transition: transform 0.3s var(--ease-spring);
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

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

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

/* ==========================================================================
   Consultation Booking / Contact Section
   ========================================================================== */
.contact-section-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  box-shadow: var(--glass-shadow-lg);
}

.contact-info-col h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-info-col p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon-bubble {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-blue-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-bubble svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 2.2;
}

.contact-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-val {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ==========================================================================
   Floating Action Bar (Call & WhatsApp)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.btn-float-call {
  background: #1d4ed8;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35);
  transition: var(--transition-fast);
}

.btn-float-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.45);
}

.btn-float-wa {
  background: #10b981;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  transition: var(--transition-fast);
}

.btn-float-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.45);
}

.btn-float-call svg, .btn-float-wa svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
}

/* ==========================================================================
   Modals & Popups
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.glass-modal {
  background: #ffffff;
  border-radius: 22px;
  padding: 34px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--glass-shadow-lg);
  position: relative;
  text-align: center;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-icon-bubble {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.modal-icon-bubble svg {
  width: 30px;
  height: 30px;
  stroke: #16a34a;
  fill: none;
  stroke-width: 2.2;
}

.modal-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 22px;
  line-height: 1.55;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #0f172a;
  color: #ffffff;
  padding: 60px 4% 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
}

.footer-brand p {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-social-row {
  display: flex;
  gap: 10px;
}

.social-icon-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-icon-link svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
}

.footer-col h4 {
  font-size: 14.5px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 3px;
}

.footer-logo-img {
  max-width: 220px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   5-Step Booking to Key Handover Process (Booking se Chaabi tak)
   ========================================================================== */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.proc-step-card {
  background: var(--glass-bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 28px 22px;
  position: relative;
  box-shadow: var(--glass-shadow);
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
}

.proc-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue-light);
  box-shadow: var(--glass-shadow-lg);
}

.proc-step-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 14px;
  font-family: var(--font-main);
  opacity: 0.9;
}

.proc-step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.proc-step-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   Responsive Breakpoints Across All Devices
   ========================================================================== */
@media (max-width: 1180px) {
  .navbar .nav-menu { display: none; }
  .btn-glass-cta { display: none; }
  .menu-toggle-btn { display: flex; }
  
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .schemes-grid { grid-template-columns: 1fr 1fr; }
  .pocket-explorer-card { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .emi-calculator-card { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .invest-pillars-grid { grid-template-columns: 1fr 1fr; }
  .transparency-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .contact-section-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 125px 4% 50px; min-height: auto; }
  .hero-title { font-size: 28px; }
  .hero-action-row { flex-direction: column; width: 100%; gap: 10px; }
  .hero-action-row a { width: 100%; justify-content: center; }
  
  .hero-stats-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hstat-item { border-right: none; }
  .hstat-item:nth-child(odd) { border-right: 1px solid #e2e8f0; }
  
  .schemes-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .invest-pillars-grid { grid-template-columns: 1fr; }
  .transparency-grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews-grid { grid-template-columns: 1fr; }
  
  .section { padding: 50px 4%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .floating-actions { bottom: 16px; right: 16px; gap: 10px; }
  .btn-float-call, .btn-float-wa { padding: 10px 16px; font-size: 12.5px; }
}

@media (max-width: 480px) {
  .promo-bar { height: auto; min-height: 38px; padding: 4px 8px; font-size: 11px; }
  .promo-bar-inner { gap: 6px; justify-content: center; }
  .promo-bar-inner span:not(.promo-badge) {
    display: inline-block;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
  }
  .promo-badge { font-size: 10px; padding: 1px 6px; flex-shrink: 0; }
  .promo-link { font-size: 10.5px; padding: 2px 8px; flex-shrink: 0; }
  
  .navbar { top: 38px; height: 64px; }
  .brand-logo-img { width: 34px; height: 34px; }
  .brand-title { font-size: 16px; }
  .brand-sub { font-size: 10px; }
  
  .hero { padding: 115px 4% 40px; }
  .hero-title { font-size: 24px; line-height: 1.25; }
  .hero-sub { font-size: 14px; }
  .hero-chips { gap: 6px; }
  .feature-chip { font-size: 11.5px; padding: 4px 10px; }
  
  .hero-stats-strip { grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px 10px; }
  .hstat-val { font-size: 20px; }
  .hstat-lbl { font-size: 11px; }
  
  .photo-rail-scroll { gap: 8px; }
  .rail-thumb-btn { width: 68px; height: 50px; }
  
  .section-title { font-size: 22px; }
  .section-sub { font-size: 13.5px; }
  .section-tag { font-size: 10.5px; }
  
  .proc-step-card { padding: 20px 16px; }
  .proc-step-num { font-size: 26px; }
  .proc-step-title { font-size: 15px; }
  .proc-step-desc { font-size: 12.5px; }
  
  .glass-modal { padding: 24px 16px; border-radius: 16px; }
  .floating-actions { bottom: 12px; right: 12px; gap: 8px; }
  .btn-float-call, .btn-float-wa { padding: 9px 13px; font-size: 11.5px; }
  
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom p { text-align: left !important; }
}

/* Responsive layout and interaction refinements. */
:root { --header-height: 110px; }
html { scroll-padding-top: calc(var(--header-height) + 16px); }
img { max-width: 100%; }
:is(.section-container, .pocket-explorer-card, .emi-calculator-card,
    .contact-section-card, .schemes-grid, .locations-grid, .services-grid,
    .gallery-grid, .footer-grid) > * { min-width: 0; }
.glass-input, .glass-select { min-width: 0; max-width: 100%; }
.contact-val, .footer-brand-desc { overflow-wrap: anywhere; }
.photo-rail-head, .loc-header, .slider-header, .breakdown-row,
.card-footer-stats { gap: 10px; flex-wrap: wrap; }
.mobile-drawer {
  top: var(--header-height);
  max-height: calc(100dvh - var(--header-height));
  overscroll-behavior: contain;
  padding-bottom: max(28px, env(safe-area-inset-bottom));
}
.mobile-drawer > div:first-child { flex-wrap: wrap; gap: 8px; }
.glass-modal { max-height: calc(100dvh - 32px); overflow-y: auto; }
.faq-item.active .faq-answer { max-height: none; }
:where(a, button, input, select):focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
}

/* The full navigation needs enough room for both language variants. */
@media (max-width: 1500px) {
  .navbar .nav-menu, .navbar .btn-glass-cta { display: none; }
  .menu-toggle-btn { display: flex; }
}
@media (min-width: 1501px) {
  .mobile-drawer.open { display: none; }
  .nav-menu { gap: 4px; }
  .nav-link { padding-inline: 8px; }
}

@media (max-width: 768px) {
  .pocket-explorer-card, .emi-calculator-card, .contact-section-card {
    padding: 22px; gap: 24px;
  }
  .pocket-result-box, .emi-result-panel { padding: 22px 16px; }
  .glass-input, .glass-select { font-size: 16px; }
  .menu-toggle-btn { width: 44px; height: 44px; flex-shrink: 0; }
  .lang-btn { min-width: 44px; min-height: 44px; padding: 4px 8px; }
  .gallery-tab-btn, .mobile-link, .btn-card-submit, .btn-primary-glass,
  .btn-scheme-primary, .btn-scheme-wa { min-height: 44px; }
  .btn-primary-glass { white-space: normal; text-align: center; }
  .floating-actions {
    left: 0; right: 0; bottom: 0; flex-direction: row;
    gap: 10px; padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e2e8f0;
  }
  .btn-float-call, .btn-float-wa {
    flex: 1; min-width: 0; min-height: 44px;
    justify-content: center; padding: 10px; font-size: 13px;
  }
  body { padding-bottom: calc(66px + env(safe-area-inset-bottom)); }
  html { scroll-padding-bottom: 80px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-bottom p { text-align: left !important; }
  .lightbox-overlay { padding: 72px 16px 80px; }
  .lightbox-img-wrap, .lightbox-img-wrap img { max-height: calc(100dvh - 210px); }
  .lightbox-nav { top: auto; bottom: 16px; transform: none; }
}

@media (max-width: 480px) {
  :root { --header-height: 102px; }
  .navbar { padding-inline: 12px; gap: 8px; }
  .nav-brand { min-width: 0; gap: 6px; flex-shrink: 1; }
  .brand-text { min-width: 0; }
  .nav-actions { gap: 6px; }
  .brand-title { font-size: clamp(12px, 3.8vw, 16px); }
  .brand-sub { font-size: 9px; letter-spacing: 0; }
  .brand-logo-img { width: 28px; height: 28px; }
  .promo-bar { height: 38px; }
  .promo-bar-inner { width: 100%; min-width: 0; }
  .promo-bar-inner span:not(.promo-badge) { min-width: 0; flex: 1; max-width: none; }
  .promo-link { display: flex; align-items: center; min-height: 30px; }
  .hero-card, .pocket-explorer-card, .emi-calculator-card,
  .contact-section-card { padding: 18px; }
  .scheme-dates-card { grid-template-columns: 1fr; }
  .scheme-btn-group { flex-wrap: wrap; }
  .scheme-btn-group > a { flex: 1 1 120px; }
  .rail-thumb-btn { flex-basis: 68px; }
  .photo-overlay-glass { position: static; border-radius: 0; padding: 12px; }
  .hero-main-photo-card { aspect-ratio: auto; }
  .hero-main-photo-card > img { aspect-ratio: 16 / 10; height: auto; }
  .contact-info-col h3 { font-size: 22px; }
  .result-flat-number { font-size: 42px; }
  .emi-big-amount { font-size: 32px; }
  .hstat-val { overflow-wrap: anywhere; }
}
@media (pointer: coarse) {
  .gallery-tab-btn, .mobile-link, .btn-card-submit { min-height: 44px; }
  .glass-range-slider { height: 24px; background: linear-gradient(#e2e8f0, #e2e8f0) center / 100% 7px no-repeat; }
}
