/* ===================================================================
   KISAN KRANTI — Official Website CSS
   Color System & Design Tokens
   =================================================================== */

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

/* --- CSS Variables --- */
:root {
  --green-primary:    #1E6B3A;
  --green-deep:       #14532D;
  --green-accent:     #2F8F57;
  --green-light:      #4CAF74;
  --yellow-highlight: #E0B100;
  --yellow-soft:      #F5C842;
  --text-main:        #18241B;
  --text-secondary:   #5D6D61;
  --text-light:       #8FA693;
  --bg-white:         #FFFFFF;
  --bg-mint:          #F4FAF4;
  --bg-pale:          #E4F0E5;
  --border:           #D7E5D8;
  --border-dark:      #B8D0BB;
  --overlay-dark:     rgba(20, 83, 45, 0.82);
  --overlay-mid:      rgba(20, 83, 45, 0.65);
  --shadow-sm:        0 2px 8px rgba(30, 107, 58, 0.10);
  --shadow-md:        0 4px 20px rgba(30, 107, 58, 0.14);
  --shadow-lg:        0 8px 40px rgba(30, 107, 58, 0.18);
  --radius-sm:        6px;
  --radius-md:        10px;
  --radius-lg:        16px;
  --font-hindi:       'Hind', sans-serif;
  --font-body:        'Inter', sans-serif;
  --transition:       all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* --- Typography --- */
.hindi { font-family: var(--font-hindi); }
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 800; }
.section-title {
  font-family: var(--font-hindi);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--green-deep);
  margin-bottom: 0.3rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.yellow-word { color: var(--yellow-highlight); }
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}
.section-divider .bar {
  height: 4px;
  background: var(--yellow-highlight);
  border-radius: 2px;
}
.section-divider .bar-sm { width: 40px; }
.section-divider .bar-lg { width: 80px; }

/* --- Layout Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-center .section-divider { justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.3px;
  text-align: center;
}
.btn-primary {
  background: var(--green-primary);
  color: #fff;
  border: 2px solid var(--green-primary);
}
.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}
.btn-secondary:hover {
  background: var(--green-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--green-deep);
  border: 2px solid #fff;
  font-weight: 800;
}
.btn-white:hover {
  background: var(--yellow-highlight);
  border-color: var(--yellow-highlight);
  color: var(--green-deep);
}
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }

/* ===================================================================
   TOP STRIP
   =================================================================== */
#top-strip {
  background: var(--green-deep);
  color: #fff;
  font-size: 0.82rem;
  padding: 7px 0;
  position: relative;
  z-index: 1001;
}
#top-strip .strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#top-strip .strip-slogan {
  font-family: var(--font-hindi);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--yellow-highlight);
  letter-spacing: 0.5px;
}
#top-strip .strip-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}
#top-strip .strip-contacts a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  transition: var(--transition);
}
#top-strip .strip-contacts a:hover { color: var(--yellow-highlight); }
#top-strip .strip-socials {
  display: flex;
  gap: 12px;
}
#top-strip .strip-socials a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  transition: var(--transition);
}
#top-strip .strip-socials a:hover { color: var(--yellow-highlight); }

/* ===================================================================
   HEADER / NAVBAR
   =================================================================== */
#main-header {
  background: #fff;
  border-bottom: 3px solid var(--green-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
#main-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-emblem {
  width: 54px;
  height: 54px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  flex-shrink: 0;
  border: 3px solid var(--yellow-highlight);
  position: relative;
  overflow: hidden;
}
.logo-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.logo-text-wrap .org-name {
  font-family: var(--font-hindi);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1.1;
}
.logo-text-wrap .org-name span { color: var(--yellow-highlight); }
.logo-text-wrap .org-tagline {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 13px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--green-primary);
  background: var(--bg-mint);
}
.nav-cta {
  background: var(--green-primary);
  color: #fff !important;
  padding: 8px 18px !important;
}
.nav-cta:hover {
  background: var(--green-deep) !important;
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 0 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--green-primary); background: var(--bg-mint); }

/* ===================================================================
   HERO SECTION
   =================================================================== */
#hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero_rally.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 177, 0, 0.18);
  border: 1px solid var(--yellow-highlight);
  color: var(--yellow-highlight);
  font-family: var(--font-hindi);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 4px;
  margin-bottom: 1.4rem;
  letter-spacing: 0.5px;
}
.hero-headline {
  font-family: var(--font-hindi);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 0.7rem;
}
.hero-headline .accent { color: var(--yellow-highlight); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-leader-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  max-width: fit-content;
}
.leader-card-pic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--yellow-highlight);
  flex-shrink: 0;
}
.leader-card-text .name {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}
.leader-card-text .role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.leader-card-text .party {
  font-size: 0.78rem;
  color: var(--yellow-highlight);
  font-weight: 600;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--yellow-highlight);
  border-radius: 50%;
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ===================================================================
   TRUST / PROFILE HIGHLIGHTS BAR
   =================================================================== */
#trust-bar {
  background: var(--green-deep);
  padding: 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* dividers handled by border-right on .trust-item */
}
.trust-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.06); }
.trust-item .count {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow-highlight);
  line-height: 1;
  margin-bottom: 5px;
  font-family: var(--font-hindi);
}
.trust-item .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1.4;
}
.trust-item .source {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ===================================================================
   ABOUT ANUJ SINGH
   =================================================================== */
#about-anuj {
  background: var(--bg-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}
.about-photo-col { position: relative; }
.about-main-photo {
  width: 100%;
  max-width: 400px;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: block;
}
.about-photo-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--green-primary);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-hindi);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  border: 3px solid var(--yellow-highlight);
  box-shadow: var(--shadow-md);
  line-height: 1.4;
}
.about-content .leader-quote {
  font-family: var(--font-hindi);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--green-primary);
  border-left: 4px solid var(--yellow-highlight);
  padding-left: 18px;
  margin: 20px 0 24px;
  line-height: 1.6;
}
.about-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.97rem;
}
.about-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--bg-mint);
  color: var(--green-primary);
}
.chip .dot {
  width: 6px;
  height: 6px;
  background: var(--green-accent);
  border-radius: 50%;
}

/* ===================================================================
   ABOUT KISAN KRANTI
   =================================================================== */
#about-kk {
  background: var(--bg-mint);
}
.kk-intro {
  max-width: 760px;
  margin: 0 auto 48px;
}
.kk-intro p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.8;
  text-align: center;
}
.value-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow-highlight);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 58px;
  height: 58px;
  background: var(--bg-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.pillar-card:hover .pillar-icon { background: var(--green-primary); }
.pillar-title {
  font-family: var(--font-hindi);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================================================================
   BKU CONTEXT / TIMELINE
   =================================================================== */
#bku-context {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
#bku-context::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
#bku-context::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.bku-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bku-text .section-title { color: #fff; }
.bku-text .section-subtitle { color: rgba(255,255,255,0.65); }
.bku-text p {
  color: rgba(255,255,255,0.78);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.bku-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 12px;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 36px;
  bottom: -24px;
  width: 2px;
  background: rgba(255,255,255,0.15);
}
.tl-dot {
  width: 32px;
  height: 32px;
  background: var(--yellow-highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--green-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.tl-body {
  padding-bottom: 36px;
}
.tl-year {
  font-size: 0.78rem;
  color: var(--yellow-highlight);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.tl-title {
  font-family: var(--font-hindi);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.tl-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ===================================================================
   FARMER ISSUES
   =================================================================== */
#farmer-issues {
  background: var(--bg-white);
}
.issues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 16px;
}
.issue-card {
  background: var(--bg-mint);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.issue-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--green-accent);
  background: #fff;
}
.issue-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.issue-title {
  font-family: var(--font-hindi);
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.issue-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.issue-arrow {
  position: absolute;
  top: 20px; right: 18px;
  font-size: 0.9rem;
  color: var(--green-primary);
  opacity: 0;
  transition: var(--transition);
}
.issue-card:hover .issue-arrow { opacity: 1; transform: translateX(4px); }

/* ===================================================================
   CAMPAIGNS & MOVEMENTS
   =================================================================== */
#campaigns {
  background: var(--bg-mint);
}
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.campaign-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}
.campaign-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.campaign-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.campaign-card:hover .campaign-bg { transform: scale(1.06); }
.campaign-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,83,45,0.9) 0%, rgba(20,83,45,0.35) 60%, transparent 100%);
}
.campaign-body {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
}
.campaign-tag {
  display: inline-block;
  background: var(--yellow-highlight);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.campaign-title {
  font-family: var(--font-hindi);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}
.campaign-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 16px;
}
.campaign-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow-highlight);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.campaign-link:hover { gap: 10px; }

/* ===================================================================
   NEWS & PRESS
   =================================================================== */
