/* ============================
   ROOT VARIABLES & RESET
   ============================ */
:root {
  --green-dark: #0a5c2e;
  --green-main: #1a7a3e;
  --green-medium: #2ea656;
  --green-light: #4dc970;
  --green-pale: #e8f7ee;
  --red-dark: #8b1a1a;
  --red-main: #c0392b;
  --red-medium: #e74c3c;
  --red-light: #f1948a;
  --red-pale: #fdf0f0;
  --gold: #f39c12;
  --gold-light: #f9ca45;
  --white: #ffffff;
  --off-white: #f8fdf9;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-green: 0 8px 32px rgba(26,122,62,0.25);
  --shadow-red: 0 8px 32px rgba(192,57,43,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-bengali: 'Hind Siliguri', 'Noto Serif Bengali', sans-serif;
  --font-serif: 'Noto Serif Bengali', serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-bengali);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ============================
   SECTION CONTAINERS
   ============================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

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

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-pale), #d4f5e2);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--green-medium);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 92, 46, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  padding: 8px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold-light);
  background: rgba(192, 57, 43, 0.9);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  margin-top: 2px;
  font-weight: 500;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a5c2e 0%, #1a7a3e 40%, #0f6b35 70%, #8b1a1a 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(192,57,43,0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255,255,255,0.05) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.bismillah {
  font-size: 1.2rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  direction: rtl;
  letter-spacing: 0.05em;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-family: var(--font-serif);
  margin-bottom: 8px;
}

.title-line1 {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  animation: fadeInLeft 0.8s ease 0.1s both;
}

.title-line2 {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold-light);
  font-weight: 900;
  text-shadow: 0 4px 16px rgba(0,0,0,0.3);
  animation: fadeInLeft 0.8s ease 0.2s both;
}

.candidate-name-hero {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeInLeft 0.8s ease 0.3s both;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  animation: fadeInLeft 0.8s ease 0.4s both;
}

.hero-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.6;
  animation: fadeInLeft 0.8s ease 0.5s both;
}

.hero-desc strong {
  color: var(--gold-light);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInLeft 0.8s ease 0.6s both;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-bengali);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192,57,43,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,57,43,0.5);
  background: linear-gradient(135deg, var(--red-medium), var(--red-main));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInLeft 0.8s ease 0.7s both;
}

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

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.3s both;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
}

.ring-1 {
  width: 420px;
  height: 420px;
  border-color: rgba(255,255,255,0.08);
  border-width: 1px;
  animation: rotateSlow 20s linear infinite;
}

.ring-2 {
  width: 360px;
  height: 360px;
  border-color: rgba(249,202,69,0.15);
  border-width: 2px;
  animation: rotateSlow 15s linear infinite reverse;
}

.ring-3 {
  width: 300px;
  height: 300px;
  border-color: rgba(255,255,255,0.05);
  border-width: 3px;
  animation: rotateSlow 10s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-photo-container {
  width: 280px;
  height: 360px;
  border-radius: 140px 140px 100px 100px;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 2px var(--gold);
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, var(--green-medium), var(--green-dark));
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(1.05) contrast(1.05);
}

.hero-badge-float {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite;
}

.mayor-badge {
  top: 20px;
  right: -20px;
  color: var(--green-dark);
  border-left: 4px solid var(--green-medium);
}

.mayor-badge span:first-child {
  font-size: 1.2rem;
  font-family: var(--font-serif);
}

.support-badge {
  bottom: 30px;
  left: -30px;
  color: var(--red-dark);
  border-left: 4px solid var(--red-medium);
  animation-delay: 1.5s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

.scroll-arrow {
  width: 28px;
  height: 28px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
}

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

/* ============================
   TICKER
   ============================ */
.ticker-wrap {
  background: linear-gradient(90deg, var(--red-dark), var(--red-main), var(--red-dark));
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

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

.ticker-track span::before {
  content: '|';
  margin-right: 80px;
  opacity: 0.4;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about {
  background: var(--off-white);
}

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

.about-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-main-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-main-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,92,46,0.85));
  color: var(--white);
  padding: 24px 20px 16px;
  font-weight: 600;
  font-size: 0.9rem;
}

.about-values-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.value-card-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,122,62,0.15);
  transition: var(--transition);
}

.value-card-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-medium);
}

.value-icon {
  font-size: 1.5rem;
  background: var(--green-pale);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 2px;
}

.value-text p {
  font-size: 0.82rem;
  color: var(--gray-700);
  line-height: 1.5;
  margin: 0;
}

