/* ============================================================
   MAGADH 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-label i {
  font-size: 0.75rem;
}

.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 i {
  font-size: 0.9em;
  transition: var(--transition-fast);
}

.btn:hover i {
  transform: translateX(2px);
}

/* ============================================================
   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-left i {
  color: var(--primary-light);
  font-size: 0.75rem;
}

.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: 1.2rem;
  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);
}

/* ============================================================
   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-badge i {
  font-size: 0.7rem;
  animation: pulse-dot 2s ease-in-out infinite;
}

.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-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);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.hero-meta-item i {
  color: var(--primary-light);
  font-size: 1rem;
}

.hero-meta-item strong {
  color: var(--white);
  font-weight: 700;
}

/* 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-label i {
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.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 i {
  color: var(--primary);
  font-size: 0.5rem;
}

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

.ticker-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

@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;
}

.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;
  font-size: 1.5rem;
  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-caption i {
  color: var(--primary);
}

.map-source-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-style: normal;
  margin-top: 8px;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.map-source-link:hover {
  color: var(--primary-dark);
  gap: 12px;
}

/* ============================================================
   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);
}

.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);
}

.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);
}

/* ============================================================
   BHUMI MITRA PROMOTION SECTION (Dark Featured Banner)
   ============================================================ */
.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);
  position: relative;
}

.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;
}

/* Portal card */
.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;
  font-size: 2rem;
  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;
}

.bhumi-portal-info .btn {
  margin-top: 4px;
}

/* ============================================================
   ABOUT BHUMI MITRA SECTION
   ============================================================ */
.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;
  font-size: 0.9rem;
  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;
}

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

.about-bhumi-image img {
  border-radius: var(--border-radius);
  width: 100%;
}

.about-bhumi-image-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--primary-bg) 0%, #ccfbf1 100%);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--primary);
}

.about-bhumi-image-placeholder i {
  font-size: 3rem;
  opacity: 0.5;
}

.about-bhumi-image-placeholder span {
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0.6;
}

/* ============================================================
   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);
  font-size: 1rem;
  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);
  cursor: pointer;
  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;
}

.form-note i {
  color: var(--primary);
  margin-right: 4px;
}

/* ============================================================
   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-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.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: 1px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-column ul li a i {
  font-size: 0.6rem;
  opacity: 0;
  transition: var(--transition-fast);
}

.footer-column ul li a:hover i {
  opacity: 1;
}

/* Footer Disclaimer */
.footer-disclaimer {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.disclaimer-box strong {
  color: rgba(255, 255, 255, 0.6);
}

.disclaimer-box i {
  color: var(--accent);
  margin-right: 6px;
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
}

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

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

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

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

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

/* ============================================================
   FLOATING CTA BUTTON
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  position: relative;
}

.floating-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  animation: float-bounce 3s ease-in-out infinite;
}

.floating-btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  animation: float-bounce 3s ease-in-out infinite 0.5s;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-2xl);
  animation-play-state: paused;
}

.floating-btn .tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  pointer-events: none;
}

.floating-btn .tooltip::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--dark);
  rotate: 45deg;
}

.floating-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* Pulse ring */
.floating-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}

.floating-btn-accent::before {
  border-color: var(--accent);
}

/* Back to top */
.back-to-top {
  width: 42px;
  height: 42px;
  background: var(--white);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================================
   MOBILE NAV (Slide-in Panel)
   ============================================================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

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

.mobile-nav-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-sm);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

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

.mobile-nav-links {
  padding: 16px;
  flex: 1;
}

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

.mobile-nav-links a i {
  width: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.mobile-nav-links a:hover i,
.mobile-nav-links a.active i {
  color: var(--primary);
}

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

.mobile-nav-footer .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   GLASSMORPHISM CARD UTILITY
   ============================================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.glass-card-dark {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
}

/* ============================================================
   BADGE & TAG UTILITIES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success {
  background: var(--success-bg);
  color: var(--success);
}

.badge-warning {
  background: var(--warning-bg);
  color: var(--warning);
}

.badge-info {
  background: var(--info-bg);
  color: var(--info);
}

.badge-primary {
  background: var(--primary-bg);
  color: var(--primary);
}

/* ============================================================
   INFO / ALERT BOXES
   ============================================================ */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--border-radius-sm);
  font-size: 0.88rem;
  line-height: 1.6;
}

