/* ============================================================
   PATLIPUTRA SATELLITE TOWNSHIP — Premium News Blog Stylesheet
   Modern media portal aesthetic with glassmorphism & micro-interactions
   ============================================================ */

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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand palette */
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --primary-light: #99f6e4;
  --primary-bg: #f0fdfa;
  --accent: #d97706;
  --accent-hover: #b45309;
  --accent-light: #fde68a;

  /* Neutrals */
  --dark: #0f172a;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --white: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;

  /* Semantic */
  --success: #15803d;
  --success-bg: #dcfce7;
  --warning: #a16207;
  --warning-bg: #fef3c7;
  --info: #0369a1;
  --info-bg: #e0f2fe;
  --danger: #b91c1c;
  --danger-bg: #fee2e2;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
  --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  --shadow-glow: 0 0 20px rgba(13, 148, 136, 0.15);
  --shadow-accent-glow: 0 0 20px rgba(217, 119, 6, 0.2);

  /* Typography */
  --font-title: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 900px;
  --nav-height: 70px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

/* ============================================================
   UTILITY & LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.25);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 15px 36px;
  font-size: 1.05rem;
  border-radius: var(--border-radius);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

/* ============================================================
   TOP INFO BAR
   ============================================================ */
.top-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

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

.top-bar-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-right a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}

.top-bar-right a:hover {
  color: var(--primary-light);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: var(--transition);
  height: var(--nav-height);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.97);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.nav-brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-title);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.25);
}

.nav-brand-text h1 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.nav-brand-text span {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  position: relative;
}

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

.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-bg);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 20px;
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-cta .btn {
  padding: 9px 22px;
  font-size: 0.85rem;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.nav-hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   URGENCY STRIP
   ============================================================ */
.urgency-strip {
  background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #b91c1c 100%);
  color: var(--white);
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.urgency-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.03) 10px,
    rgba(255,255,255,0.03) 20px
  );
}

.urgency-strip-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 60px 0 24px;
  font-size: 0.85rem;
  line-height: 1.5;
  position: relative;
}

.urgency-strip-inner a {
  color: #fde68a;
  font-weight: 600;
  text-decoration: underline;
}

.urgency-strip-inner a:hover {
  color: var(--white);
}

.urgency-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fbbf24;
  margin-right: 6px;
  animation: pulse-dot 1.5s ease-in-out infinite;
  vertical-align: middle;
}

.urgency-strip-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.urgency-strip-close:hover {
  background: rgba(255,255,255,0.3);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 40%, #0d9488 80%, #0f766e 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(13, 148, 136, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(217, 119, 6, 0.12) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--primary-light);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent-light) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.hero-alert-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-alert-icon-green {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

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

.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.hero-meta-item strong {
  color: var(--white);
  font-weight: 800;
  font-size: 1.5rem;
  font-family: var(--font-title);
}

/* Decorative floating shapes */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-decor-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float-slow 8s ease-in-out infinite;
}

.hero-decor-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
  bottom: 50px;
  right: 20%;
  animation: float-slow 10s ease-in-out infinite reverse;
}

/* ============================================================
   NEWS TICKER
   ============================================================ */
.news-ticker {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.news-ticker .container {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-track {
  overflow: hidden;
  flex: 1;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ticker-content {
  display: flex;
  gap: 48px;
  animation: ticker-scroll 35s linear infinite;
  white-space: nowrap;
}

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-item a {
  color: var(--primary);
  font-weight: 600;
}

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

/* ============================================================
   KEY HIGHLIGHTS (Icon Cards Grid)
   ============================================================ */
.highlights {
  background: var(--white);
  position: relative;
}

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

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

.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--primary-bg);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.highlight-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* ============================================================
   OFFICIAL MAP SECTION
   ============================================================ */
.map-section {
  background: var(--bg);
}

.map-wrapper {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
  transition: var(--transition);
}

.map-wrapper:hover {
  box-shadow: var(--shadow-xl);
}

.map-image-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-alt);
}

.map-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.map-image-container:hover img {
  transform: scale(1.02);
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 100%);
  padding: 32px 24px 20px;
  color: var(--white);
}

.map-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.map-caption {
  text-align: center;
  margin-top: 16px;
  padding: 12px 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.map-landmarks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.glass-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.glass-card:hover {
  box-shadow: var(--shadow-md);
}

.whatsapp-request-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

/* ============================================================
   DEVELOPMENT UPDATES TIMELINE
   ============================================================ */
.updates-section {
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-light), var(--border));
  border-radius: 1px;
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
  padding-left: 32px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  z-index: 2;
  transition: var(--transition);
}