.family-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.family-text span {
  font-size: 0.75rem;
  opacity: 0.85;
  line-height: 1.4;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-intro p {
  font-size: 1.02rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid transparent;
}

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

.highlight-card:nth-child(odd) { border-left-color: var(--green-medium); }
.highlight-card:nth-child(even) { border-left-color: var(--red-medium); }

.highlight-icon {
  font-size: 1.6rem;
  min-width: 40px;
  text-align: center;
}

.highlight-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.highlight-text span {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.legacy-box {
  display: flex;
  gap: 20px;
  background: linear-gradient(135deg, var(--green-pale), #f0faf5);
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius-md);
  padding: 24px;
  align-items: center;
}

.legacy-portrait {
  flex-shrink: 0;
}

.legacy-img-small {
  width: 85px;
  height: 85px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 3px solid var(--green-medium);
  box-shadow: var(--shadow-sm);
}

.legacy-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.legacy-text p {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ============================
   WHY VOTE SECTION
   ============================ */
.why-vote {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a5c35 50%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
}

.why-vote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.section-header.light .section-tag,
.light-tag {
  background: rgba(255,255,255,0.1) !important;
  color: var(--gold-light) !important;
  border-color: rgba(255,255,255,0.2) !important;
}

.section-header.light .section-title,
.light-title {
  color: var(--white) !important;
}

.section-header.light .section-subtitle,
.light-subtitle {
  color: rgba(255,255,255,0.7) !important;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.reason-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.reason-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.reason-card:hover::before {
  transform: scaleX(1);
}

.reason-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  opacity: 0.8;
}

.reason-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.reason-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.reason-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ============================
   MANIFESTO SECTION
   ============================ */
.manifesto {
  background: var(--white);
}

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

.manifesto-card {
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.manifesto-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.1;
  transform: translate(20px, 20px);
}

.green-card {
  background: linear-gradient(135deg, var(--green-pale), #d4f5e2);
  border: 1.5px solid var(--green-light);
}

.green-card::after {
  background: var(--green-dark);
}

.red-card {
  background: linear-gradient(135deg, var(--red-pale), #fde0e0);
  border: 1.5px solid var(--red-light);
}

.red-card::after {
  background: var(--red-dark);
}

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

.manifesto-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.manifesto-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.green-card h3 { color: var(--green-dark); }
.red-card h3 { color: var(--red-dark); }

.manifesto-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.manifesto-card li {
  font-size: 0.875rem;
  color: var(--gray-700);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.green-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-medium);
  font-weight: 700;
}

.red-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red-medium);
  font-weight: 700;
}

.promise-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.promise-banner::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 40px;
  font-size: 200px;
  color: rgba(255,255,255,0.05);
  font-family: Georgia, serif;
  line-height: 1;
}

.promise-text h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.promise-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 500px;
}

.promise-signature {
  flex-shrink: 0;
  text-align: center;
  border-left: 2px solid rgba(255,255,255,0.2);
  padding-left: 40px;
}

.sig-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.sig-title {
  display: block;
  font-size: 0.8rem;
  color: var(--gold-light);
  opacity: 0.9;
}

/* ============================
   ACTIVITIES SECTION
   ============================ */
.activities {
  background: var(--gray-100);
}

.activities-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.activities-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green-medium), var(--red-medium), var(--green-medium));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
}

.timeline-item.left .timeline-content {
  grid-column: 1;
  grid-row: 1;
}

.timeline-item.left .timeline-dot {
  grid-column: 2;
  grid-row: 1;
}

.timeline-item.right .timeline-dot {
  grid-column: 2;
  grid-row: 1;
}

.timeline-item.right .timeline-content {
  grid-column: 3;
  grid-row: 1;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--green-medium), var(--green-dark));
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--green-medium);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.timeline-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.timeline-text {
  padding: 24px;
}

.timeline-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.green-tag {
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green-light);
}

.red-tag {
  background: var(--red-pale);
  color: var(--red-dark);
  border: 1px solid var(--red-light);
}

.timeline-text h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.timeline-text p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================
   GALLERY
   ============================ */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.large-bottom {
  grid-column: span 2;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.7));
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ============================
   VOTE SECTION
   ============================ */
.vote-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-main) 50%, #922b21 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.vote-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(10,92,46,0.15) 0%, transparent 40%);
}

.vote-content {
  position: relative;
  z-index: 1;
}

.vote-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid var(--gold-light);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.vote-icon-box {
  font-size: 1.8rem;
  animation: pulse 2s infinite;
}

