/* ==========================================================================
   Suresh Mewara Official — Professional Political & Ward 13 Portal Styles
   ========================================================================== */

:root {
  /* Brand Palette: BJP Saffron & Royal Navy with Gold Accents */
  --saffron: #ff6f00;
  --saffron-hover: #e65100;
  --saffron-gradient: linear-gradient(135deg, #ff8f00 0%, #ff5722 100%);
  --saffron-glow: rgba(255, 111, 0, 0.35);
  
  --navy-darkest: #071322;
  --navy-dark: #0d213a;
  --navy-main: #132f52;
  --navy-light: #1e4575;
  --navy-gradient: linear-gradient(135deg, #0d213a 0%, #17365d 100%);

  --gold: #d49a2a;
  --gold-light: #fff4d9;
  --gold-gradient: linear-gradient(135deg, #f9d423 0%, #ff4e50 100%);

  --green-wa: #25d366;
  --green-dark: #128c7e;
  
  --bg-cream: #faf7f2;
  --bg-soft: #f1ebd9;
  --bg-white: #ffffff;

  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;

  --border-light: #e8e1d5;
  --border-card: #f0e9dc;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(13, 33, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 33, 58, 0.08);
  --shadow-lg: 0 16px 40px rgba(13, 33, 58, 0.12);
  --shadow-glow: 0 10px 30px rgba(255, 111, 0, 0.25);

  --font-hindi: 'Hind', sans-serif;
  --font-heading: 'Outfit', 'Hind', sans-serif;
  --font-sans: 'Plus Jakarta Sans', 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;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-hindi);
  color: var(--text-body);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ----------------- Container & Utilities ----------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-white { color: var(--text-light) !important; }
.w-100 { width: 100%; }

.section {
  padding: 85px 0;
  position: relative;
}

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

.d-flex-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(255, 111, 0, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(255, 111, 0, 0.2);
}

.section-tag-gold {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffe082;
  background: rgba(255, 215, 0, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

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

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

/* ----------------- Buttons ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-xl {
  padding: 15px 30px;
  font-size: 17px;
  border-radius: var(--radius-md);
}

.btn-saffron {
  background: var(--saffron-gradient);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.35);
}

.btn-saffron:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 111, 0, 0.45);
  color: #ffffff;
}

.btn-glow {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255, 111, 0, 0); }
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.btn-gold {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  color: #0d213a;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.5);
  background: linear-gradient(135deg, #ffca28 0%, #ffa726 100%);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-sm {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--navy-dark);
  border: 1.5px solid var(--navy-light);
}

.btn-outline-sm:hover {
  background: var(--navy-dark);
  color: #ffffff;
}

/* ----------------- Top Bar ----------------- */
.top-bar {
  background: var(--navy-darkest);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.live-pill {
  background: rgba(37, 211, 102, 0.15);
  color: #4ade80;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.live-dot {
  width: 7px;
  height: 7px;
  background-color: #4ade80;
  border-radius: 50%;
  animation: blinkLive 1.5s infinite;
}

@keyframes blinkLive {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

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

.top-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.top-link:hover {
  color: var(--saffron);
}

.whatsapp-top {
  color: #4ade80;
  font-weight: 600;
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.top-socials a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 12px;
  color: #ffffff;
}

.top-socials a:hover {
  background: var(--saffron);
  transform: scale(1.1);
}

/* ----------------- Site Header & Nav ----------------- */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-wrapper {
  height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.brand-avatar {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--saffron);
  box-shadow: 0 2px 8px rgba(255, 111, 0, 0.2);
  overflow: hidden;
}

.brand-avatar img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.candidate-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 19px;
  color: var(--navy-dark);
  line-height: 1.15;
}

.candidate-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.party-tag {
  color: var(--saffron);
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-item {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-main);
  padding: 6px 0;
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--saffron);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-item:hover, .nav-item.active {
  color: var(--saffron);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle-btn {
  display: none;
  background: none;
  border: 1px solid var(--border-light);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  font-size: 20px;
  color: var(--navy-dark);
  cursor: pointer;
}

/* ----------------- Mobile Drawer ----------------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 1000;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: right 0.32s ease;
  padding: 24px 20px;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

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

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-brand img {
  width: 36px;
  height: 36px;
}

.drawer-brand strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--navy-dark);
}

.drawer-brand small {
  font-size: 11px;
  color: var(--saffron);
  font-weight: 700;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-muted);
  cursor: pointer;
}

.drawer-links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow-y: auto;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 15px;
}

.drawer-link i {
  color: var(--saffron);
  width: 20px;
  text-align: center;
}

.drawer-link:hover {
  background: rgba(255, 111, 0, 0.08);
  color: var(--saffron);
}

.admin-link {
  margin-top: auto;
  background: #f1f5f9;
}

.drawer-footer {
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

/* ----------------- Hero Section ----------------- */
.hero-section {
  background: radial-gradient(circle at 80% 20%, #1a3f6d 0%, #0c213a 60%, #06111e 100%);
  color: var(--text-light);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(255, 111, 0, 0.15) 1px, transparent 1px),
    radial-gradient(rgba(37, 211, 102, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
  opacity: 0.6;
}

.hero-tricolor-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9933 0%, #ff9933 33.3%, #ffffff 33.3%, #ffffff 66.6%, #138808 66.6%, #138808 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 111, 0, 0.2);
  border: 1px solid rgba(255, 111, 0, 0.4);
  color: #ffe0b2;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffab40 0%, #ff6f00 50%, #ffd54f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: #d1dced;
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 34px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #e2e8f0;
  font-weight: 600;
}

.hero-feature-item i {
  color: #4ade80;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

/* Supporter Counter Card */
.live-counter-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  backdrop-filter: blur(12px);
  width: fit-content;
}

.counter-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--saffron-gradient);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: #ffca28;
  line-height: 1.1;
}

.counter-label {
  font-size: 13px;
  color: #cbd5e1;
}

/* Hero Visual Card */
.hero-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card-frame {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(255, 111, 0, 0.15);
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 430px;
  position: relative;
}

.card-party-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 20px;
}

.bjp-header-logo {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.party-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.party-motto {
  display: block;
  font-size: 11px;
  color: #ffb74d;
  font-weight: 600;
}

.candidate-main-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, #2a4c7e 0%, #0d213a 100%);
  display: grid;
  place-items: center;
}

.candidate-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.5s ease;
}

.candidate-main-visual:hover .candidate-hero-img {
  transform: scale(1.04);
}

.visual-glow-ring {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(255, 111, 0, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  background: rgba(13, 33, 58, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  z-index: 5;
}

.floating-badge i {
  font-size: 18px;
  color: #ffca28;
}

.floating-badge strong {
  display: block;
  font-size: 13px;
  color: #ffffff;
}

.floating-badge small {
  font-size: 10px;
  color: #cbd5e1;
}

.badge-top-right {
  top: 14px;
  right: 14px;
}

.badge-bottom-left {
  bottom: 14px;
  left: 14px;
}

.card-candidate-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.candidate-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}

.candidate-info p {
  font-size: 12px;
  color: #ffb74d;
  font-weight: 600;
}

.candidate-symbol {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.candidate-symbol img {
  width: 32px;
  height: 32px;
}

.candidate-symbol span {
  font-size: 9px;
  color: #cbd5e1;
  font-weight: 700;
}

/* ----------------- Ticker Section ----------------- */
.ticker-section {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}

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

.ticker-badge {
  background: var(--saffron-gradient);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.ticker-scroll {
  flex: 1;
  overflow: hidden;
  font-weight: 600;
  color: var(--navy-dark);
  font-size: 15px;
}

.ticker-all-btn {
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.ticker-all-btn:hover {
  color: var(--saffron);
}

/* ----------------- Pledge / Support Section ----------------- */
.pledge-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #0d213a 0%, #153863 100%);
  color: #ffffff;
}

.pledge-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(12px);
}

.pledge-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.pledge-content p {
  font-size: 17px;
  color: #cbd5e1;
}

.pledge-action-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.pledge-shares {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.pledge-shares span {
  font-size: 12px;
  color: #94a3b8;
}

.share-btn-group {
  display: flex;
  gap: 10px;
}

.share-btn {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
}

.share-btn.whatsapp {
  background: #25d366;
}

.share-btn.facebook {
  background: #1877f2;
}

/* ----------------- Vision & About Section ----------------- */
.vision-section {
  background: var(--bg-white);
}

.vision-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.vision-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid #ffffff;
  aspect-ratio: 1 / 1;
}

.vision-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--navy-dark);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--saffron);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.vision-experience-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  color: #ffb74d;
}

.vision-experience-badge span {
  font-size: 13px;
  color: #cbd5e1;
}

.vision-desc {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 30px;
}

.vision-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 34px;
}

.pillar-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-cream);
  padding: 16px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--saffron);
}