#news-press {
  background: var(--bg-white);
}
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.news-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  background: #fff;
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--green-accent);
}
.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-card.featured .news-card-img { height: 260px; }
.news-card-body { padding: 20px; }
.news-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--green-primary);
  background: var(--bg-pale);
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.news-date {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.news-title {
  font-family: var(--font-hindi);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 8px;
  line-height: 1.4;
}
.news-card.featured .news-title { font-size: 1.25rem; }
.news-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.news-read-more {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.news-read-more:hover { color: var(--yellow-highlight); gap: 9px; }

/* ===================================================================
   MEDIA GALLERY
   =================================================================== */
#gallery {
  background: var(--green-deep);
  padding-bottom: 60px;
}
#gallery .section-title { color: #fff; }
#gallery .section-subtitle { color: rgba(255,255,255,0.65); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,83,45,0.85) 0%, transparent 100%);
  color: #fff;
  font-size: 0.82rem;
  padding: 30px 14px 12px;
  opacity: 0;
  transition: var(--transition);
  font-family: var(--font-hindi);
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-cta { text-align: center; margin-top: 36px; }

/* ===================================================================
   JOIN MOVEMENT CTA
   =================================================================== */
#join-movement {
  background: var(--green-primary);
  position: relative;
  overflow: hidden;
}
#join-movement::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  right: 0;
  background-image: url('img/hero_rally.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.join-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.join-text .section-title { color: #fff; }
.join-text .section-subtitle { color: rgba(255,255,255,0.75); }
.join-text .join-subtitle-text {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.join-text .slogan-list {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 18px;
}
.join-text .slogan-list li {
  font-family: var(--font-hindi);
  font-size: 0.95rem;
  color: var(--yellow-highlight);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.join-text .slogan-list li::before {
  content: '⚡';
  font-size: 0.8rem;
}
.join-form-wrap {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.join-form-wrap h3 {
  font-family: var(--font-hindi);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 20px;
}

/* ===================================================================
   FORMS
   =================================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field.full-width { grid-column: span 2; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--bg-white);
  transition: var(--transition);
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(30, 107, 58, 0.10);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field select { appearance: none; cursor: pointer; }
.form-submit {
  margin-top: 6px;
  width: 100%;
}

/* ===================================================================
   FARMER GRIEVANCE
   =================================================================== */
#grievance {
  background: var(--bg-mint);
}
.grievance-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.grievance-info h3 {
  font-family: var(--font-hindi);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 16px;
  line-height: 1.3;
}
.grievance-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}
.grievance-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.grievance-cat-tag {
  padding: 5px 12px;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-primary);
}
.grievance-form-wrap {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.grievance-form-wrap h3 {
  font-family: var(--font-hindi);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-pale);
}

/* ===================================================================
   DISTRICT NETWORK
   =================================================================== */
#district-network {
  background: var(--bg-white);
}
.district-intro {
  max-width: 650px;
  margin: 0 auto 36px;
  text-align: center;
}
.district-intro p {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.8;
}
.district-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.district-card {
  background: var(--bg-mint);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  transition: var(--transition);
}
.district-card:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.district-card:hover .district-name { color: #fff; }
.district-card:hover .district-status { color: rgba(255,255,255,0.7); }
.district-icon { font-size: 1.3rem; margin-bottom: 6px; }
.district-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 4px;
  transition: var(--transition);
}
.district-status {
  font-size: 0.72rem;
  color: var(--text-light);
  transition: var(--transition);
}

/* ===================================================================
   SOCIAL MEDIA SECTION
   =================================================================== */
#social-section {
  background: var(--bg-mint);
  padding: 60px 0;
}
.social-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}
.social-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.social-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.social-card .s-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}
.social-card .s-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.social-card .s-handle {
  font-size: 0.9rem;
  color: var(--green-primary);
  font-weight: 600;
  margin-bottom: 12px;
}
.social-card .s-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}
.social-card .s-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}
.s-stat { text-align: center; }
.s-stat .val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--yellow-highlight);
}
.s-stat .key {
  font-size: 0.72rem;
  color: var(--text-light);
}
.social-follow-btn {
  display: inline-block;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.btn-twitter {
  background: #000;
  color: #fff;
}
.social-follow-btn:hover { opacity: 0.85; transform: translateY(-2px); }

/* ===================================================================
   FOOTER
   =================================================================== */
#main-footer {
  background: var(--green-deep);
  color: #fff;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .logo-emblem-sm {
  width: 44px;
  height: 44px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 2px solid var(--yellow-highlight);
  flex-shrink: 0;
}
.footer-brand .footer-org-name {
  font-family: var(--font-hindi);
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.footer-brand .footer-org-name span { color: var(--yellow-highlight); }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 18px;
}
.footer-social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.f-social-btn {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255,255,255,0.10);
  color: #fff;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.f-social-btn:hover { background: rgba(224,177,0,0.25); color: var(--yellow-highlight); }
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
  color: var(--yellow-highlight);
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--green-accent); font-size: 1rem; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact-item .fc-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: right;
  max-width: 420px;
}

