/* ============================================================
   1000bigha.com — Global Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:         #1C3B2A;
  --primary-light:   #2E5940;
  --primary-dark:    #122618;
  --accent:          #C4943A;
  --accent-light:    #E0B96A;
  --accent-pale:     #F5EDD8;
  --bg-light:        #F7F4EE;
  --bg-card:         #FFFFFF;
  --text-dark:       #1A1A1A;
  --text-muted:      #6B7280;
  --text-light:      #9CA3AF;
  --border:          #E0DDD6;
  --border-light:    #F0EDE8;
  --success:         #2E7D32;
  --shadow-sm:       0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:       0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:       0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl:       0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       20px;
  --radius-xl:       28px;
  --radius-full:     9999px;
  --nav-height:      72px;
  --transition:      all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.25;
  color: var(--text-dark);
}
.serif { font-family: 'DM Serif Display', Georgia, serif; }
.sans  { font-family: 'Inter', sans-serif; }

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ── Section Labels ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title span { color: var(--accent); }
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1.5px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
}
.btn-accent:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,148,58,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: none;
  padding: 10px 16px;
}
.btn-ghost:hover { background: var(--accent-pale); color: var(--accent); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-icon { padding: 12px; border-radius: var(--radius-full); }

/* ── Badge / Tags ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-primary { background: var(--primary); color: #fff; }
.badge-accent  { background: var(--accent); color: #fff; }
.badge-gold    { background: var(--accent-pale); color: var(--accent); }
.badge-green   { background: rgba(28,59,42,0.1); color: var(--primary); }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-body { padding: 20px; }

/* ── Form Elements ──────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28,59,42,0.08);
}
.form-control::placeholder { color: var(--text-light); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* ── Stat Counter ───────────────────────────────────────────── */
.stat-item { text-align: center; }
.stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1.1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ── Intelligence Score Gauge ───────────────────────────────── */
.score-gauge-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.score-gauge-wrap svg { transform: rotate(-90deg); }
.score-gauge-bg { stroke: rgba(255,255,255,0.12); }
.score-gauge-fill {
  stroke: var(--accent);
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4,0,0.2,1);
}
.score-center-text {
  position: absolute;
  text-align: center;
}
.score-number {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.score-denom { font-size: 14px; color: rgba(255,255,255,0.6); }
.score-grade { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

/* ── Divider ────────────────────────────────────────────────── */
.divider { width: 100%; height: 1px; background: var(--border); margin: 32px 0; }
.divider-accent { width: 48px; height: 3px; background: var(--accent); margin-bottom: 20px; border-radius: 2px; }

/* ── Progress Bar ───────────────────────────────────────────── */
.progress-bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--accent); border-radius: 3px; transition: width 1s ease; }

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent; /* Fully transparent at the top */
  border-bottom: 1px solid rgba(255,255,255,0); /* Invisible border at the top */
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(18, 38, 24, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.navbar-logo { display: flex; align-items: center; flex-shrink: 0; }
.navbar-logo img { height: 36px; width: auto; }
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.navbar-menu a {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.navbar-menu a:hover, .navbar-menu a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-phone:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: 0.7; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
  overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-dark) !important;
  background: transparent !important;
  border-radius: 0;
  border-bottom: 1px solid var(--border-light);
}
.nav-dropdown-menu a:hover { background: var(--bg-light) !important; color: var(--primary) !important; }
.nav-dropdown-menu a:last-child { border-bottom: none; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: block;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(18, 38, 24, 0.95); /* Translucent dark background */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px;
  z-index: 999;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-xl);
  
  /* Smooth CSS transitions for premium feel */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.nav-mobile a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.nav-mobile .btn {
  margin-top: 24px;
  width: 100%;
  padding: 14px;
  font-size: 15px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* Whatsapp floating */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 900;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* ══════════════════════════════════════════════════════════════
   LAND CARD (shared)
══════════════════════════════════════════════════════════════ */
.land-card {
  display: block;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.land-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.land-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.land-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.land-card:hover .land-card-image img { transform: scale(1.05); }
.land-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.land-card-score {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
}
.land-card-score span { color: var(--accent-light); }
.land-card-body { padding: 16px 18px 18px; }
.land-card-area {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.land-card-location {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}
.land-card-tags { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.land-card-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-muted);
  padding: 3px 8px;
  background: var(--bg-light);
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}
.land-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 12px;
}
.land-card-price {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
}
.land-card-price-sub { font-size: 11px; color: var(--text-muted); font-family: 'Inter', sans-serif; font-weight: 400; }

/* ══════════════════════════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0; /* Merged with transparent navbar */
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--primary);
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,28,18,0.85) 0%, rgba(12,28,18,0) 100%),
              linear-gradient(to right, rgba(18,38,24,0.92) 55%, rgba(18,38,24,0.5));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: calc(64px + var(--nav-height)) 24px 64px; /* Space top elements below transparent navbar */
  color: #fff;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
.animate-up { animation: fadeInUp 0.6s ease both; }
.animate-up-delay-1 { animation: fadeInUp 0.6s 0.1s ease both; }
.animate-up-delay-2 { animation: fadeInUp 0.6s 0.2s ease both; }
.animate-up-delay-3 { animation: fadeInUp 0.6s 0.3s ease both; }

/* ══════════════════════════════════════════════════════════════
   INTEL METRICS (Shared across pages)
══════════════════════════════════════════════════════════════ */
.intel-metric-row { display: flex; flex-direction: column; gap: 4px; }
.intel-metric-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.intel-metric-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.intel-metric-fill {
  height: 100%;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  border-radius: 3px;
  transition: width 1.2s ease;
}

/* ══════════════════════════════════════════════════════════════
   STORY CARDS (Shared)
══════════════════════════════════════════════════════════════ */
.story-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.story-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.story-card-img { aspect-ratio: 16/9; overflow: hidden; }
.story-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.story-card:hover .story-card-img img { transform: scale(1.04); }
.story-card-body { padding: 20px; }
.story-card-type { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.story-card-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; font-family: 'DM Serif Display', serif; }
.story-card-quote { font-size: 13px; color: var(--text-muted); line-height: 1.65; font-style: italic; }

/* ── Section header row ──────────────────────────────────────── */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.view-all-link:hover { color: var(--accent); gap: 9px; }

/* ── Why Feature Block (shared) ─────────────────────────────── */
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-feature:hover { border-color: var(--accent); background: var(--accent-pale); }
.why-feature-icon { font-size: 24px; flex-shrink: 0; }
.why-feature-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.why-feature-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.read-more:hover { color: var(--accent); gap: 8px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .navbar-menu { display: none; }
  .navbar-actions { display: none; } /* Hide phone and button on mobile to prevent overlapping */
  .nav-hamburger { display: flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .container-wide {
    padding: 0 16px;
  }
  .navbar-inner {
    padding: 0 16px;
  }
  .quote-banner-content {
    padding: 0 16px;
  }
  .cta-banner-actions {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .btn {
    white-space: normal;
    text-align: center;
  }
}

/* ── Phone input with prefix ────────────────────────────────── */
.phone-input-wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.phone-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.phone-input-wrap .form-control {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  flex: 1;
}

/* Lucide Icon Sizing & Alignment */
svg.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2px;
  display: inline-block;
  vertical-align: -0.125em;
}

