/* ============================================
   AJAY CHOUDHARI - Premium Political Leadership Website
   Design System: Bold, Asymmetric, Narrative-Driven
   ============================================ */

/* --- CSS Variables --- */
:root {
  --saffron: #FF6B00;
  --saffron-light: #FF8C38;
  --saffron-deep: #E55A00;
  --saffron-glow: rgba(255, 107, 0, 0.3);
  --charcoal: #1A1A1A;
  --charcoal-light: #2A2A2A;
  --charcoal-mid: #333333;
  --dark: #0D0D0D;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --gray-light: #E0E0E0;
  --gray: #999999;
  --gray-dark: #666666;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Oswald', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  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;
}

/* --- Utility Classes --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-padding {
  padding: 100px 0;
}

.text-saffron { color: var(--saffron); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }

.bg-dark { background: var(--dark); }
.bg-charcoal { background: var(--charcoal); }
.bg-charcoal-light { background: var(--charcoal-light); }

/* --- Password Page Styles --- */
.password-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  overflow: hidden;
}

.password-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 107, 0, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 107, 0, 0.03) 0%, transparent 40%);
}

.password-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--saffron);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1s; animation-duration: 9s; }
.particle:nth-child(3) { left: 40%; animation-delay: 2s; animation-duration: 6s; }
.particle:nth-child(4) { left: 55%; animation-delay: 0.5s; animation-duration: 8s; }
.particle:nth-child(5) { left: 70%; animation-delay: 1.5s; animation-duration: 7.5s; }
.particle:nth-child(6) { left: 85%; animation-delay: 3s; animation-duration: 6.5s; }
.particle:nth-child(7) { left: 15%; animation-delay: 2.5s; animation-duration: 9.5s; }
.particle:nth-child(8) { left: 60%; animation-delay: 0.8s; animation-duration: 8.5s; }

@keyframes particleFloat {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-100px); opacity: 0; }
}

.password-container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 480px;
  padding: 0 30px;
}

.password-emblem {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  border: 2px solid var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: emblemPulse 3s ease-in-out infinite;
}

.password-emblem svg {
  width: 36px;
  height: 36px;
  fill: var(--saffron);
}

@keyframes emblemPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 0, 0.2); }
  50% { box-shadow: 0 0 40px rgba(255, 107, 0, 0.4); }
}

.password-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.password-subtitle {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 50px;
}

.password-input-wrapper {
  position: relative;
  margin-bottom: 10px;
}

.password-input {
  width: 100%;
  padding: 18px 60px 18px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 2px;
  outline: none;
  transition: var(--transition-smooth);
}

.password-input:focus {
  border-color: var(--saffron);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.15);
}

.password-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 3px;
  font-size: 0.85rem;
}

.password-submit {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--saffron);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.password-submit:hover {
  background: var(--saffron-deep);
}

.password-submit svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.password-error {
  color: #FF4444;
  font-size: 0.85rem;
  margin-top: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  min-height: 24px;
}

.password-error.visible {
  opacity: 1;
}

.password-line {
  width: 60px;
  height: 1px;
  background: rgba(255, 107, 0, 0.3);
  margin: 40px auto 20px;
}

.password-footer-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  10%, 50%, 90% { transform: translateX(-8px); }
  30%, 70% { transform: translateX(8px); }
}

.shake {
  animation: shakeError 0.5s ease;
}

.password-page.fade-out {
  animation: fadeOutBlur 1s forwards;
}

@keyframes fadeOutBlur {
  0% { opacity: 1; filter: blur(0); }
  100% { opacity: 0; filter: blur(20px); }
}

