/* =========================================
   SOLUTION 2027 — MAIN STYLESHEET
   Color Palette: White · Red · Blue
   ========================================= */

:root {
  --red:       #C8102E;
  --red-dark:  #9B0E23;
  --red-light: #E63950;
  --blue:      #003087;
  --blue-dark: #00205B;
  --blue-mid:  #0040A0;
  --blue-light:#1A5FB4;
  --white:     #FFFFFF;
  --off-white: #F7F8FA;
  --gray-100:  #F0F2F5;
  --gray-200:  #E2E6EA;
  --gray-400:  #9AA3AF;
  --gray-600:  #5A6474;
  --gray-800:  #2C3345;
  --gold:      #D4AF37;
  --shadow-sm: 0 2px 12px rgba(0,48,135,.08);
  --shadow-md: 0 6px 28px rgba(0,48,135,.13);
  --shadow-lg: 0 16px 56px rgba(0,48,135,.18);
  --radius:    10px;
  --radius-lg: 20px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== TOPBAR ========== */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: 7px 0;
  position: relative;
  z-index: 100;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 20px; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left i { color: var(--gold); }
.topbar-right { display: flex; gap: 12px; }
.topbar-right a {
  color: rgba(255,255,255,.75);
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
  font-size: .75rem;
}
.topbar-right a:hover { background: var(--red); border-color: var(--red); color: white; }

/* ========== NAVBAR ========== */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0; z-index: 999;
  box-shadow: 0 2px 0 rgba(0,48,135,.07);
  border-bottom: 3px solid var(--red);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-emblem {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 2px solid var(--red);
  box-shadow: 0 4px 14px rgba(200,16,46,.3);
}
.logo-s { font-family: 'Anton', sans-serif; font-size: 1.1rem; color: white; line-height: 1; letter-spacing: 1px; }
.logo-year { font-family: 'Outfit', sans-serif; font-size: .55rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: 'Anton', sans-serif; font-size: .85rem; letter-spacing: 1.5px; color: var(--blue-dark); line-height: 1; }
.logo-sub { font-size: .65rem; color: var(--red); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links li a {
  padding: 8px 14px;
  font-weight: 500;
  font-size: .92rem;
  color: var(--gray-800);
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: center;
  transition: transform .3s ease;
}
.nav-links li a:hover { color: var(--red); }
.nav-links li a:hover::after, .nav-links li a.active::after { transform: scaleX(1); }
.nav-links li a.active { color: var(--red); }

.nav-donate-btn {
  background: var(--red) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 4px 16px rgba(200,16,46,.35);
  transition: var(--transition) !important;
}
.nav-donate-btn::after { display: none !important; }
.nav-donate-btn:hover { background: var(--red-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(200,16,46,.45) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--blue-dark); border-radius: 2px; transition: var(--transition); }

/* ========== HERO SECTION ========== */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 40%, var(--blue-mid) 100%);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
/* Faded candidate background image */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.13;
  z-index: 0;
  filter: grayscale(30%);
}
/* dot pattern overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: 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.03'%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");
  z-index: 0;
}
.hero-diagonal {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 45%;
  background: rgba(255,255,255,.04);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}
.hero-accent-line {
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--red) 100%);
}
.hero-container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 16px; border-radius: 50px;
  color: var(--gold); font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.hero-badge i { font-size: .7rem; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: white; line-height: 1.1; margin-bottom: 16px;
}
.hero-title .highlight {
  color: var(--gold);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-family: 'Anton', sans-serif;
  color: var(--red-light);
  letter-spacing: 4px; margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(200,16,46,.3);
}
.hero-desc {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem; line-height: 1.7;
  max-width: 520px; margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red);
  color: white; padding: 14px 32px;
  border-radius: 50px; font-weight: 700;
  font-size: 1rem; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(200,16,46,.4);
  transition: var(--transition); border: none; cursor: pointer;
  text-transform: uppercase; letter-spacing: 1px;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,16,46,.5); color: white; }
.btn-outline {
  border: 2px solid rgba(255,255,255,.5); color: white;
  padding: 13px 32px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); background: transparent; cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: white; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--gold); line-height: 1; }
.hero-stat .lbl { font-size: .75rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.15); }

/* Hero right - candidate card */
.hero-right { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.hero-candidate-frame {
  position: relative;
  width: 380px; max-width: 100%;
}
.hero-candidate-frame::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 3px solid var(--red);
  border-radius: 20px; z-index: 0;
}
.hero-candidate-frame::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: -12px; bottom: -12px;
  background: rgba(212,175,55,.15);
  border-radius: 20px; z-index: 0;
}
.hero-candidate-img {
  position: relative; z-index: 1;
  width: 100%; height: 420px;
  object-fit: cover; object-position: top;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: 5rem;
}
.hero-party-badge {
  background: var(--red);
  color: white; padding: 10px 24px;
  border-radius: 50px; font-weight: 700;
  font-size: .9rem; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 18px rgba(200,16,46,.4);
  text-transform: uppercase; letter-spacing: 1px;
}