.vote-badge-text {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

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

.vote-main-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.35;
}

.highlight-gold {
  color: var(--gold-light);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.vote-main-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  max-width: 650px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.vote-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.vote-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  width: 220px;
  transition: var(--transition);
}

.vote-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.vote-card-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.vote-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.vote-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0;
}

.vote-slogan {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.vote-slogan span {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.vote-slogan strong {
  color: var(--gold-light);
  font-size: 1.05rem;
  font-family: var(--font-serif);
  font-weight: 800;
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.contact-info h3,
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-icon {
  font-size: 1.4rem;
  min-width: 36px;
  text-align: center;
}

.contact-item div strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.contact-item div span {
  font-size: 0.9rem;
  color: var(--gray-700);
}

.contact-social {
  margin-top: 28px;
}

.contact-social h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.social-btn span {
  font-weight: 900;
  font-size: 1rem;
}

.fb-btn {
  background: #1877f2;
  color: var(--white);
}

.fb-btn:hover {
  background: #1557c0;
  transform: translateY(-2px);
}

.yt-btn {
  background: #ff0000;
  color: var(--white);
}

.yt-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-bengali);
  color: var(--gray-900);
  transition: var(--transition);
  background: var(--off-white);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-medium);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46,166,86,0.1);
}

.form-btn {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  box-shadow: var(--shadow-green);
}

.form-btn:hover {
  background: linear-gradient(135deg, var(--green-medium), var(--green-main));
  box-shadow: 0 8px 30px rgba(26,122,62,0.4);
}

/* Form Info Banner */
.form-info-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, var(--green-pale), #d4f5e2);
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 4px;
}

.form-info-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-info-banner p {
  font-size: 0.82rem;
  color: var(--green-dark);
  line-height: 1.6;
  font-weight: 500;
}

/* Select dropdown */
.form-group select {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-bengali);
  color: var(--gray-900);
  transition: var(--transition);
  background: var(--off-white);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

.form-group select:focus {
  outline: none;
  border-color: var(--green-medium);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(46,166,86,0.1);
}

.form-success {
  text-align: center;
  padding: 14px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--green-light);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: linear-gradient(135deg, #050f08, #0a1f0f);
  color: rgba(255,255,255,0.8);
}

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

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer-links-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-printer {
  margin-top: 6px;
  font-size: 0.72rem !important;
}

/* ============================
   FLOATING CTA & BACK TO TOP
   ============================ */
.floating-cta {
  position: fixed;
  bottom: 80px;
  right: 24px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-green);
  z-index: 100;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(26,122,62,0.5);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red-main), var(--red-dark));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 100;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

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

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.5);
}

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

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

.fade-in-up {
  animation: fadeInUp 0.7s ease both;
}

/* Intersection Observer driven */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .gallery-item.large {
    grid-column: 1;
    grid-row: 1;
  }
}

@media (max-width: 900px) {
  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    display: contents;
  }

  .hero-header-text {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-image-wrapper {
    order: 2;
    margin: 28px 0;
  }

  .hero-details-text {
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-photo-container {
    width: 275px;
    height: 355px;
  }

  .ring-1 { width: 365px; height: 365px; }
  .ring-2 { width: 325px; height: 325px; }
  .ring-3 { width: 285px; height: 285px; }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .mayor-badge {
    top: -10px;
    right: -15px;
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  .support-badge {
    bottom: -10px;
    left: -15px;
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .about-images,
  .about-content {
    display: contents;
  }

  .order-1 { order: 1; }
  .order-2 { order: 2; }
  .order-3 { order: 3; }
  .order-4 { order: 4; }
  .order-5 { order: 5; }

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

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

  .activities-timeline::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline-item.left .timeline-content,
  .timeline-item.right .timeline-content {
    grid-column: 1;
  }

  .timeline-dot {
    display: none;
  }

  .promise-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }

  .promise-signature {
    border-left: none;
    border-top: 2px solid rgba(255,255,255,0.2);
    padding-left: 0;
    padding-top: 24px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 70px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--green-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -8px 0 30px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 14px 24px;
    width: 100%;
    text-align: center;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .reasons-grid,
  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .gallery-item.large,
  .gallery-item.large-bottom {
    grid-column: 1 / -1;
  }

  .vote-cards {
    flex-direction: column;
    align-items: center;
  }

  .vote-card {
    width: 100%;
    max-width: 300px;
  }

  .about-small-imgs {
    grid-template-columns: 1fr;
  }

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

  .hero-photo-container {
    width: 260px;
    height: 335px;
  }
}