/* --- Navigation --- */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.main-nav.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.nav-brand-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--saffron);
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.nav-brand-text span {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 400;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(13, 13, 13, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(20px);
  animation: mobileNavIn 0.5s forwards;
}

.nav-mobile a:nth-child(1) { animation-delay: 0.1s; }
.nav-mobile a:nth-child(2) { animation-delay: 0.15s; }
.nav-mobile a:nth-child(3) { animation-delay: 0.2s; }
.nav-mobile a:nth-child(4) { animation-delay: 0.25s; }
.nav-mobile a:nth-child(5) { animation-delay: 0.3s; }
.nav-mobile a:nth-child(6) { animation-delay: 0.35s; }
.nav-mobile a:nth-child(7) { animation-delay: 0.4s; }
.nav-mobile a:nth-child(8) { animation-delay: 0.45s; }

@keyframes mobileNavIn {
  to { opacity: 1; transform: translateY(0); }
}

.nav-mobile a:hover {
  color: var(--saffron);
}

/* --- Hero Sections --- */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark) 0%, rgba(26, 26, 26, 0.9) 50%, rgba(255, 107, 0, 0.1) 100%);
  z-index: 1;
}

.hero-home-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-text-block {
  padding-top: 40px;
}

.hero-tag {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--saffron);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
}

.hero-title .highlight {
  color: var(--saffron);
  display: block;
}

.hero-designation {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

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

.hero-cta-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--saffron);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--saffron-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-outline:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  transform: translateY(-2px);
}

.hero-image-block {
  position: relative;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.5s ease;
}

.hero-image-frame:hover img {
  filter: grayscale(0%);
}

.hero-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--saffron);
  opacity: 0.3;
  z-index: -1;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}

/* --- Page Hero (Internal pages) --- */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--dark) 0%, rgba(26, 26, 26, 0.7) 50%, var(--dark) 100%);
  z-index: 1;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(50%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.page-hero-tag {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 15px;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
}

.page-hero-title .highlight {
  color: var(--saffron);
}

.page-hero-line {
  width: 80px;
  height: 3px;
  background: var(--saffron);
  margin-top: 25px;
}

/* --- Section Styles --- */
.section-header {
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--saffron);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 15px;
}

.section-title .highlight {
  color: var(--saffron);
}

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

/* --- Split Section (Asymmetric) --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.split-image {
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--charcoal);
  transition: transform 0.6s ease;
}

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

.split-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.split-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--charcoal);
}

.split-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.split-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--saffron), rgba(255, 107, 0, 0.1));
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 60px;
  align-items: start;
}

.timeline-item:nth-child(even) .timeline-marker {
  order: 2;
}

.timeline-item:nth-child(even) .timeline-content-left {
  order: 3;
  text-align: left;
  padding-right: 0;
  padding-left: 40px;
}

.timeline-item:nth-child(even) .timeline-content-right {
  order: 1;
  text-align: right;
  padding-left: 0;
  padding-right: 40px;
}

.timeline-content-left {
  text-align: right;
  padding-right: 40px;
}

.timeline-content-right {
  padding-left: 40px;
}

.timeline-marker {
  display: flex;
  justify-content: center;
  position: relative;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--saffron);
  border-radius: 50%;
  border: 4px solid var(--charcoal);
  box-shadow: 0 0 0 2px var(--saffron);
  position: relative;
  z-index: 2;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--saffron);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.timeline-title {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.timeline-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: var(--charcoal);
  padding: 40px;
  border-left: 3px solid var(--saffron);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 15px;
}

.card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* --- Image Gallery Section --- */
.image-story {
  position: relative;
  overflow: hidden;
}

.image-story img {
  width: 100%;
  object-fit: contain;
  background: var(--charcoal);
  transition: transform 0.6s ease;
}

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

.image-story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.image-story-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.image-story-overlay p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* --- Quote Block --- */
.quote-block {
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.quote-block::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 10rem;
  color: rgba(255, 107, 0, 0.1);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.quote-author {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--charcoal);
}

.stat-item {
  padding: 50px 30px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(255, 107, 0, 0.05);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Narrative Block --- */
.narrative-section {
  padding: 100px 0;
}

.narrative-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.narrative-sidebar {
  position: sticky;
  top: 120px;
}

.narrative-sidebar h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 15px;
  line-height: 1.2;
}

.narrative-sidebar .accent-line {
  width: 60px;
  height: 3px;
  background: var(--saffron);
  margin-bottom: 20px;
}