/* ========== SECTION GENERAL ========== */
.section { padding: 90px 0; }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 12px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; display: block; width: 28px; height: 2px; background: var(--red);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--blue-dark); line-height: 1.25; margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.section-desc { color: var(--gray-600); font-size: 1.05rem; line-height: 1.7; max-width: 580px; margin: 0 auto; }
.divider-line {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  border-radius: 2px; margin: 16px auto 0;
}

/* ========== MARQUEE TICKER ========== */
.campaign-ticker {
  background: var(--red);
  color: white; padding: 12px 0;
  overflow: hidden;
}
.ticker-inner { display: flex; white-space: nowrap; animation: ticker 25s linear infinite; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: .9rem;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 0 40px;
}
.ticker-item i { color: var(--gold); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== ABOUT SECTION ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-image-wrap { position: relative; }
.about-main-img {
  width: 100%; height: 480px;
  object-fit: cover; object-position: top;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--blue-dark), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.2); font-size: 6rem;
}
.about-accent-box {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--red);
  color: white; padding: 24px 28px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-accent-box .num { font-family: 'Anton', sans-serif; font-size: 2.5rem; line-height: 1; }
.about-accent-box .lbl { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; opacity: .9; }
.about-quote-box {
  position: absolute; top: -16px; left: -16px;
  background: var(--gold); color: var(--blue-dark);
  padding: 10px 20px; border-radius: 10px;
  font-weight: 700; font-size: .82rem; letter-spacing: 1px;
}
.about-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--red); margin-bottom: 8px;
}
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--blue-dark); line-height: 1.2; margin-bottom: 20px;
}
.about-content p { color: var(--gray-600); line-height: 1.75; font-size: 1rem; margin-bottom: 16px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0 32px; }
.highlight-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--gray-100); border-radius: 10px; padding: 14px;
  border-left: 3px solid var(--red);
}
.highlight-item i { color: var(--red); font-size: 1.2rem; margin-top: 2px; }
.highlight-item strong { display: block; font-size: .9rem; color: var(--blue-dark); margin-bottom: 3px; }
.highlight-item span { font-size: .8rem; color: var(--gray-600); }
.btn-blue {
  background: var(--blue-dark); color: white;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); border: none; cursor: pointer;
  text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 6px 24px rgba(0,32,91,.3);
}
.btn-blue:hover { background: var(--blue); transform: translateY(-2px); color: white; }

/* ========== AGENDA / POLICIES ========== */
.agenda-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.agenda-card {
  background: white; border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  transition: var(--transition); position: relative; overflow: hidden;
}
.agenda-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--red) 100%);
}
.agenda-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.agenda-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0,48,135,.2);
  transition: var(--transition);
}
.agenda-card:hover .agenda-icon { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); box-shadow: 0 6px 18px rgba(200,16,46,.25); }
.agenda-icon i { font-size: 1.5rem; color: white; }
.agenda-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--blue-dark); margin-bottom: 12px; }
.agenda-card p { color: var(--gray-600); line-height: 1.7; font-size: .95rem; }
.agenda-card ul { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.agenda-card ul li { display: flex; align-items: center; gap: 8px; color: var(--gray-600); font-size: .88rem; }
.agenda-card ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 12px;
  aspect-ratio: 1; cursor: pointer;
  background: var(--gray-200);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: unset; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,32,91,.8) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 600; font-size: .9rem; }
.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); gap: 8px;
}
.gallery-placeholder i { font-size: 2.5rem; }
.gallery-placeholder span { font-size: .8rem; font-weight: 500; }