.breaking-dot {
  border-color: var(--danger);
  background: var(--danger-bg);
}

.timeline-item:hover .timeline-dot {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
  transform: scale(1.2);
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 24px;
  transition: var(--transition);
}

.timeline-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 148, 136, 0.2);
}

.breaking-card .timeline-card {
  border-left: 3px solid var(--danger);
  background: linear-gradient(to right, #fff8f8, var(--white));
}

.breaking-label {
  display: inline-block;
  background: var(--danger);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.timeline-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-bg);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.timeline-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-tag.official { background: var(--success-bg); color: var(--success); }
.timeline-tag.update { background: var(--info-bg); color: var(--info); }
.timeline-tag.upcoming { background: var(--warning-bg); color: var(--warning); }

.timeline-backlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-fast);
}

.timeline-backlink:hover {
  color: var(--primary-dark);
  gap: 10px;
}

/* Filter Buttons */
.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  transition: var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.filter-btn.breaking.active {
  background: var(--danger);
  border-color: var(--danger);
}

/* Interactive Block Checker */
.interactive-block-checker {
  background: var(--bg-alt);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  margin-top: 16px;
}

.interactive-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.block-btn-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.block-check-btn {
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  transition: var(--transition-fast);
  cursor: pointer;
}

.block-check-btn.active,
.block-check-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.block-result-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius-sm);
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Timeline Calculator */
.timeline-calculator {
  background: var(--bg-alt);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  margin-top: 16px;
}

.calc-grid-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 10px 0;
}

.calc-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.calc-field input,
.calc-field select {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  background: var(--white);
  color: var(--text);
}

.calc-timeline-result {
  margin-top: 10px;
  background: var(--white);
  border-radius: var(--border-radius-sm);
  padding: 12px;
  border: 1px solid var(--border);
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 0.83rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}

.result-row:last-child { border-bottom: none; }
.result-row.highlight { color: var(--success); font-weight: 700; font-size: 0.9rem; }
.result-row.waiver { color: var(--primary); }
.result-row strong { color: var(--dark); }

/* MVR Table */
.mvr-toggle-section { margin-top: 14px; }

.mvr-table-toggle-btn {
  padding: 8px 18px;
  border-radius: var(--border-radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--primary-bg);
  color: var(--primary);
  border: 1.5px solid rgba(13, 148, 136, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.mvr-table-toggle-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.mvr-table-container { margin-top: 10px; }
.mvr-table-container.hidden { display: none; }

.mvr-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.mvr-compare-table thead th {
  background: var(--dark);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}

.mvr-compare-table tbody td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
}

.mvr-compare-table tbody tr:hover td { background: var(--bg-alt); }
.rate-up { color: var(--success); font-weight: 700; }
.mvr-table-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  padding: 8px;
  background: var(--primary-bg);
  border-radius: var(--border-radius-sm);
}

/* Countdown */
.registry-countdown-wrapper {
  background: var(--bg-alt);
  border-radius: var(--border-radius-sm);
  padding: 14px;
  margin-top: 14px;
}

.countdown-timer-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.countdown-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.countdown-days-value {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 800;
  color: var(--danger);
}

.countdown-live {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--success);
  background: var(--success-bg);
  padding: 4px 12px;
  border-radius: 100px;
}

.stepper-timeline {
  display: flex;
  gap: 0;
  align-items: center;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stepper-step:not(:last-child)::after {
  content: '→';
  margin: 0 8px;
  color: var(--border);
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.stepper-step.completed .step-num { background: var(--success); color: var(--white); }
.stepper-step.active .step-num { background: var(--primary); color: var(--white); }

/* ============================================================
   BHUMI MITRA SECTIONS
   ============================================================ */
.bhumi-promo {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.bhumi-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(13, 148, 136, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(217, 119, 6, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.bhumi-promo .container { position: relative; z-index: 2; }
.bhumi-promo .section-label { background: rgba(13, 148, 136, 0.15); color: var(--primary-light); }
.bhumi-promo .section-title { color: var(--white); }
.bhumi-promo .section-subtitle { color: rgba(255, 255, 255, 0.65); }

.bhumi-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.bhumi-step {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.bhumi-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(13, 148, 136, 0.3);
  transform: translateY(-4px);
}

.bhumi-step-number {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.bhumi-step h3 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.bhumi-step p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.55); line-height: 1.6; }

.bhumi-portal-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  transition: var(--transition);
}

.bhumi-portal-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(13, 148, 136, 0.25);
}

.bhumi-portal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-accent-glow);
}