.narrative-sidebar p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

.narrative-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin: 40px 0 15px;
}

.narrative-body h3:first-child {
  margin-top: 0;
}

.narrative-body p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 18px;
}

.narrative-body ul {
  margin: 15px 0 25px;
}

.narrative-body ul li {
  padding: 8px 0 8px 25px;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.narrative-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 2px;
  background: var(--saffron);
}

/* --- Parallax Section --- */
.parallax-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  object-fit: cover;
  opacity: 0.15;
  filter: grayscale(100%);
}

.parallax-content {
  position: relative;
  z-index: 2;
}

/* --- Map / Constituency Section --- */
.constituency-map-section {
  padding: 100px 0;
  position: relative;
}

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

.constituency-info h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

.constituency-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
}

.area-tag {
  padding: 8px 20px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.3);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Events / Engagement Grid --- */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.engagement-card {
  background: var(--charcoal);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.engagement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.engagement-card-image {
  height: 300px;
  overflow: hidden;
}

.engagement-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--charcoal-light);
  transition: transform 0.5s ease;
}

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

.engagement-card-body {
  padding: 35px;
}

.engagement-card-tag {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.engagement-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}

.engagement-card-body p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* --- Media Grid --- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.media-card {
  background: var(--charcoal);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.media-card:hover {
  transform: translateY(-3px);
}

.media-card-image {
  overflow: hidden;
  height: 260px;
}

.media-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--charcoal-light);
  transition: transform 0.5s ease;
}

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

.media-card-body {
  padding: 30px;
}

.media-card-date {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.media-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.media-card-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

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

.contact-info-block {
  background: var(--charcoal);
  padding: 50px;
}

.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 25px;
}

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

.contact-detail-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--saffron);
}

.contact-detail-text h4 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.contact-detail-text a:hover {
  color: var(--saffron);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 107, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--saffron);
  border-color: var(--saffron);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--saffron);
  transition: fill 0.3s ease;
}

.social-link:hover svg {
  fill: var(--white);
}

.contact-form-block {
  background: var(--charcoal);
  padding: 50px;
}

.contact-form-block h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-submit {
  padding: 16px 40px;
  background: var(--saffron);
  color: var(--white);
  border: none;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.form-submit:hover {
  background: var(--saffron-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

/* --- Footer --- */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 80px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand .designation {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

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

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--saffron);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  fill: var(--saffron);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 40px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

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

.footer-bottom a {
  color: var(--saffron);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-credit {
  text-align: right;
}

.footer-credit p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-home-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 120px;
  }

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

  .hero-image-block { display: none; }

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-content {
    padding: 50px 40px;
  }

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

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

  .timeline-item {
    display: flex;
    flex-direction: column;
    padding-left: 70px;
    position: relative;
    gap: 15px;
    margin-bottom: 50px;
  }

  .timeline-marker {
    position: absolute;
    left: 16px;
    top: 5px;
  }

  .timeline-content-left {
    display: block;
    text-align: left;
    padding-right: 0;
    padding-left: 0;
  }

  .timeline-content-right {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }

  .timeline-item:nth-child(even) .timeline-content-right,
  .timeline-item:nth-child(even) .timeline-content-left {
    order: unset;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }

  .narrative-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .narrative-sidebar {
    position: static;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  .container, .container-wide {
    padding: 0 20px;
  }

  .section-padding {
    padding: 60px 0;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .hero-stat {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .page-hero { min-height: 50vh; }
  .page-hero-title { font-size: 2.5rem; }

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

  .split-content {
    padding: 40px 20px;
  }

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

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

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

  .footer-top {
    grid-template-columns: 1fr;
    padding: 50px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .footer-credit {
    text-align: center;
  }

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

  .stat-item {
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .quote-text {
    font-size: 1.4rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .password-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .page-hero-title { font-size: 2rem; }
  .section-title { font-size: 1.7rem; }

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

  .hero-stats {
    gap: 15px;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .nav-inner {
    padding: 0 20px;
  }
}