.info-box-success {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid rgba(21, 128, 61, 0.15);
}

.info-box-warning {
  background: var(--warning-bg);
  color: var(--warning);
  border: 1px solid rgba(161, 98, 7, 0.15);
}

.info-box-info {
  background: var(--info-bg);
  color: var(--info);
  border: 1px solid rgba(3, 105, 161, 0.15);
}

.info-box i {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================================
   ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes float-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -20px) scale(1.05); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

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

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Scroll-triggered animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

  /* Navbar */
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-meta {
    gap: 24px;
  }

  /* Highlights */
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About Bhumi */
  .about-bhumi-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-bhumi-image {
    order: -1;
  }

  /* Bhumi Steps */
  .bhumi-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .bhumi-portal-card {
    flex-direction: column;
    text-align: center;
    padding: 32px;
    gap: 24px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .section-header {
    margin-bottom: 36px;
  }

  /* Top bar */
  .top-bar {
    font-size: 0.72rem;
    padding: 6px 0;
  }

  .top-bar-left span:not(:first-child) {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero .container {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-description {
    font-size: 0.92rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .hero-meta {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    margin-top: 32px;
    padding-top: 24px;
  }

  .hero-decor-1,
  .hero-decor-2 {
    display: none;
  }

  /* News Ticker */
  .news-ticker {
    padding: 10px 0;
  }

  .ticker-label {
    font-size: 0.65rem;
    padding: 4px 10px;
  }

  /* Highlights */
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlight-card {
    padding: 24px 20px;
    display: block;
    text-align: left;
  }

  .highlight-icon {
    margin: 0 0 16px 0;
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

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

  .highlight-card p {
    font-size: 0.82rem;
  }

  /* Map */
  .map-wrapper {
    padding: 8px;
  }

  .map-image-container {
    aspect-ratio: 4 / 3;
  }

  /* Timeline */
  .timeline {
    padding-left: 28px;
  }

  .timeline::before {
    left: 8px;
  }

  .timeline-dot {
    left: -26px;
    width: 12px;
    height: 12px;
  }

  .timeline-item {
    padding-left: 20px;
  }

  .timeline-card {
    padding: 20px;
  }

  .timeline-card h3 {
    font-size: 1rem;
  }

  /* Bhumi Steps */
  .bhumi-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bhumi-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding: 20px;
  }

  .bhumi-step-number {
    margin: 0;
    flex-shrink: 0;
  }

  .bhumi-portal-card {
    padding: 24px;
  }

  .bhumi-portal-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  /* About Bhumi */
  .about-bhumi-grid {
    gap: 28px;
  }

  .about-bhumi-content h2 {
    font-size: 1.5rem;
  }

  /* Contact Form */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  /* Footer */
  .footer {
    padding-top: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    gap: 16px;
  }

  /* Floating CTA */
  .floating-cta {
    bottom: 20px;
    right: 20px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.15rem;
  }

  .floating-btn .tooltip {
    display: none;
  }

  .back-to-top {
    width: 38px;
    height: 38px;
  }

  /* Buttons */
  .btn-lg {
    padding: 13px 28px;
    font-size: 0.95rem;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.55rem;
  }

  .hero-badge {
    font-size: 0.68rem;
    padding: 6px 14px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .bhumi-portal-info h3 {
    font-size: 1.1rem;
  }

  .contact-info h2 {
    font-size: 1.4rem;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .navbar,
  .top-bar,
  .news-ticker,
  .floating-cta,
  .mobile-nav,
  .mobile-nav-overlay,
  .nav-hamburger {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    background: #f0f0f0 !important;
    color: #000 !important;
    min-height: auto;
    padding: 40px 0;
  }

  .hero-title,
  .hero-description {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
  }

  .section {
    padding: 30px 0;
  }

  .btn {
    border: 1px solid #000 !important;
    color: #000 !important;
    background: none !important;
    box-shadow: none !important;
  }
}

/* ============================================================
   ACCESSIBILITY — FOCUS STYLES
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .ticker-content {
    animation: none !important;
  }
}

/* ============================================================
   SELECTION & SCROLLBAR
   ============================================================ */
::selection {
  background: rgba(13, 148, 136, 0.15);
  color: var(--dark);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ============================================================
   UPGRADE: PREMIUM WIDGETS & SVG ICONS
   ============================================================ */

/* Generic SVG Icon handling */
.svg-icon {
  display: inline-block;
  vertical-align: middle;
  stroke-width: 2;
  transition: var(--transition-fast);
}

.highlight-card:hover .svg-icon {
  transform: scale(1.1);
}

/* Glassmorphic Hero Alert Warning Card */
.hero-alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 18px 24px;
  margin-top: 16px;
  margin-bottom: 32px;
  max-width: 680px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-alert::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}

.hero-alert-icon {
  color: var(--accent);
  background: rgba(217, 119, 6, 0.15);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-alert-content {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.6;
}

.hero-alert-content strong {
  color: var(--white);
}

/* Bhumi Mitra Property Widget Dashboard */
.about-bhumi-widget-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 440px;
  transition: var(--transition);
}

.about-bhumi-widget-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.widget-header {
  background: var(--dark);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.widget-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}

.widget-dots span:nth-child(2) { background: #eab308; }
.widget-dots span:nth-child(3) { background: #22c55e; }

.widget-title-text {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

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

.widget-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 20px;
}

.widget-tab {
  flex: 1;
  padding: 10px 12px;
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition-fast);
}

.widget-tab:hover {
  color: var(--primary);
}

.widget-tab.active {
  color: var(--primary);
  border-color: var(--primary);
}

.widget-tab-content {
  display: none;
  flex-direction: column;
  flex: 1;
}

.widget-tab-content.active {
  display: flex;
}

.widget-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.widget-form-group {
  margin-bottom: 14px;
}

.widget-form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.widget-input {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.88rem;
  border: 1.5px solid var(--border);
  border-radius: var(--border-radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: var(--transition-fast);
}

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

.widget-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.widget-submit-btn {
  font-size: 0.85rem;
  padding: 10px 18px;
  justify-content: center;
  width: 100%;
}

/* Simulated Result Card styling */
.widget-search-result {
  margin-top: 16px;
  display: none;
}

.result-card {
  background: var(--primary-bg);
  border: 1px solid var(--primary-light);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  animation: scale-up 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(13, 148, 136, 0.2);
}

.result-title {
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.status-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

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

.status-badge-restricted {
  background: var(--warning-bg);
  color: var(--warning);
}

.result-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.result-row:last-child {
  margin-bottom: 0;
}

.result-label {
  color: var(--text-muted);
}

.result-val {
  font-weight: 600;
  color: var(--dark);
}

.result-cta {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--white);
  border-radius: 4px;
  transition: var(--transition-fast);
}

.result-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Spinner Loader */
.spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  gap: 12px;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(13, 148, 136, 0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Land Pooling Calculator Styles */
.calculator-box {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  padding: 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border);
}

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

.calc-input-wrapper input {
  padding-right: 60px;
  font-weight: 700;
  font-size: 1.05rem;
}

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

.calc-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  accent-color: var(--primary);
  cursor: pointer;
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}

.calc-result-item {
  background: var(--white);
  padding: 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.calc-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.calc-val {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-title);
}

.calc-note {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-light);
}

/* Premium Expandable Floating CTA Hub styling */
.floating-hub {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
}

.floating-hub-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.floating-hub-toggle:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-2xl);
}

.toggle-icon, .toggle-close {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.toggle-close {
  position: absolute;
  opacity: 0;
  transform: rotate(-45deg) scale(0.5);
}

.floating-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--danger);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 100px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.floating-hub-menu {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-2xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: var(--transition);
  overflow: hidden;
}

/* Expanded Hub State */
.floating-hub.active .floating-hub-toggle {
  background: var(--dark);
}

.floating-hub.active .toggle-icon {
  opacity: 0;
  transform: rotate(45deg) scale(0.5);
}

.floating-hub.active .toggle-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.floating-hub.active .floating-hub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.hub-header {
  background: var(--dark);
  color: var(--white);
  padding: 20px;
}

.hub-header h4 {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.hub-header p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.hub-links {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

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

.hub-link-item:hover .hub-icon {
  background: var(--primary);
  color: var(--white);
}

.hub-link-item div {
  display: flex;
  flex-direction: column;
}

.hub-link-item span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

.hub-link-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hub-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes scale-up {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Fix mobile responsive width on widgets */
@media (max-width: 768px) {
  .about-bhumi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .floating-hub {
    bottom: 16px;
    right: 16px;
  }
  .floating-hub-menu {
    width: calc(100vw - 32px);
    right: 0;
  }
}

/* WhatsApp Button Styling */
.btn-whatsapp {
  background: #22c55e !important;
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3) !important;
  border: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition) !important;
}

.btn-whatsapp:hover {
  background: #1cb050 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45) !important;
}

/* Preloader Splash Screen Styling */
.preloader {
  position: fixed;
  inset: 0;
  background: #0f172a;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-in-out;
}

.preloader-content {
  text-align: center;
  max-width: 420px;
  padding: 24px;
}

.preloader-logo {
  margin-bottom: 24px;
  animation: preloader-pulse 2s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.preloader-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 20px rgba(13, 148, 136, 0.2);
}

.preloader-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--white) 30%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.preloader-loading-text {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes preloader-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

.map-landmarks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.whatsapp-request-card {
  padding: 24px;
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-left: 4px solid #22c55e;
}

@media (max-width: 1024px) {
  .about-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .map-landmarks-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }
  .whatsapp-request-card {
    grid-column: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .whatsapp-request-card h4 {
    justify-content: center;
  }
}

/* ============================================================
   FAQ ACCORDION SECTION
   ============================================================ */
.faq-section {
  position: relative;
  background: var(--bg-alt);
  padding: 100px 0;
  overflow: hidden;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 148, 136, 0.3);
  transform: translateY(-2px);
}

.faq-header {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background: var(--white);
  transition: background 0.3s ease;
}

.faq-header h3 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.5;
  padding-right: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 300;
  border-radius: 50%;
  background: var(--primary-bg);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
}

.faq-content-inner {
  padding: 0 28px 28px;
}

.faq-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

.faq-content p + p {
  margin-top: 12px;
}

/* Active State */
.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.faq-item.active .faq-header {
  background: rgba(13, 148, 136, 0.01);
}

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

.faq-item.active .faq-content {
  max-height: 800px;
}

.faq-cta-box {
  margin-top: 48px;
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px dashed rgba(13, 148, 136, 0.3);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.faq-cta-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-header {
    padding: 20px;
  }
  .faq-content-inner {
    padding: 0 20px 20px;
  }
}

/* ============================================================
   URGENCY STRIP
   ============================================================ */
.urgency-strip {
  background: linear-gradient(90deg, #7f1d1d 0%, #991b1b 40%, #b91c1c 100%);
  color: #fff;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: relative;
  z-index: 999;
  gap: 12px;
  animation: strip-slide-in 0.5s ease;
}

@keyframes strip-slide-in {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.urgency-strip-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.urgency-strip-inner a {
  color: #fde68a;
  text-decoration: underline;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s;
}

.urgency-strip-inner a:hover {
  color: #fbbf24;
}

.urgency-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fde68a;
  flex-shrink: 0;
  animation: pulse-dot 1.2s ease infinite;
}

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

.urgency-strip-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0 4px;
  line-height: 1;
  transition: color 0.2s;
}

.urgency-strip-close:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .urgency-strip {
    font-size: 0.73rem;
    padding: 8px 12px;
  }
}

/* ============================================================
   TIMELINE BACKLINKS
   ============================================================ */
.timeline-backlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}