.pillar-icon {
  font-size: 22px;
  color: var(--saffron);
  margin-top: 2px;
}

.pillar-box h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.pillar-box p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.vision-signature-block {
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.signature-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--saffron);
}

.signature-designation {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ----------------- Priorities Section ----------------- */
.priorities-section {
  background: var(--bg-cream);
}

.priorities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.priority-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-card);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.priority-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 111, 0, 0.4);
}

.priority-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: #f1ebd9;
  line-height: 1;
}

.priority-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 22px;
}

.icon-clean { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.icon-water { background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%); }
.icon-light { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.icon-road { background: linear-gradient(135deg, #64748b 0%, #475569 100%); }
.icon-park { background: linear-gradient(135deg, #16a34a 0%, #15803d 100%); }
.icon-help { background: linear-gradient(135deg, #ff6f00 0%, #e65100 100%); }

.priority-card h3 {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.priority-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.priority-list {
  list-style: none;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.priority-list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-main);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.priority-list li i {
  color: #10b981;
  font-size: 13px;
}

/* ----------------- Grievance & Citizen Desk ----------------- */
.grievance-section {
  background: radial-gradient(circle at 10% 20%, #102746 0%, #091a30 100%);
  color: #ffffff;
}

.grievance-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.grievance-info-desc {
  font-size: 18px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 30px;
}

.grievance-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gh-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gh-item i {
  font-size: 22px;
  color: #ffca28;
  background: rgba(255, 202, 40, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.gh-item strong {
  display: block;
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 2px;
}

.gh-item p {
  font-size: 14px;
  color: #94a3b8;
}

.grievance-form-card {
  background: #ffffff;
  color: var(--text-body);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 111, 0, 0.12);
  color: var(--saffron);
  font-weight: 800;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.form-group label i {
  color: var(--saffron);
  margin-right: 4px;
}

.form-group .req {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #fdfdfd;
  color: var(--navy-dark);
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.12);
  background: #ffffff;
}

.form-group textarea {
  resize: vertical;
}

.form-privacy {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ----------------- Updates & News Grid ----------------- */
.updates-section {
  background: var(--bg-white);
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-main);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--saffron);
  color: #ffffff;
  border-color: var(--saffron);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.post-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border-top: 4px solid var(--saffron);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.post-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--saffron);
  background: rgba(255, 111, 0, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.post-date {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.post-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.post-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

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

.post-share-btn {
  font-size: 13px;
  font-weight: 700;
  color: #128c7e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.post-share-btn:hover {
  color: #25d366;
}

.admin-quick-note {
  margin-top: 36px;
  background: var(--bg-cream);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--navy-dark);
}

/* ----------------- Gallery Grid ----------------- */
.gallery-section {
  background: var(--bg-cream);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--navy-dark);
  aspect-ratio: 1.15 / 1;
  cursor: pointer;
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 26, 48, 0.95) 0%, rgba(9, 26, 48, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #ffffff;
  opacity: 0.95;
  transition: var(--transition);
}

.gallery-tag {
  font-size: 11px;
  font-weight: 800;
  color: #ffca28;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.gallery-overlay h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.gallery-view-btn {
  font-size: 12px;
  font-weight: 700;
  color: #ffab40;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ----------------- Contact Section ----------------- */
.contact-section {
  background: var(--navy-dark);
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.contact-desc {
  font-size: 17px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 34px;
}

.ci-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 111, 0, 0.2);
  color: var(--saffron);
  display: grid;
  place-items: center;
  font-size: 20px;
  border: 1px solid rgba(255, 111, 0, 0.3);
}

.ci-item strong {
  display: block;
  font-size: 15px;
  color: #ffffff;
}

.ci-item p {
  font-size: 14px;
  color: #94a3b8;
}

.contact-social-channels h4 {
  font-size: 15px;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.social-channel-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.soc-btn {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.soc-btn.instagram:hover {
  background: #e1306c;
  border-color: #e1306c;
}

.soc-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.soc-btn.whatsapp-group {
  background: #128c7e;
  border-color: #128c7e;
}

.soc-btn.whatsapp-group:hover {
  background: #25d366;
  border-color: #25d366;
}

/* Appeal Card */
.contact-appeal-card {
  background: linear-gradient(145deg, #132f52 0%, #0d213a 100%);
  border: 2px solid var(--saffron);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.appeal-lotus img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.contact-appeal-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #ffca28;
  margin-bottom: 14px;
}

.contact-appeal-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #e2e8f0;
  font-style: italic;
  margin-bottom: 20px;
}

.appeal-author {
  margin-bottom: 26px;
}

.appeal-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--saffron);
}

.appeal-author span {
  font-size: 12px;
  color: #cbd5e1;
}

/* ----------------- Footer ----------------- */
.site-footer {
  background: var(--navy-darkest);
  color: #94a3b8;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 14px;
}

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

.footer-contact-col p {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-admin-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.footer-admin-link:hover {
  background: var(--saffron);
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  font-size: 13px;
}

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

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

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

/* ----------------- Floating Chat Widget ----------------- */
.floating-chat-container {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
}

.floating-chat-btn {
  background: #25d366;
  color: #ffffff;
  border: none;
  padding: 13px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.floating-chat-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

.floating-chat-btn i {
  font-size: 22px;
}

.pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid #25d366;
  animation: pulseChat 2s infinite;
  pointer-events: none;
}

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

.floating-chat-panel {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 320px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px) scale(0.96);
  transition: var(--transition);
}

.floating-chat-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.fcp-header {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.fcp-avatar img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
}

.fcp-title strong {
  display: block;
  font-size: 14px;
  font-family: var(--font-heading);
}

.status-online {
  font-size: 11px;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-online .dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
}

.fcp-close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  cursor: pointer;
}

.fcp-body {
  padding: 18px;
  color: var(--text-body);
}

.fcp-body p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.fcp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.fcp-btn-wa {
  background: #25d366;
  color: #ffffff;
}

.fcp-btn-grp {
  background: #eff6ff;
  color: var(--navy-dark);
  border: 1px solid #bfdbfe;
}

.fcp-btn-call {
  background: #f8fafc;
  color: var(--text-body);
  border: 1px solid var(--border-light);
}

/* ----------------- Mobile Bottom Action Bar ----------------- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  z-index: 85;
}

.mbb-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-main);
  background: none;
  border: none;
  cursor: pointer;
}

.mbb-item i {
  font-size: 18px;
}

.mbb-whatsapp {
  color: #128c7e;
}

.mbb-pledge {
  color: var(--saffron);
}

/* ----------------- Lightbox Modal ----------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 34, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-top: 14px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: -10px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
}

/* ----------------- Toast Notification ----------------- */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy-dark);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--saffron);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  z-index: 1500;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  white-space: nowrap;
}

.toast i {
  color: #4ade80;
  font-size: 18px;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ----------------- Responsive Media Queries ----------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual-col {
    order: -1;
  }

  .hero-card-frame {
    max-width: 380px;
  }

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

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

  .pledge-card,
  .grievance-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pledge-action-box {
    align-items: flex-start;
  }

  .pledge-shares {
    align-items: flex-start;
  }

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

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

  .desktop-nav,
  .header-actions #headerPledgeBtn {
    display: none;
  }

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

  .section {
    padding: 60px 0;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .vision-pillars {
    grid-template-columns: 1fr;
  }

  .priorities-grid,
  .posts-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .grievance-form-card {
    padding: 22px;
  }

  .floating-chat-container {
    bottom: 74px;
    right: 16px;
  }

  .chat-btn-text {
    display: none;
  }

  .floating-chat-btn {
    padding: 14px;
    width: 52px;
    height: 52px;
    justify-content: center;
  }

  .mobile-bottom-bar {
    display: flex;
  }

  body {
    padding-bottom: 64px;
  }

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