/* ===================================================================
   ANIMATIONS & UTILITIES
   =================================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Counter animation */
.count-up { display: inline-block; }

/* Slogan ticker */
.ticker-wrap {
  overflow: hidden;
  white-space: nowrap;
}
.ticker-content {
  display: inline-block;
  animation: ticker 24s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-sep {
  display: inline-block;
  margin: 0 28px;
  color: var(--yellow-highlight);
  font-weight: 900;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-main-photo { height: 420px; }
  .value-pillars { grid-template-columns: repeat(2, 1fr); }
  .issues-grid { grid-template-columns: repeat(2, 1fr); }
  .district-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  #top-strip .strip-contacts { display: none; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-col { text-align: center; }
  .about-main-photo { max-width: 320px; margin: 0 auto; }
  .about-photo-badge { right: 0; }
  .bku-content { grid-template-columns: 1fr; gap: 36px; }
  .campaigns-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .join-inner { grid-template-columns: 1fr; gap: 36px; }
  .grievance-wrap { grid-template-columns: 1fr; gap: 36px; }
  .district-grid { grid-template-columns: repeat(3, 1fr); }
  .social-cards { grid-template-columns: 1fr; max-width: 400px; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 48px 0; }
  .hero-headline { font-size: 1.9rem; }
  .hero-content { padding: 44px 0 60px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .value-pillars { grid-template-columns: 1fr 1fr; gap: 14px; }
  .issues-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full-width { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .district-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom .disclaimer { text-align: left; max-width: 100%; }
}

/* ===================================================================
   SOCIAL PLATFORM CARDS (all-platforms grid)
   =================================================================== */
.social-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.social-platform-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text-main);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.social-platform-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: transparent;
}
.sp-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 8px;
}
.sp-name { font-size: 1rem; font-weight: 800; color: var(--green-deep); }
.sp-handle { font-size: 0.85rem; color: var(--green-primary); font-weight: 600; }
.sp-stat { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }
.sp-follow {
  margin-top: 14px;
  padding: 7px 20px;
  border-radius: 20px;
  background: var(--green-primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-platform-card:hover .sp-follow { background: var(--green-deep); }

/* ===================================================================
   INNER PAGE SHARED STYLES
   =================================================================== */
.page-hero {
  background: var(--green-deep);
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/hero_rally.png');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-breadcrumb a { color: var(--yellow-highlight); text-decoration: none; }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-title {
  font-family: var(--font-hindi);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.page-subtitle-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
}

/* Tab navigation for join page */
.form-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-pale);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 28px;
}
.form-tab {
  flex: 1;
  padding: 10px 14px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.form-tab.active {
  background: var(--green-primary);
  color: #fff;
}
.form-panel { display: none; }
.form-panel.active { display: block; }

/* Donation card */
.donate-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}
.donate-amount-btn {
  padding: 14px 10px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-mint);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.donate-amount-btn:hover,
.donate-amount-btn.selected {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #fff;
}
.upi-box {
  background: var(--bg-pale);
  border: 2px dashed var(--green-accent);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}
