/* ========================================
   24x7 for 2047 Bharat — Design System
   Light Theme · Indian Tricolor Accents
   ======================================== */

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

/* ----- CSS Variables ----- */
:root {
  --saffron: #FF6B35;
  --saffron-light: #FF8F61;
  --saffron-dark: #E55A25;
  --green: #138808;
  --green-light: #1CA50A;
  --green-dark: #0D6B06;
  --navy: #1A2744;
  --navy-light: #2A3F66;
  --white: #FFFFFF;
  --cream: #FFF8F0;
  --cream-alt: #FFF3E6;
  --light-bg: #FAFAFA;
  --gold: #D4A537;
  --gold-light: #E8C064;
  --blue-accent: #0066CC;
  --text-primary: #1A2744;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --border-light: rgba(26, 39, 68, 0.08);
  --shadow-sm: 0 2px 8px rgba(26, 39, 68, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 39, 68, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 39, 68, 0.12);
  --shadow-glow-saffron: 0 0 30px rgba(255, 107, 53, 0.15);
  --shadow-glow-green: 0 0 30px rgba(19, 136, 8, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--light-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--saffron), var(--green)); border-radius: 10px; }

/* ========================================
   HERO BANNER
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================================
   CELEBRATING + LOGO + COUNTDOWN (Three-Column Bar)
   ======================================== */
.celebrating-countdown-bar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-alt) 100%);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--saffron), var(--white), var(--green)) 1;
}

.celebrating-col {
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.quote-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}

.quote-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(26, 39, 68, 0.10);
  transition: transform 0.3s ease;
}

.quote-img:hover {
  transform: scale(1.03);
}

.celebrating-col {
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.celebrating-title {
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1.2;
}

.celebrating-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.65rem, 1.2vw, 0.85rem);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.center-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}

.center-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
  transition: transform 0.3s ease;
}

.center-logo-img:hover {
  transform: scale(1.05);
}

.countdown-col {
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  flex-shrink: 0;
}

.nav-brand img {
  height: 120px;
  border-radius: 6px;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-text .main {
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
}

.nav-link-btn {
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid var(--border-light);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
  white-space: nowrap;
}

.nav-link-btn:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  transform: translateY(-1px);
}

.nav-link-btn.active {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: var(--white);
  border-color: var(--saffron);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Breaking News btn — always saffron colored */
.nav-link-btn.breaking-news {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  border-color: var(--saffron);
  animation: pulseGlow 2s ease-in-out infinite;
}

.nav-link-btn.breaking-news:hover {
  background: linear-gradient(135deg, var(--saffron-dark), #c04a18);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.5);
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(255, 107, 53, 0.3); }
  50% { box-shadow: 0 0 18px rgba(255, 107, 53, 0.6); }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ========================================
   COUNTDOWN TIMER
   ======================================== */
.countdown-label {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.65rem, 1.2vw, 0.85rem);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(4px, 1vw, 12px);
  flex-wrap: nowrap;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 40px;
}

.countdown-value {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  font-weight: 900;
  color: var(--green-dark);
  text-shadow: none;
  line-height: 1;
  min-width: 2ch;
  text-align: center;
  transition: transform 0.3s ease;
}

.countdown-value.pulse {
  animation: digitPulse 1s infinite;
}

.countdown-unit-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.55rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 3px;
}

.countdown-separator {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--saffron);
  align-self: flex-start;
  margin-top: 2px;
  animation: blink 1s step-end infinite;
}

/* ========================================
   NEWS TICKER
   ======================================== */
.ticker-bar {
  background: linear-gradient(90deg, var(--saffron) 0%, var(--gold) 50%, var(--green) 100%);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}

.ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  z-index: 2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ticker-label::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 0;
  bottom: 0;
  width: 15px;
  background: linear-gradient(to right, var(--navy), transparent);
}

.ticker-content {
  display: flex;
  animation: ticker 60s linear infinite;
  padding-left: 140px;
}

.ticker-item {
  white-space: nowrap;
  padding: 0 40px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-item .dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section {
  padding: 80px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-compact {
  padding: 40px 24px 60px;
}

.section-header-compact {
  margin-bottom: 30px;
}

.section-header-tight {
  margin-bottom: 10px;
}

.section-header-compact .section-icon {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.section-title-nowrap {
  white-space: nowrap;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
}

.section-alt {
  background: var(--cream);
}

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

.section-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 16px auto 0;
}

.section-subtitle-nowrap {
  white-space: nowrap;
  max-width: none;
  font-size: clamp(0.8rem, 1.4vw, 1rem);
}

/* ========================================
   ACHIEVEMENT CARDS
   ======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.achievement-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

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

.achievement-card:hover .card-image img {
  transform: scale(1.05);
}

.card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.card-date {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.card-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-space { background: linear-gradient(135deg, #1a237e, #3949ab); }
.tag-defence { background: linear-gradient(135deg, #b71c1c, #e53935); }
.tag-diplomacy { background: linear-gradient(135deg, var(--saffron-dark), var(--saffron)); }
.tag-infrastructure { background: linear-gradient(135deg, #2e7d32, #43a047); }
.tag-temple { background: linear-gradient(135deg, #e65100, #ff8f00); }
.tag-external { background: linear-gradient(135deg, #00695c, #00897b); }
.tag-sports { background: linear-gradient(135deg, #4a148c, #7b1fa2); }
.tag-digital { background: linear-gradient(135deg, #0277bd, #0288d1); }
.tag-startup { background: linear-gradient(135deg, #1b5e20, #2e7d32); }

.card-body {
  padding: 20px;
}

.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-description {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--saffron);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.card-read-more:hover {
  gap: 8px;
  color: var(--saffron-dark);
}

/* Category Icon Badge on card */
.card-icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--cream);
}