.bhumi-portal-info h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 8px; }
.bhumi-portal-info p { color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; margin-bottom: 16px; line-height: 1.6; }

/* About Bhumi */
.about-bhumi { background: var(--bg); }
.about-bhumi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-bhumi-content h2 { font-size: 2rem; margin-bottom: 16px; }
.about-bhumi-content > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-bhumi-features { margin-top: 24px; }

.about-bhumi-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.about-bhumi-feature i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: var(--border-radius-sm);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-bhumi-feature h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.about-bhumi-feature p { font-size: 0.85rem; margin-bottom: 0; color: var(--text-muted); }

.about-bhumi-image {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* Bhumi Widget */
.about-bhumi-widget-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.widget-header {
  background: var(--dark);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-dots {
  display: flex;
  gap: 5px;
}

.widget-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.widget-dots span:nth-child(1) { background: #ff5f57; }
.widget-dots span:nth-child(2) { background: #febc2e; }
.widget-dots span:nth-child(3) { background: #28c840; }

.widget-title-text { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

.widget-body { padding: 16px; }

.widget-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  background: var(--bg-alt);
  border-radius: var(--border-radius-sm);
  padding: 4px;
}

.widget-tab {
  flex: 1;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.widget-tab.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.widget-tab-content { display: none; }
.widget-tab-content.active { display: block; }

.widget-desc { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }

.widget-form-group { margin-bottom: 10px; }
.widget-form-group label { display: block; font-size: 0.72rem; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; }
.widget-input {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--border-radius-sm);
  font-size: 0.82rem;
  background: var(--bg-alt);
  color: var(--text);
}

.widget-input:focus { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.1); }

.widget-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.widget-submit-btn { font-size: 0.82rem; padding: 9px; }

/* Widget search result */
.widget-search-result { display: none; margin-top: 12px; }

.spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner-text { font-size: 0.75rem; color: var(--text-muted); }

.result-card {
  border: 1px solid var(--border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.result-card-header {
  background: var(--bg-alt);
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-title { font-size: 0.78rem; font-weight: 600; color: var(--text); }

.status-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
}

.status-badge-restricted { background: var(--danger-bg); color: var(--danger); }
.status-badge-verified { background: var(--success-bg); color: var(--success); }

.result-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 12px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.75rem;
}

.result-label { color: var(--text-muted); }
.result-val { font-weight: 600; color: var(--text); }

.result-cta {
  display: block;
  text-align: center;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-bg);
}

.result-cta:hover { background: var(--primary); color: var(--white); }

/* Land Pooling Calculator */
.calculator-box { padding: 4px 0; }

.calc-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.calc-input-wrapper .widget-input { padding-right: 52px; }

.calc-unit {
  position: absolute;
  right: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.calc-slider {
  width: 100%;
  margin-top: 8px;
  accent-color: var(--primary);
}

.calc-results {
  background: var(--bg-alt);
  border-radius: var(--border-radius-sm);
  padding: 12px;
  margin-top: 10px;
}

.calc-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.78rem;
}

.calc-result-item:last-child { border-bottom: none; }
.calc-label { color: var(--text-muted); }
.calc-val { font-weight: 700; }
.calc-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 8px; line-height: 1.4; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--bg-alt); }

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: rgba(13, 148, 136, 0.2); box-shadow: var(--shadow-sm); }
.faq-item.active { border-color: rgba(13, 148, 136, 0.3); }

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-header h3 { font-size: 0.95rem; font-weight: 600; color: var(--dark); flex: 1; line-height: 1.4; }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-content-inner {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.faq-content-inner p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.faq-content-inner p:last-child { margin-bottom: 0; }
.faq-content-inner a { color: var(--primary); font-weight: 500; }

.faq-cta-box {
  max-width: 800px;
  margin: 32px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.faq-cta-box p { font-size: 0.92rem; color: var(--text-muted); }

/* ============================================================
   CONTACT / INQUIRY FORM
   ============================================================ */
.contact-section { background: var(--white); }

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

.contact-info h2 { font-size: 1.8rem; margin-bottom: 12px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 32px; font-size: 0.95rem; line-height: 1.7; }

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-bg);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-detail h4 { font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.contact-detail a:hover { color: var(--primary); }

.contact-form-wrapper {
  background: var(--bg);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}

.contact-form-wrapper h3 { font-size: 1.25rem; margin-bottom: 6px; }
.contact-form-wrapper > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group label .required { color: var(--danger); }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--border-radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition-fast);
}

.form-control::placeholder { color: var(--text-light); }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1); }
textarea.form-control { resize: vertical; min-height: 110px; }

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary); flex-shrink: 0; }
.form-check label { font-size: 0.82rem; color: var(--text-muted); cursor: pointer; line-height: 1.5; }
.form-submit .btn { width: 100%; padding: 14px; font-size: 1rem; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-brand-icon { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; color: rgba(255, 255, 255, 0.55); }

.footer-column h4 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul li { margin-bottom: 12px; }
.footer-column ul li a { font-size: 0.88rem; color: rgba(255, 255, 255, 0.55); transition: var(--transition-fast); }
.footer-column ul li a:hover { color: var(--primary-light); padding-left: 4px; }

.footer-disclaimer {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 16px 20px;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255, 255, 255, 0.4); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a { font-size: 0.82rem; color: rgba(255, 255, 255, 0.4); }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* ============================================================
   EXIT POPUP
   ============================================================ */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.exit-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.exit-popup {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-2xl);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.exit-popup-overlay.active .exit-popup { transform: scale(1); }

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.exit-popup-close:hover { background: var(--danger-bg); color: var(--danger); }

.exit-popup-badge {
  display: inline-block;
  background: var(--danger-bg);
  color: var(--danger);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exit-popup-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.exit-popup-title span { color: var(--danger); }

.exit-popup-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.exit-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exit-popup-btn-primary {
  display: block;
  padding: 13px 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.exit-popup-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35); }

.exit-popup-btn-wa {
  display: block;
  padding: 13px 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--white);
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.exit-popup-btn-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35); }