/* ========== VIDEOS ========== */
.videos-section { background: var(--blue-dark); position: relative; overflow: hidden; }
.videos-section::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%3Cpath d='M0 0h80v80H0z'/%3E%3C/g%3E%3C/svg%3E");
}
.videos-section .section-title { color: white; }
.videos-section .section-desc { color: rgba(255,255,255,.65); }
.videos-section .section-eyebrow { color: var(--gold); }
.videos-section .section-eyebrow::before,
.videos-section .section-eyebrow::after { background: var(--gold); }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.video-card {
  background: rgba(255,255,255,.06); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1); transition: var(--transition);
}
.video-card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 12px 40px rgba(200,16,46,.2); }
.video-embed-wrap {
  position: relative; padding-bottom: 56.25%;
  height: 0; overflow: hidden;
}
.video-embed-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-thumb {
  position: relative; aspect-ratio: 16/9;
  background: var(--blue-mid); cursor: pointer;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.video-thumb-img { width: 100%; height: 100%; object-fit: cover; }
.video-play-btn {
  position: absolute;
  width: 60px; height: 60px;
  background: var(--red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem; box-shadow: 0 4px 24px rgba(200,16,46,.5);
  transition: var(--transition);
}
.video-thumb:hover .video-play-btn { transform: scale(1.15); background: var(--red-dark); }
.video-card-body { padding: 20px; }
.video-card-body h3 { color: white; font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; line-height: 1.4; }
.video-card-body p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.5; }

/* ========== DONATE BANNER ========== */
.donate-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #E63950 100%);
  color: white; padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.donate-banner::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,.02) 30px, rgba(255,255,255,.02) 60px);
}
.donate-banner-inner { position: relative; z-index: 1; }
.donate-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 16px; }
.donate-banner p { font-size: 1.1rem; opacity: .88; max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }
.donate-amounts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.amount-pill {
  background: rgba(255,255,255,.18); border: 2px solid rgba(255,255,255,.4);
  color: white; padding: 10px 24px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: var(--transition);
}
.amount-pill:hover, .amount-pill.active { background: white; color: var(--red); border-color: white; }
.btn-white {
  background: white; color: var(--red);
  padding: 16px 40px; border-radius: 50px;
  font-weight: 800; font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--transition); border: none; cursor: pointer;
  text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.3); }

/* ========== TESTIMONIALS / SUPPORTERS ========== */
.supporters-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.supporter-card {
  background: white; border-radius: 16px; padding: 28px;
  box-shadow: var(--shadow-sm); border-top: 3px solid var(--blue);
  transition: var(--transition);
}
.supporter-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--red); }
.supporter-quote { color: var(--red); font-size: 3rem; line-height: .8; font-family: Georgia, serif; margin-bottom: 8px; }
.supporter-card p { color: var(--gray-600); font-style: italic; line-height: 1.7; margin-bottom: 20px; font-size: .95rem; }
.supporter-info { display: flex; align-items: center; gap: 14px; }
.supporter-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.supporter-info strong { display: block; font-size: .95rem; color: var(--blue-dark); }
.supporter-info span { font-size: .8rem; color: var(--red); font-weight: 600; }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-card {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: white; border-radius: 20px; padding: 40px;
}
.contact-info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 16px; }
.contact-info-card p { opacity: .8; line-height: 1.7; margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.contact-item-icon {
  width: 46px; height: 46px; background: rgba(255,255,255,.12);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem; color: var(--gold);
}
.contact-item strong { display: block; font-size: .85rem; opacity: .65; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-item span { font-size: .95rem; }
.contact-social { display: flex; gap: 10px; margin-top: 30px; }
.contact-social a {
  width: 40px; height: 40px; background: rgba(255,255,255,.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: white; transition: var(--transition);
}
.contact-social a:hover { background: var(--red); }

.contact-form { background: white; border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--blue-dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px; font-family: 'Outfit', sans-serif;
  font-size: .95rem; color: var(--gray-800);
  transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,48,135,.08); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ========== DONATE PAGE ========== */
.donate-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 80px 0 100px; text-align: center; position: relative; overflow: hidden;
}
.donate-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: white; margin-bottom: 14px; }
.donate-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.donate-main { margin-top: -50px; position: relative; z-index: 10; padding-bottom: 80px; }
.donate-card { background: white; border-radius: 24px; box-shadow: var(--shadow-lg); padding: 48px 40px; max-width: 680px; margin: 0 auto; }
.donate-card h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--blue-dark); margin-bottom: 8px; }
.donate-card .subtitle { color: var(--gray-600); margin-bottom: 32px; }
.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.amount-btn {
  padding: 14px; border: 2px solid var(--gray-200); border-radius: 12px;
  background: white; cursor: pointer; font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 1rem; color: var(--gray-800);
  transition: var(--transition); text-align: center;
}
.amount-btn:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,48,135,.04); }
.amount-btn.selected { border-color: var(--red); background: rgba(200,16,46,.06); color: var(--red); }
.amount-btn .naira { display: block; font-size: .75rem; font-weight: 400; color: var(--gray-400); margin-top: 2px; }
.custom-amount { position: relative; margin-bottom: 24px; }
.custom-amount .currency-sym {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-weight: 700; color: var(--gray-600); font-size: 1.1rem;
}
.custom-amount input { padding-left: 38px !important; }
.gateway-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.gateway-btn {
  border: 2px solid var(--gray-200); border-radius: 12px; padding: 16px;
  cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: var(--transition); background: white;
}
.gateway-btn:hover { border-color: var(--blue-mid); }
.gateway-btn.selected { border-color: var(--blue); background: rgba(0,48,135,.04); }
.gateway-btn img { height: 30px; object-fit: contain; }
.gateway-btn span { font-size: .8rem; color: var(--gray-600); font-weight: 500; }
.secure-badge { display: flex; align-items: center; gap: 8px; color: var(--gray-400); font-size: .8rem; justify-content: center; margin-top: 16px; }
.secure-badge i { color: var(--blue); }