/* ========================================
   STATISTICS COUNTER
   ======================================== */
.stats-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-alt) 100%);
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  left: -50px;
  top: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.stats-section::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(19, 136, 8, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}

.stats-single-row .stats-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.stat-item {
  padding: 24px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-suffix {
  font-size: 0.6em;
  opacity: 0.8;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* Inline stats under achievements header — smaller, tighter */
.stats-inline {
  padding: 10px 24px 20px;
  margin: 0 0 16px 0;
  border-radius: 0;
}

.stats-inline .stats-grid {
  gap: 8px;
}

.stats-inline .stat-item {
  padding: 12px 8px;
}

.stats-inline .stat-number {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.stats-inline .stat-label {
  font-size: 0.75rem;
  margin-top: 4px;
}

/* ========================================
   INTERACTIVE MAP
   ======================================== */
.map-section {
  padding: 80px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.map-container {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.map-wrapper svg {
  width: 100%;
  height: auto;
}

.map-pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  z-index: 5;
}

.map-pin::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.4;
  animation: pingPin 2s infinite;
}

.map-pin.foreign {
  background: var(--saffron);
  color: var(--saffron);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
}

.map-pin.domestic {
  background: var(--green);
  color: var(--green);
  box-shadow: 0 0 12px rgba(19, 136, 8, 0.4);
}

.map-pin:hover {
  transform: scale(1.5);
  z-index: 10;
}

.map-tooltip {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  min-width: 220px;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.map-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.map-tooltip h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.map-tooltip p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.map-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot.foreign { background: var(--saffron); }
.legend-dot.domestic { background: var(--green); }

/* ========================================
   TIMELINE
   ======================================== */
.timeline-section {
  padding: 80px 24px;
  background: var(--cream);
  overflow: hidden;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--saffron), var(--gold), var(--green));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 30px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 30px);
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--saffron);
  z-index: 2;
  transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
  background: var(--saffron);
  transform: translateX(-50%) scale(1.3);
}

.timeline-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  max-width: 100%;
}

.timeline-item:hover .timeline-card {
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.timeline-year {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin: 4px 0;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-tricolor {
  height: 4px;
  background: linear-gradient(90deg, var(--saffron) 0%, var(--saffron) 33%, var(--white) 33%, var(--white) 66%, var(--green) 66%, var(--green) 100%);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--saffron-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 350px;
}

.footer-links h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--saffron-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom span {
  color: var(--gold);
}

/* ========================================
   FILTER TABS
   ======================================== */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--border-light);
  background: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
}

.filter-tab:hover {
  border-color: var(--saffron);
  color: var(--saffron);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
  color: var(--white);
  border-color: var(--saffron);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* ========================================
   MODAL / CARD EXPANDED
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 39, 68, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

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

.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95) translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 5;
}

.modal-close:hover {
  background: var(--saffron);
  color: white;
}

.modal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-body {
  padding: 30px;
}

.modal-body h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.modal-body p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.modal-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.modal-meta-item {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

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

@keyframes digitPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes blink {
  50% { opacity: 0; }
}

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

@keyframes pingPin {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2); opacity: 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 130px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--saffron), var(--green)) 1;
  }

  .mobile-menu-btn {
    display: block;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    display: none;
  }

  .celebrating-countdown-bar {
    grid-template-columns: 1fr;
  }

  .quote-col {
    order: -1;
    padding: 10px;
  }

  .quote-img {
    height: 70px;
  }

  .center-logo-col {
    order: -1;
    padding: 10px;
  }

  .center-logo-img {
    height: 80px;
  }

  .celebrating-col {
    text-align: center;
    padding: 20px 16px;
  }

  .countdown-col {
    padding: 16px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 16px;
  }

  .section-compact {
    padding: 30px 16px 40px;
  }

  .countdown-grid {
    gap: 8px;
  }

  .countdown-unit {
    min-width: 45px;
  }

  .countdown-separator {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-container {
    padding: 20px;
  }

  .section-title-nowrap {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .countdown-value {
    font-size: 1.6rem;
  }

  .countdown-unit-label {
    font-size: 0.6rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .navbar-inner {
    height: 60px;
  }

  .nav-brand img {
    height: 35px;
  }
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.5);
}