.upi-id {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green-deep);
  letter-spacing: 1px;
  margin: 8px 0;
}
.upi-copy-btn {
  background: var(--green-primary);
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.upi-copy-btn:hover { background: var(--green-deep); }

/* Gallery full grid */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-full-grid .gallery-item img { min-height: 200px; }

/* Issues full grid */
.issues-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Campaign full */
.campaigns-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.campaigns-full-grid .campaign-card { min-height: 380px; }

@media (max-width: 900px) {
  .social-all-grid { grid-template-columns: repeat(2, 1fr); }
  .issues-full-grid { grid-template-columns: repeat(2, 1fr); }
  .campaigns-full-grid { grid-template-columns: 1fr; }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .social-all-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .donate-amount-grid { grid-template-columns: repeat(2, 1fr); }
  .issues-full-grid { grid-template-columns: 1fr 1fr; }
  .form-tabs { flex-direction: column; }
  .gallery-full-grid { grid-template-columns: 1fr; }
}


/* ===================================================================
   FORM FEEDBACK STATES
   =================================================================== */
.form-success-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f0fdf4;
  border: 2px solid #22c55e;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 20px;
  animation: fadeInUp 0.4s ease;
}
.form-success-banner .success-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.form-success-banner .success-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #14532d;
}
.form-error-msg {
  background: #fff0f0;
  border: 1.5px solid #f87171;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.88rem;
  color: #b91c1c;
  width: 100%;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================================
   ADMIN DASHBOARD
   =================================================================== */
.admin-page {
  min-height: 100vh;
  background: #0f1117;
  color: #e2e8f0;
  font-family: var(--font-body);
}
.admin-sidebar {
  width: 240px;
  background: #1a1d27;
  border-right: 1px solid #2a2d3e;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  z-index: 100;
}
.admin-sidebar-logo {
  padding: 24px 20px 20px;
  border-bottom: 1px solid #2a2d3e;
}
.admin-sidebar-logo .logo-title {
  font-family: var(--font-hindi);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--yellow-highlight);
}
.admin-sidebar-logo .logo-sub {
  font-size: 0.72rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: var(--transition);
}
.admin-nav-item:hover { background: #222535; color: #e2e8f0; }
.admin-nav-item.active {
  background: rgba(30,107,58,0.2);
  color: #4ade80;
  border-left-color: var(--green-primary);
}
.admin-nav-item i { width: 18px; text-align: center; }
.admin-nav-badge {
  margin-left: auto;
  background: #ef4444;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}
.admin-main {
  margin-left: 240px;
  padding: 32px 36px;
  min-height: 100vh;
}
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.admin-topbar h1 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f1f5f9;
}
.admin-topbar .logout-btn {
  background: #1e293b;
  border: 1px solid #334155;
  color: #94a3b8;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.admin-topbar .logout-btn:hover { background: #ef4444; color: #fff; border-color: #ef4444; }

/* Stat Cards */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.stat-card {
  background: #1a1d27;
  border: 1px solid #2a2d3e;
  border-radius: 12px;
  padding: 22px 20px;
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--green-primary); transform: translateY(-2px); }
.stat-card .stat-label {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}
.stat-card .stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow-highlight);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .stat-sub {
  font-size: 0.78rem;
  color: #475569;
}
.stat-card .stat-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
  opacity: 0.7;
}

/* Table */
.admin-table-wrap {
  background: #1a1d27;
  border: 1px solid #2a2d3e;
  border-radius: 12px;
  overflow: hidden;
}
.admin-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #2a2d3e;
}
.admin-table-header h2 { font-size: 1rem; font-weight: 700; color: #f1f5f9; }
.admin-search {
  background: #0f1117;
  border: 1px solid #2a2d3e;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 0.85rem;
  color: #e2e8f0;
  width: 220px;
  outline: none;
}
.admin-search:focus { border-color: var(--green-primary); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  background: #0f1117;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.admin-table td {
  padding: 13px 16px;
  font-size: 0.85rem;
  border-bottom: 1px solid #1e2130;
  color: #cbd5e1;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #1e2130; }

/* Status badges */
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-pending  { background: rgba(234,179,8,0.15);  color: #fbbf24; }
.status-approved { background: rgba(34,197,94,0.15);  color: #4ade80; }
.status-rejected { background: rgba(239,68,68,0.15);  color: #f87171; }

/* Status select in table */
.status-select {
  background: #0f1117;
  border: 1px solid #2a2d3e;
  color: #cbd5e1;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 0.8rem;
  cursor: pointer;
}
.status-select:focus { outline: none; border-color: var(--green-primary); }

/* Admin tab panels */
.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; }

/* Admin Login Page */
.admin-login-page {
  min-height: 100vh;
  background: #0f1117;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-login-card {
  background: #1a1d27;
  border: 1px solid #2a2d3e;
  border-radius: 16px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.admin-login-card .login-logo {
  font-family: var(--font-hindi);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow-highlight);
  margin-bottom: 8px;
}
.admin-login-card .login-sub {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 36px;
}
.admin-login-card label {
  display: block;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 8px;
}
.admin-login-card input[type="password"] {
  width: 100%;
  background: #0f1117;
  border: 1px solid #2a2d3e;
  color: #e2e8f0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  margin-bottom: 20px;
  outline: none;
  transition: var(--transition);
}
.admin-login-card input[type="password"]:focus { border-color: var(--green-primary); }
.admin-login-btn {
  width: 100%;
  background: var(--green-primary);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.admin-login-btn:hover { background: var(--green-deep); }
.admin-login-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid #ef4444;
  color: #f87171;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