.timeline-backlink:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

/* ============================================================
   MID-PAGE URGENCY CTA SECTION
   ============================================================ */
.urgency-cta-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
  overflow: hidden;
}

.urgency-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(217, 119, 6, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 80% 50%, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.urgency-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.urgency-fire-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  animation: badge-glow 2s ease-in-out infinite alternate;
}

@keyframes badge-glow {
  from { box-shadow: 0 0 8px rgba(220, 38, 38, 0.4); }
  to   { box-shadow: 0 0 20px rgba(220, 38, 38, 0.7); }
}

.urgency-cta-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.urgency-cta-title span {
  background: linear-gradient(90deg, #f97316, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.urgency-cta-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.urgency-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.urgency-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.urgency-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.urgency-btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
  letter-spacing: 0.2px;
}

.urgency-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.55);
  background: linear-gradient(135deg, #10b981, #0d9488);
}

.urgency-btn-wa {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

.urgency-btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.5);
}

/* Stats Card */
.urgency-stats-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.urgency-stat {
  text-align: center;
  padding: 16px 0;
}

.urgency-stat-num {
  display: block;
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #34d399, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.urgency-stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.urgency-stat-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* Trust Badges */
.urgency-trust-badges {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  flex: 1;
  min-width: fit-content;
  text-align: center;
}

@media (max-width: 1024px) {
  .urgency-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .urgency-cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .urgency-cta-section {
    padding: 60px 0;
  }
  .urgency-cta-title {
    font-size: 1.7rem;
  }
  .urgency-cta-buttons {
    flex-direction: column;
  }
  .urgency-btn-primary,
  .urgency-btn-wa {
    text-align: center;
    justify-content: center;
  }
  .urgency-stat-num {
    font-size: 2rem;
  }
}

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

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

.exit-popup {
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px 36px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

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

.exit-popup::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #dc2626, #f97316, #0d9488);
}

.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  line-height: 1;
  padding: 0;
}