/* ========== ADMIN QUICK STYLES ========== */
.admin-notice { padding: 10px 20px; background: var(--blue-dark); color: white; text-align: center; font-size: .85rem; }
.admin-notice a { color: var(--gold); text-decoration: underline; }

/* ========== FOOTER ========== */
.site-footer { background: var(--blue-dark); color: rgba(255,255,255,.8); padding-top: 0; position: relative; }
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 60px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px; padding: 50px 20px 50px; max-width: 1200px; margin: 0 auto;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Anton', sans-serif; font-size: 1.1rem;
  letter-spacing: 2px; color: white; margin-bottom: 16px;
}
.logo-emblem-sm {
  background: var(--red); border-radius: 6px;
  padding: 4px 8px; display: flex; gap: 3px;
  font-size: .8rem;
}
.logo-emblem-sm span:first-child { color: white; font-weight: 900; }
.logo-emblem-sm span:last-child { color: var(--gold); }
.footer-brand p { font-size: .9rem; line-height: 1.7; opacity: .7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-links-col h4, .footer-contact-col h4, .footer-newsletter-col h4 {
  font-size: 1rem; font-weight: 700; color: white;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul li a {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; opacity: .7; transition: var(--transition);
}
.footer-links-col ul li a i { font-size: .7rem; color: var(--red); }
.footer-links-col ul li a:hover { opacity: 1; color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--red); width: 16px; }
.footer-contact-item span { font-size: .9rem; opacity: .75; }
.footer-donate-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white; padding: 10px 22px;
  border-radius: 50px; font-weight: 600; font-size: .9rem;
  margin-top: 14px; transition: var(--transition);
}
.footer-donate-btn:hover { background: white; color: var(--red); }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: white; padding: 10px 14px; border-radius: 8px;
  font-family: 'Outfit', sans-serif; font-size: .9rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: var(--red); }
.newsletter-form button {
  background: var(--red); color: white; border: none;
  padding: 11px; border-radius: 8px; font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: .9rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--red-dark); }
.newsletter-msg { font-size: .8rem; margin-top: 8px; min-height: 18px; }
.newsletter-msg.success { color: #4ade80; }
.newsletter-msg.error { color: #f87171; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; text-align: center; }
.footer-bottom p { font-size: .82rem; opacity: .5; }
.footer-disclaimer { margin-top: 4px !important; font-size: .75rem !important; opacity: .35 !important; }

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; background: var(--red);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 9999; font-size: .9rem;
  box-shadow: 0 4px 18px rgba(200,16,46,.4);
  opacity: 0; transform: translateY(20px);
  transition: var(--transition); pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ========== ANIMATIONS ========== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity .8s ease; }
.fade-in.visible { opacity: 1; }

/* ========== MODALS ========== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: white; border-radius: 20px; padding: 40px; max-width: 520px; width: 100%; position: relative; transform: scale(.95); transition: transform .3s; }
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: none; background: var(--gray-100); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); }
.modal-close:hover { background: var(--red); color: white; }

/* ========== ALERT ========== */
.alert { padding: 14px 18px; border-radius: 10px; font-size: .95rem; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .hero-right { display: none; }
  .hero-container { max-width: 700px; }
  .about-grid { gap: 40px; }
}
@media (max-width: 768px) {
  .topbar-left span:last-child { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    background: white; flex-direction: column; padding: 20px;
    box-shadow: var(--shadow-md); gap: 4px;
    display: none; border-bottom: 3px solid var(--red);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { width: 100%; padding: 12px 16px; border-radius: 8px; }
  .navbar { position: sticky; }
  .about-grid { grid-template-columns: 1fr; }
  .about-accent-box { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .donate-card { padding: 28px 20px; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .gateway-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
