/* ============================================================
   1000bigha.com — Home Page Styles
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin-top: 0; /* Merged with transparent navbar */
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(12,28,18,0.92) 0%,
    rgba(18,38,24,0.75) 50%,
    rgba(18,38,24,0.45) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: calc(80px + var(--nav-height)) 24px 80px; /* Space top elements below transparent navbar */
  width: 100%;
}
.hero-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,148,58,0.18);
  border: 1px solid rgba(196,148,58,0.4);
  color: var(--accent-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-heading .accent { color: var(--accent-light); }
.hero-subheading {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.hero-trust-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* Hero stats strip */
.hero-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hero-stat {
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* Search Panel */
.search-panel {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-xl);
}
.search-panel-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.search-panel .form-group { margin-bottom: 14px; }
.search-panel .form-control {
  border-color: var(--border);
  background: var(--bg-light);
}
.search-panel .form-control:focus { background: #fff; }
.search-panel .btn-accent { width: 100%; padding: 14px; font-size: 15px; margin-top: 4px; }
.search-divider {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin: 14px 0;
  position: relative;
}
.search-divider::before, .search-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 44%;
  height: 1px;
  background: var(--border);
}
.search-divider::before { left: 0; }
.search-divider::after { right: 0; }
.whatsapp-panel-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.whatsapp-panel-btn:hover { background: #1ebe5c; transform: translateY(-1px); }

/* ── Featured Listings ─────────────────────────────────────── */
.featured-section { background: var(--bg-light); }
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}
.view-all-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.view-all-link:hover { color: var(--accent); gap: 10px; }
.land-cards-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 1100px) { .land-cards-carousel { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .land-cards-carousel { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .land-cards-carousel { grid-template-columns: 1fr; } }

/* ── Land Intelligence + Journey ──────────────────────────── */
.intel-journey-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.intel-card {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.intel-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.intel-badge {
  background: rgba(196,148,58,0.15);
  border: 1px solid rgba(196,148,58,0.35);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.intel-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.intel-body { display: flex; gap: 32px; align-items: center; }
.intel-gauge { flex-shrink: 0; }
.intel-gauge svg { transform: rotate(-90deg); }
.intel-gauge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.intel-gauge-num {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.intel-gauge-denom { font-size: 13px; color: rgba(255,255,255,0.5); }
.intel-gauge-grade { font-size: 10px; color: var(--accent); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.intel-metrics { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.intel-metric-row { display: flex; flex-direction: column; gap: 5px; }
.intel-metric-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.intel-metric-label span:last-child { color: var(--accent-light); font-weight: 600; }
.intel-metric-bar { height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.intel-metric-fill { height: 100%; background: var(--accent); border-radius: 3px; }
.intel-cta .btn { margin-top: 4px; }

/* Journey card */
.journey-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}
.journey-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.journey-steps {
  display: flex;
  gap: 0;
  position: relative;
}
.journey-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--primary));
  z-index: 0;
}
.journey-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.journey-step-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  border: 3px solid var(--bg-card);
  box-shadow: 0 0 0 2px var(--primary);
}
.journey-step-label { font-size: 11px; font-weight: 600; color: var(--text-dark); line-height: 1.3; }
.journey-cta-banner {
  margin-top: 28px;
  background: var(--accent-pale);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.journey-cta-banner p { font-size: 13px; color: var(--primary); font-weight: 500; }

/* ── Land Categories ───────────────────────────────────────── */
.categories-section { background: #fff; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.category-card {
  display: block;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.category-card:hover {
  border-color: var(--primary);
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.category-card:hover .category-icon { background: rgba(255,255,255,0.15); color: var(--accent); }
.category-card:hover .category-name { color: #fff; }
.category-card:hover .category-img img { filter: brightness(1.2); }
.category-icon {
  width: 48px; height: 48px;
  background: rgba(28,59,42,0.08);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  color: var(--primary);
  font-size: 22px;
  transition: var(--transition);
}
.category-img {
  height: 64px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-top: 12px;
}
.category-img img { width: 100%; height: 100%; object-fit: cover; }
.category-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  line-height: 1.35;
}
@media (max-width: 1100px) { .categories-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── India Map Section ─────────────────────────────────────── */
.map-section { background: var(--bg-light); }
.map-section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.india-map-card {
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.india-map-card h3 { color: #fff; font-size: 20px; margin-bottom: 20px; }
.india-map-container {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.india-map-container img { max-height: 340px; max-width: 100%; height: auto; object-fit: contain; filter: brightness(0.85); }
.state-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin: 4px;
  cursor: pointer;
  transition: var(--transition);
}
.state-chip:hover, .state-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.state-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.state-chip.active .dot { background: #fff; }
.map-states-grid { display: flex; flex-wrap: wrap; margin-top: 16px; }

.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}
.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.why-stat-item {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-stat-icon {
  width: 44px; height: 44px;
  background: rgba(28,59,42,0.08);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-stat-val {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.why-stat-lbl { font-size: 12px; color: var(--text-muted); }
.why-features { display: flex; flex-direction: column; gap: 14px; }
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.why-feature-icon {
  width: 40px; height: 40px;
  background: rgba(28,59,42,0.08);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--primary);
}
.why-feature-title { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.why-feature-desc { font-size: 12px; color: var(--text-muted); }

/* ── Success Stories ───────────────────────────────────────── */
.stories-section { background: #fff; }
.story-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.story-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.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.05); }
.story-card-body { padding: 20px; }
.story-card-type { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.story-card-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; line-height: 1.4; }
.story-card-location { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.story-card-quote { font-size: 13px; color: var(--text-muted); line-height: 1.65; font-style: italic; border-left: 3px solid var(--accent); padding-left: 12px; margin-bottom: 14px; }
.story-card-author { font-size: 12px; font-weight: 600; color: var(--primary); }

/* ── Knowledge Center ──────────────────────────────────────── */
.knowledge-section { background: var(--bg-light); }
.article-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.article-card-img { aspect-ratio: 16/9; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; }
.article-card-body { padding: 18px; }
.article-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.tag-guide    { background: rgba(28,59,42,0.1);  color: var(--primary); }
.tag-diligence{ background: rgba(196,148,58,0.12); color: var(--accent); }
.tag-news     { background: rgba(59,130,246,0.12); color: #2563EB; }
.tag-invest   { background: rgba(139,92,246,0.12); color: #7C3AED; }
.article-card-title { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.45; }
.article-card-date { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; }
.read-more { font-size: 13px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 5px; transition: var(--transition); }
.read-more:hover { color: var(--accent); gap: 9px; }

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: var(--primary-dark);
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
}
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 64px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.cta-banner-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  color: #fff;
  margin-bottom: 10px;
}
.cta-banner-content p { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.cta-trust { display: flex; gap: 20px; }
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.cta-trust-item svg { color: var(--accent); }
.cta-banner-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
@media (max-width: 768px) {
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-trust { justify-content: center; }
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .search-panel { width: 100%; max-width: 480px; margin: 0 auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .intel-journey-row { grid-template-columns: 1fr; }
  .map-section-row { grid-template-columns: 1fr; }
  .intel-body { flex-direction: column; }
  .journey-steps { flex-direction: column; gap: 12px; } /* Stack journey steps on tablets to avoid horizontal scroll */
  .journey-steps::before { display: none; }
}
@media (max-width: 640px) {
  .hero-inner {
    padding: calc(48px + var(--nav-height)) 16px 48px; /* Reduce horizontal padding to avoid squeezing */
  }
  .search-panel {
    width: 100%;
    max-width: 100%;
    padding: 20px 16px; /* Expand form fields space by reducing panel padding on small screens */
  }
  .hero-heading { font-size: 36px; }
  .hero-stats { grid-template-columns: 1fr; } /* Stack stats vertically on mobile to prevent overflow */
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px;
  }
  .hero-stat:last-child {
    border-bottom: none;
  }
  .why-features-grid {
    grid-template-columns: 1fr;
  }
  .india-map-card {
    padding: 20px 16px;
    min-height: auto; /* Allow auto height on mobile */
  }
  .why-card {
    padding: 24px 16px;
  }
  .why-stats-grid {
    grid-template-columns: 1fr; /* Stack stats vertically to prevent text overflow */
    gap: 12px;
  }
  .why-stat-item {
    padding: 16px;
    gap: 12px;
  }
  .intel-card {
    padding: 24px 16px;
    gap: 20px;
  }
  .journey-card {
    padding: 24px 16px;
  }
}