.exit-popup-note { font-size: 0.75rem; color: var(--text-light); margin-top: 12px; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}

.preloader-content {
  text-align: center;
  max-width: 320px;
  width: 100%;
}

.preloader-logo { margin-bottom: 24px; display: flex; justify-content: center; }

.preloader-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.preloader-subtitle {
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.preloader-bar-container {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.preloader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  width: 0%;
  transition: width 0.2s ease;
}

.preloader-loading-text { font-size: 0.75rem; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; }

/* ============================================================
   FLOATING HELP DESK HUB
   ============================================================ */
.floating-hub {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1200;
}

.floating-hub-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(13, 148, 136, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.floating-hub-toggle:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(13, 148, 136, 0.5); }

.toggle-icon, .toggle-close { display: flex; }
.toggle-close { display: none; }
.floating-hub.active .toggle-icon { display: none; }
.floating-hub.active .toggle-close { display: flex; }

.floating-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.floating-hub-menu {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 300px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom right;
}

.floating-hub.active .floating-hub-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hub-header {
  background: linear-gradient(135deg, var(--dark), #1e293b);
  padding: 16px 20px;
}

.hub-header h4 { font-size: 0.9rem; color: var(--white); margin-bottom: 2px; }
.hub-header p { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.hub-links { padding: 8px; }

.hub-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  cursor: pointer;
}

.hub-link-item:hover { background: var(--primary-bg); }

.hub-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-sm);
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hub-link-item > div { flex: 1; }
.hub-link-item > div span { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.hub-link-item > div p { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.hub-footer { padding: 10px 12px; border-top: 1px solid var(--border-light); }

/* ============================================================
   MOBILE SLIDE-IN NAV
   ============================================================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--white);
  z-index: 1100;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-2xl);
}

.mobile-nav.active { right: 0; }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-nav-close:hover { background: var(--danger-bg); color: var(--danger); }

.mobile-nav-links {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition-fast);
}

.mobile-nav-links a:hover { background: var(--primary-bg); color: var(--primary); }

.mobile-nav-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-bhumi-grid { gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 1.8rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-meta { gap: 20px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .about-highlights-grid { grid-template-columns: 1fr; }
  .map-landmarks-grid { grid-template-columns: 1fr; }
  .bhumi-steps { grid-template-columns: 1fr; }
  .about-bhumi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .calc-grid-timeline { grid-template-columns: 1fr; }
  .bhumi-portal-card { flex-direction: column; gap: 20px; padding: 24px; }

  .urgency-strip-inner { padding-right: 48px; }
  .timeline { padding-left: 28px; }
  .top-bar .container { justify-content: center; }
  .top-bar-right { display: none; }
  .floating-hub { bottom: 20px; right: 20px; }
  .floating-hub-menu { width: 270px; }
  .faq-cta-box { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .highlights-grid { grid-template-columns: 1fr; }
  .exit-popup { padding: 28px 20px; }
  .stepper-timeline { flex-wrap: wrap; gap: 8px; }
}