.exit-popup-close:hover {
  color: #ef4444;
  transform: rotate(90deg);
}

.exit-popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626, #f97316);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.exit-popup-title {
  font-family: var(--font-title);
  font-size: 1.7rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 14px;
}

.exit-popup-title span {
  color: #dc2626;
}

.exit-popup-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 28px;
}

.exit-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.exit-popup-btn-primary {
  display: block;
  padding: 14px 20px;
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
}

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

.exit-popup-btn-wa {
  display: block;
  padding: 13px 20px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.exit-popup-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
}

.exit-popup-note {
  font-size: 0.75rem;
  color: #94a3b8;
}

@media (max-width: 480px) {
  .exit-popup {
    padding: 36px 24px 28px;
  }
  .exit-popup-title {
    font-size: 1.4rem;
  }
}

/* ============================================================
   BREAKING NEWS UPDATES & SPECIAL ALERTS
   ============================================================ */

/* Hero Alert - Green Variant (Lifting Ban) */
.hero-alert-update::before {
  background: #10b981 !important; /* Green line */
}

.hero-alert-icon-green {
  color: #10b981 !important;
  background: rgba(16, 185, 129, 0.15) !important;
}

/* Breaking Filter Button Styling */
.filter-btn.breaking {
  border-color: rgba(239, 68, 68, 0.3);
}
.filter-btn.breaking:hover,
.filter-btn.breaking.active {
  background: #ef4444;
  border-color: #ef4444;
  color: #fff;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Breaking Timeline Card */
.breaking-card .timeline-card {
  border-left: 4px solid #ef4444;
  background: linear-gradient(to right, rgba(254, 242, 242, 0.4), var(--white));
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.05);
}

.breaking-card .timeline-card:hover {
  border-color: #ef4444;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.1);
}

/* Red Pulsing Dot for Breaking News */
.breaking-dot {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  animation: pulse-red-dot 2s infinite;
}

.timeline-item:hover .breaking-dot {
  background: #ef4444 !important;
  box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.2) !important;
}

@keyframes pulse-red-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* Breaking Label (Above title) */
.breaking-label {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

#urgency-strip-link {
  color: #67e8f9 !important; /* brighter cyan for links inside urgency-strip */
  text-decoration: underline;
  font-weight: 700;
}
#urgency-strip-link:hover {
  color: #22d3ee !important;
}


