/* ============================================================
   Chitambala Mwewa — UPND Lusaka 2026
   Your design system (Inter + Playfair, white bg, radius:28px)
   + my countdown, ticker, dual logos, modal, footer
   ============================================================ */

:root {
  --red:      #e31b23;
  --red-dark: #9f1117;
  --yellow:   #ffcf01;
  --yellow-d: #c9a200;
  --green:    #009a44;
  --black:    #111111;
  --white:    #ffffff;
  --cream:    #fff8de;
  --muted:    #666666;
  --line:     rgba(17,17,17,.1);
  --shadow:   0 24px 70px rgba(0,0,0,.16);
  --radius:   28px;
  --trans:    .3s ease;
}

/* ---- RESET (your exact system) ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2 { font-family: 'Playfair Display', serif; line-height: 1.02; }
h1 { font-size: clamp(42px, 6.5vw, 84px); }
h1 span { color: var(--yellow); }

/* Hero two-tier headline — tagline hook above main h1 */
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.4vw, 26px);
  font-style: italic;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  opacity: .88;
}
h2 { font-size: clamp(32px, 4vw, 54px); margin-bottom: 18px; }
.container { width: min(1180px, 92%); margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: 999px; padding: 14px 28px;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800; font-size: 15px; cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,.2); }
.btn-yellow  { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--white); }
.btn-red     { background: var(--red);    color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.65);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* ============================================================
   HEADER — your design exactly
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4%;
  background: linear-gradient(180deg, rgba(0,0,0,.62), transparent);
  color: var(--white);
  transition: var(--trans);
}

.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  color: var(--black);
  border-bottom: 2.5px solid var(--red);
  padding-block: 10px;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; }

.brand-logo-ring {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--white); border: 2.5px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 3px; flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(255,207,1,.3);
}

.brand-logo-ring img { width: 100%; height: 100%; object-fit: contain; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 18px; }
.brand-text small {
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--yellow); font-weight: 700;
}
.site-header.scrolled .brand-text small { color: var(--green); }

/* Nav links — your hover underline system */
.site-nav { display: flex; align-items: center; gap: 26px; font-weight: 800; font-size: 14px; }
.site-nav a { position: relative; transition: color var(--trans); }
.site-nav a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -7px;
  width: 0; height: 2.5px; background: var(--yellow);
  border-radius: 2px; transition: width .3s;
}
.site-nav a:hover::after { width: 100%; }
.site-header.scrolled .site-nav a:not(.nav-cta)::after { background: var(--red); }

.nav-cta {
  background: var(--yellow); color: var(--black) !important;
  padding: 10px 20px; border-radius: 999px; font-weight: 800;
  transition: background var(--trans), transform var(--trans);
}
.nav-cta:hover { background: var(--red); color: var(--white) !important; transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none; border: none; background: var(--yellow);
  width: 46px; height: 46px; border-radius: 14px;
  font-size: 22px; font-weight: 900; cursor: pointer; color: var(--black);
}

/* Mobile nav — your system */
@media (max-width: 950px) {
  .site-nav {
    position: fixed; top: 78px; left: 4%; right: 4%;
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); color: var(--black);
    border-radius: 22px; padding: 12px; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px; color: var(--black); border-radius: 10px; }
  .site-nav a:hover { background: var(--cream); }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin: 4px 0; }
  .nav-toggle { display: block; }
}

/* ============================================================
   HERO — your slideshow system + my headline & countdown
   ============================================================ */
.hero {
  min-height: 100vh; position: relative;
  display: grid; align-items: center; overflow: hidden; color: var(--white);
}

/* Your exact bg slider */
.hero-bg-slider {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--red-dark), #3a0002);
  z-index: 0;
}

.hero-bg-slider .bg-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.2s ease, transform 7s ease;
}

.hero-bg-slider .bg-slide.active { opacity: 1; transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 70% 36%, rgba(255,207,1,.16), transparent 28%),
    linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.42) 55%, rgba(0,0,0,.74) 100%);
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 52px; align-items: center;
  padding-top: 100px; padding-bottom: 60px;
}

/* My eyebrow badge */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,207,1,.4);
  background: rgba(255,207,1,.08);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 20px;
}

.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); display: inline-block; }

.hero-text {
  max-width: 540px; font-size: 17px;
  color: rgba(255,255,255,.82); margin: 24px 0 32px; font-weight: 300;
}

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

/* My countdown */
.countdown { }
.cd-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 12px;
}
.cd-row { display: flex; align-items: center; gap: 8px; }
.cd-box {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(0,0,0,.35); border: 1.5px solid rgba(255,207,1,.4);
  border-radius: 8px; padding: 10px 14px; min-width: 62px;
}
.cd-n { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--yellow); line-height: 1; }
.cd-l { font-size: 10px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.cd-sep { font-size: 24px; font-weight: 700; color: var(--yellow); padding-bottom: 14px; }

/* Your leader card — glassmorphism */
.leader-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(18px);
  padding: 14px; border-radius: 36px; box-shadow: var(--shadow);
}

.leader-image-wrap {
  height: 460px; border-radius: 26px;
  overflow: hidden; background: rgba(255,255,255,.1);
  position: relative;
}

/* Slideshow slides inside leader card */
.leader-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1), transform 8s ease;
  transform: scale(1.06);
}
.leader-slide.active {
  opacity: 1;
  transform: scale(1);
}
.leader-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* Dot indicators */
.leader-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 3;
}
.leader-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: 1.5px solid rgba(255,255,255,.7);
  cursor: pointer;
  transition: background .3s, transform .3s, width .3s;
}
.leader-dot.active {
  background: var(--yellow);
  border-color: var(--yellow);
  width: 22px;
  border-radius: 4px;
}

.leader-card-foot {
  display: flex; align-items: center; gap: 12px; padding: 14px 8px 4px;
}

/* My dual logos */
.dual-logos { display: flex; gap: 8px; flex-shrink: 0; }

.logo-chip {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 2.5px solid var(--yellow);
  overflow: hidden; padding: 3px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.logo-chip img { width: 100%; height: 100%; object-fit: contain; }

.leader-meta { display: flex; gap: 10px; align-items: flex-start; flex: 1; }

.pulse-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--yellow); box-shadow: 0 0 0 6px rgba(255,207,1,.18);
  flex-shrink: 0; margin-top: 6px;
}

.leader-name { font-size: 15px; font-weight: 800; color: var(--white); }
.leader-seat { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 2px; }

/* ============================================================
   HERO TRUST PANEL — compact premium campaign highlights
   ============================================================ */
.trust-strip { color: var(--white); }

.hero-trust-panel {
  width: min(100%, 620px);
  margin: 0 0 30px;
  padding: 13px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(215,25,32,.24), rgba(0,154,68,.18)),
    rgba(0,0,0,.36);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 20px 55px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
}

.trust-item {
  min-height: 82px;
  padding: 14px 12px;
  border-radius: 17px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-left: 3px solid var(--yellow);
  transition: transform var(--trans), border-color var(--trans), background var(--trans);
}
.trust-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255,207,1,.52);
  background: rgba(255,255,255,.1);
}
.trust-item strong {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.trust-item span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.25;
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

/* ============================================================
   TICKER — my addition
   ============================================================ */
.ticker {
  background: var(--yellow); overflow: hidden; white-space: nowrap;
  padding: 10px 0; border-top: 2px solid var(--yellow-d); border-bottom: 2px solid var(--yellow-d);
}

.ticker-track {
  display: inline-block;
  animation: tickMove 40s linear infinite;
  font-size: 12px; font-weight: 900; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red-dark);
}

@keyframes tickMove {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ============================================================
   SHARED SECTIONS
   ============================================================ */
.section { padding: 108px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.section-head p { color: var(--muted); font-size: 17px; }
.section-copy p { color: var(--muted); font-size: 16px; line-height: 1.8; }

/* Eyebrow — your system */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; text-transform: uppercase; letter-spacing: .2em;
  font-weight: 900; margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 38px; height: 3px; background: currentColor; border-radius: 999px; }
.eyebrow-red    { color: var(--red); }
.eyebrow-yellow { color: var(--yellow); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.reverse { grid-template-columns: 1.05fr .95fr; }

/* ============================================================
   ABOUT
   ============================================================ */
/* Credential cards — dark icon stat style */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.cred-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .28s cubic-bezier(.4,0,.2,1),
              box-shadow .28s cubic-bezier(.4,0,.2,1);
  cursor: default;
}

.cred-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.cred-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.cred-icon--red    { background: var(--red);    box-shadow: 0 4px 12px rgba(227,27,35,.28); }
.cred-icon--green  { background: var(--green);  box-shadow: 0 4px 12px rgba(0,154,68,.28); }
.cred-icon--yellow { background: var(--yellow-d); box-shadow: 0 4px 12px rgba(201,162,0,.28); }

.cred-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cred-body strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
}

.cred-body span {
  font-size: 11px;
  color: rgba(0,0,0,.46);
  font-weight: 500;
  line-height: 1.3;
}


/* Your image stack */
.image-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.image-stack img { height: 440px; width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-stack img:first-child { margin-top: 54px; }

/* ============================================================
   AGENDA — your dark cards, my SVG icons
   ============================================================ */
.agenda {
  background: var(--black); color: var(--white);
  position: relative; overflow: hidden;
}
.agenda::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(215,25,32,.35), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(255,207,1,.12), transparent 28%);
}
.agenda .container { position: relative; }

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

.agenda-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid var(--red);
  border-radius: var(--radius); padding: 28px 24px;
  min-height: 250px; position: relative; overflow: hidden;
}
.agenda-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.11);
  border-top-color: var(--yellow);
  box-shadow: 0 28px 60px rgba(0,0,0,.2);
}

.card-num {
  position: absolute; top: 10px; right: 16px;
  font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 900;
  color: var(--red);
  opacity: 1;
  line-height: 1;
  transition: color var(--trans);
}
.agenda-card:hover .card-num { color: var(--yellow); }

.card-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; transition: background var(--trans);
}
.agenda-card:hover .card-icon { background: var(--yellow); }
.agenda-card:hover .card-icon svg { fill: var(--black); }
.agenda-card:hover .card-icon path { stroke: var(--black); }

.agenda-card h3 { font-size: 20px; color: var(--white); margin-bottom: 10px; }
.agenda-card p  { color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.7; }

/* ============================================================
   ACHIEVEMENTS
   ============================================================ */
/* ── UPND Stat Strip ─────────────────────────────────────── */
.ach-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg,
    #e31b23 0%,
    #9f1117 28%,
    #1a1a1a 52%,
    #004d22 78%,
    #009a44 100%);
  box-shadow: 0 24px 64px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}

/* subtle noise texture overlay */
.ach-stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

.ach-s {
  position: relative; z-index: 1;
  padding: 32px 20px 28px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: background var(--trans);
}

/* vertical separator between columns */
.ach-s + .ach-s {
  border-left: 1px solid rgba(255,255,255,.12);
}

.ach-s:hover { background: rgba(255,255,255,.06); }

.ach-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  backdrop-filter: blur(4px);
}

.ach-s span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.01em;
}

.ach-divider {
  width: 36px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255,207,1,.6);
}

.ach-s p {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Your feature gallery */
.feature-gallery {
  height: 520px; border-radius: var(--radius);
  overflow: hidden; position: relative;
  background: #fff3f3; box-shadow: var(--shadow);
}
.feature-gallery .auto-card { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.feature-gallery .auto-card.active { opacity: 1; }
.feature-gallery img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   GALLERY — your system
   ============================================================ */
.gallery {
  background: #ffffff;
  position: relative;
}
.gallery::before { display: none; }
.gallery .section-head h2,
.gallery .section-head p { color: var(--black); }
.gallery .eyebrow-yellow { color: var(--yellow-d); }
.gallery .eyebrow-yellow::before { background: var(--yellow-d); }

.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; min-height: 230px; }
.gallery-grid img {
  width: 100%; height: 260px; object-fit: cover;
  border-radius: 18px;
  box-shadow:
    0 2px 4px rgba(0,0,0,.04),
    0 8px 16px rgba(0,0,0,.08),
    0 24px 48px rgba(0,0,0,.10),
    0 48px 80px rgba(0,0,0,.06);
  transition: transform .32s cubic-bezier(.4,0,.2,1), box-shadow .32s cubic-bezier(.4,0,.2,1);
}
.gallery-grid img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 4px 8px rgba(0,0,0,.06),
    0 16px 32px rgba(0,0,0,.12),
    0 40px 72px rgba(0,0,0,.14),
    0 64px 100px rgba(0,0,0,.08);
}

/* ── Gallery Lightbox ──────────────────────────────────────── */
.lb-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lb-overlay.open { opacity: 1; visibility: visible; }

.lb-stage {
  position: relative;
  max-width: 92vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}

.lb-img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  transform: scale(.94);
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .3s ease;
  opacity: 0;
}
.lb-overlay.open .lb-img { transform: scale(1); opacity: 1; }

.lb-close {
  position: fixed; top: 20px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.2);
  color: #fff; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, transform .2s;
  z-index: 2001;
}
.lb-close:hover { background: var(--red); transform: scale(1.08); }

.lb-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.18);
  color: #fff; font-size: 32px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, transform .2s;
  z-index: 2001; user-select: none;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-arrow:hover { background: var(--red); transform: translateY(-50%) scale(1.08); }

.lb-counter {
  position: absolute; bottom: -36px; left: 50%; transform: translateX(-50%);
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5);
  letter-spacing: .06em; white-space: nowrap;
}

/* Branded placeholder cards when no gallery images exist */
.gallery-ph-card {
  height: 260px; border-radius: 18px;
  background: #f8f8f8;
  border: 1.5px solid rgba(0,0,0,.07);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: rgba(0,0,0,.3);
  font-size: 13px; font-weight: 600;
  letter-spacing: .04em; text-align: center;
  box-shadow:
    0 2px 4px rgba(0,0,0,.04),
    0 8px 16px rgba(0,0,0,.06);
  transition: box-shadow .28s, transform .28s;
  cursor: default;
}
.gallery-ph-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 24px rgba(0,0,0,.08),
    0 24px 48px rgba(0,0,0,.10);
}
.gallery-ph-card svg { opacity: .25; color: #000; }

/* ============================================================
   NEWS — your card, my modal trigger
   ============================================================ */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.news-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--white);
  box-shadow: 0 14px 40px rgba(0,0,0,.07);
  cursor: pointer;
}
.news-card:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(0,0,0,.14); }

.news-img-wrap { height: 210px; overflow: hidden; background: #ffe8e8; }
.news-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.news-card:hover .news-img-wrap img { transform: scale(1.04); }

.news-body { padding: 22px; }
.news-body small { font-weight: 900; color: var(--red); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; display: block; margin-bottom: 8px; }
.news-body h3 { font-size: 19px; line-height: 1.25; margin-bottom: 10px; }
.news-body p  { color: var(--muted); font-size: 14px; margin-bottom: 16px; }

.news-btn {
  background: var(--red); color: var(--white); border: none;
  padding: 9px 18px; border-radius: 999px; font-size: 13px; font-weight: 800;
  cursor: pointer; font-family: Inter, system-ui, sans-serif;
  transition: background var(--trans); width: 100%;
}
.news-btn:hover { background: var(--red-dark); }

/* ============================================================
   CONTACT — your layout, my real form
   ============================================================ */
.contact {
  padding: 108px 0;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
}

.contact-card {
  display: grid; grid-template-columns: .92fr 1.08fr; gap: 52px;
  align-items: start;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 38px; padding: 48px; box-shadow: var(--shadow);
}

.contact-left h2 { color: var(--white); }
.contact-left p  { color: rgba(255,255,255,.78); font-size: 16px; margin-bottom: 24px; }

.contact-details { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.cd-row-item { display: flex; align-items: flex-start; gap: 12px; }
.cd-row-item span { font-size: 20px; flex-shrink: 0; }
.cd-row-item b   { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.cd-row-item p, .cd-row-item a { font-size: 15px; color: rgba(255,255,255,.9); font-weight: 600; }
.cd-row-item a:hover { color: var(--yellow); }

.social-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.soc-btn {
  background: rgba(255,255,255,.12); color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 10px 20px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  transition: background var(--trans), border-color var(--trans);
}
.soc-btn:hover { background: rgba(255,255,255,.22); border-color: var(--white); }

/* Form */
.contact-form { display: grid; gap: 14px; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--white); margin-bottom: 4px; }

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px; padding: 14px 16px;
  background: rgba(255,255,255,.94);
  font: inherit; font-size: 14px; outline: none;
  transition: border-color var(--trans); color: var(--black);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--yellow); }
.contact-form textarea { resize: vertical; min-height: 88px; }

.f-ok  { display:none; background:rgba(74,222,128,.12); border:1px solid rgba(74,222,128,.3); color:#4ade80; padding:12px 16px; border-radius:10px; font-size:14px; }
.f-err { display:none; background:rgba(248,113,113,.12); border:1px solid rgba(248,113,113,.3); color:#f87171; padding:12px 16px; border-radius:10px; font-size:14px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--black); border-top: 3px solid var(--red); }

.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 48px; padding: 52px 0 40px; align-items: start;
}

.footer-brand { display: flex; align-items: center; gap: 14px; }

.footer-logo-ring {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 4px; flex-shrink: 0;
}
.footer-logo-ring img { width: 100%; height: 100%; object-fit: contain; }

.footer-name { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--white); font-weight: 700; margin-bottom: 4px; }
.footer-tag  { font-size: 12px; color: var(--yellow); font-weight: 600; letter-spacing: 1px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-h { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.6); transition: color var(--trans); }
.footer-links a:hover { color: var(--yellow); }

.footer-election { text-align: right; }
.fe-label  { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.fe-date   { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 900; color: var(--yellow); }
.fe-sub    { font-size: 12px; color: var(--white); margin-top: 4px; font-weight: 600; }
.fe-nation { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.22); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 1001;
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 36px rgba(37,211,102,.38);
  transition: transform var(--trans), box-shadow var(--trans);
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 16px 44px rgba(37,211,102,.5); }
.wa-float span { display: none; }

/* ============================================================
   NEWS MODAL
   ============================================================ */
.modal-bg {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.82); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-bg.open { display: flex; }

.modal-box {
  background: var(--white); border-radius: 28px;
  max-width: 680px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; box-shadow: 0 28px 80px rgba(0,0,0,.5);
  animation: mIn .25s ease;
}

@keyframes mIn {
  from { opacity:0; transform: scale(.95) translateY(12px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: fixed; top: 16px; right: 16px; z-index: 10000;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--red); color: var(--red);
  font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 2px 12px rgba(0,0,0,.3);
  transition: background var(--trans), color var(--trans);
}
.modal-close:hover { background: var(--red); color: var(--white); }

.modal-img-area {
  width: 100%; height: 260px;
  background: var(--red-dark);
  border-radius: 28px 28px 0 0; overflow: hidden;
}
.modal-img-area img { width: 100%; height: 100%; object-fit: cover; }

.modal-img-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: rgba(255,255,255,.35); font-size: 13px; text-align: center;
}
.modal-img-ph span { font-size: 40px; opacity: .3; }

.modal-content { padding: 28px 32px 32px; }
.modal-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.modal-date  { font-size: 12px; color: #666; }
.modal-badge { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 12px; border-radius: 999px; background: var(--red); color: var(--white); }
.modal-title { font-family: 'Playfair Display', serif; font-size: clamp(20px,3vw,28px); font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: 16px; }
.modal-text  { font-size: 15px; color: #333; line-height: 1.85; margin-bottom: 28px; }
.modal-cta   { display: inline-block; }

/* ============================================================
   SCROLL REVEAL — your exact system
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: .8s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 950px) {
  .hero-grid, .split, .split.reverse, .contact-card { grid-template-columns: 1fr; }
  .leader-image-wrap { height: 360px; }
  .trust-grid, .cards-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-election { text-align: left; }
  .ach-stats { grid-template-columns: 1fr; }
  .ach-s + .ach-s { border-left: none; border-top: 1px solid rgba(255,255,255,.12); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  h1 { font-size: 40px; }
  .section { padding: 72px 0; }
  .trust-grid, .cards-grid, .news-grid, .gallery-grid, .cred-grid { grid-template-columns: 1fr; }
  .image-stack { grid-template-columns: 1fr; }
  .image-stack img { height: 280px; margin: 0 !important; }
  .contact-card { padding: 28px; }
  .hero-actions .btn { width: 100%; }
  .cd-box { min-width: 50px; padding: 8px 10px; }
  .cd-n { font-size: 22px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { right: 16px; bottom: 16px; }
  .modal-content { padding: 20px; }
}

/* ============================================================
   REELS SECTION — Premium corporate campaign video highlights
   ============================================================ */
.reels-section {
  position: relative;
  padding: 96px 0 104px;
  background: #080808;
  overflow: hidden;
}

.reels-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(227,27,35,.1) 0%, transparent 18%, transparent 72%, rgba(0,89,60,.12) 100%),
    radial-gradient(circle at 16% 28%, rgba(227,27,35,.22), transparent 34%),
    radial-gradient(circle at 84% 20%, rgba(255,207,1,.16), transparent 32%),
    radial-gradient(circle at 48% 90%, rgba(0,89,60,.22), transparent 42%);
  pointer-events: none;
}

.reels-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  opacity: .35;
}

.reels-wrap { position: relative; z-index: 1; }

.reels-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.reels-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 14px;
  letter-spacing: -.03em;
}

.reels-sub {
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  color: rgba(255,255,255,.62);
  line-height: 1.75;
  font-weight: 300;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 44px;
}

.reel-card {
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0,0,0,.32);
  transition: border-color .3s, transform .3s, box-shadow .3s, background .3s;
}

.reel-card:hover {
  border-color: rgba(255,207,1,.45);
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
  box-shadow: 0 30px 90px rgba(0,0,0,.48);
}

.reel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.reel-frame iframe,
.reel-frame .reel-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.reel-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(0,0,0,.18), rgba(0,0,0,.66)),
    radial-gradient(circle at 24% 24%, rgba(255,207,1,.24), transparent 26%),
    linear-gradient(135deg, #3a0305 0%, #0d0d0d 52%, #071b12 100%);
  cursor: pointer;
}

/* Active reel — has a real video URL, brighter presence */
.reel-placeholder.reel-has-video {
  background:
    linear-gradient(135deg, rgba(0,0,0,.08), rgba(0,0,0,.52)),
    radial-gradient(circle at 20% 20%, rgba(255,207,1,.32), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(227,27,35,.28), transparent 30%),
    linear-gradient(135deg, #5a0408 0%, #1a1a1a 50%, #0a2a18 100%);
}

.reel-placeholder.reel-has-video .reel-ph-title {
  color: var(--yellow);
}

.reel-placeholder::before { display: none; }

.reel-ph-inner { display: none; }

.reel-play-icon { display: none; }

.reel-placeholder:hover .reel-play-icon { display: none; }

.reel-ph-title { display: none; }

.reel-ph-sub { display: none; }

.reel-info {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.reel-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  width: fit-content;
}

.reel-label {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.01em;
}

.reel-desc {
  font-size: 13px;
  color: rgba(255,255,255,.58);
  line-height: 1.6;
  font-weight: 300;
}

.reel-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255,255,255,.42);
  margin-top: 2px;
}

.reel-meta span + span::before {
  content: "•";
  margin-right: 9px;
  color: var(--yellow);
}

.reel-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,207,1,.08);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  border: 1.5px solid rgba(255,207,1,.34);
  padding: 9px 16px;
  border-radius: 999px;
  margin-top: 4px;
  width: fit-content;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}

.reel-watch-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateX(3px);
}

.reel-watch-btn svg { transition: fill .25s; }
.reel-watch-btn:hover svg { fill: var(--black); }

/* ── Premium Social Follow Panel ──────────────────────────── */
.social-follow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 40px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
  flex-wrap: wrap;
}

.social-follow-copy { flex: 1; min-width: 220px; }

.social-follow-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.social-follow-sub {
  font-size: 14px;
  color: rgba(255,255,255,.52);
  font-weight: 400;
  line-height: 1.5;
}

.social-follow-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, filter .2s;
  white-space: nowrap;
}

.social-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.12);
}

/* YouTube — brand red */
.social-btn--yt {
  background: #FF0000;
  box-shadow: 0 8px 24px rgba(255,0,0,.32);
}
.social-btn--yt:hover { box-shadow: 0 12px 32px rgba(255,0,0,.44); }

/* Facebook — brand blue */
.social-btn--fb {
  background: #1877F2;
  box-shadow: 0 8px 24px rgba(24,119,242,.32);
}
.social-btn--fb:hover { box-shadow: 0 12px 32px rgba(24,119,242,.44); }

/* TikTok — dark with gradient border */
.social-btn--tt {
  background: #010101;
  border: 1.5px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  position: relative;
  overflow: hidden;
}
.social-btn--tt::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(105,201,208,.15), rgba(254,44,85,.15));
  pointer-events: none;
}
.social-btn--tt:hover { box-shadow: 0 12px 32px rgba(254,44,85,.28); border-color: rgba(254,44,85,.4); }

@media (max-width: 760px) {
  .social-follow { flex-direction: column; text-align: center; padding: 28px 20px; }
  .social-follow-btns { justify-content: center; }
}

@media (max-width: 1200px) {
  .reels-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .reels-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reel-card { display: block; }
}

@media (max-width: 620px) {
  .reels-section { padding: 78px 0 84px; }
  .reels-head { margin-bottom: 30px; }
  .reels-grid { grid-template-columns: 1fr; gap: 18px; }
  .reel-card { display: block; }
  .reel-info { padding: 17px 18px 20px; }
  .reel-label { font-size: 18px; }
  
}

/* ============================================================
   GET INVOLVED — Premium booking-style section
   White background, slide-up contact cards, 2-col form
   ============================================================ */

.gi-section {
  background: #f4f6f8;
  padding: 108px 0;
}

.gi-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: start;
}

/* ---- LEFT ---- */
.gi-left { }

.gi-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  color: #0d1f2d;
  line-height: 1.08;
  margin-bottom: 16px;
}

.gi-sub {
  font-size: 16px;
  color: #556070;
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 400px;
}

/* Contact cards */
.gi-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gi-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e4e8ec;
  border-radius: 14px;
  padding: 18px 22px;
  cursor: pointer;
  /* Slide-up on hover */
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: #c8d0d8;
}

/* Solid color icon circles — vector SVGs */
.gi-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gi-icon-phone    { background: var(--red); }
.gi-icon-email    { background: #1565c0; }
.gi-icon-location { background: var(--green); }

.gi-card-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gi-card-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #90a0b0;
}

.gi-card-value {
  font-size: 15px;
  font-weight: 700;
  color: #0d1f2d;
  transition: color 0.2s;
}

a.gi-card-value:hover { color: var(--red); }

/* ---- RIGHT — Form card ---- */
.gi-right { }

.gi-form-card {
  background: #ffffff;
  border: 1px solid #e4e8ec;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

/* 2-column grid inside form */
.gi-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.gi-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gi-field--full {
  grid-column: 1 / -1;
}

.gi-field label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7a8a9a;
}

.gi-field input,
.gi-field textarea {
  border: 1.5px solid #dde2e8;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  color: #0d1f2d;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.gi-field input::placeholder,
.gi-field textarea::placeholder { color: #aab4be; }

.gi-field input:focus,
.gi-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227,27,35,0.08);
}

.gi-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Select dropdown */
.gi-select-wrap {
  position: relative;
}

.gi-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 1.5px solid #dde2e8;
  border-radius: 10px;
  padding: 12px 40px 12px 14px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  color: #0d1f2d;
  background: #ffffff;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gi-select-wrap select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227,27,35,0.08);
}

.gi-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #90a0b0;
  pointer-events: none;
  line-height: 1;
}

/* Action buttons */
.gi-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.gi-btn-wa,
.gi-btn-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.gi-btn-wa {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.gi-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  filter: brightness(1.05);
}

.gi-btn-email {
  background: var(--yellow);
  color: #1a1a1a;
  box-shadow: 0 4px 16px rgba(255,207,1,0.3);
}

.gi-btn-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,207,1,0.4);
  filter: brightness(1.05);
}

.gi-form-note {
  font-size: 12px;
  color: #a0b0c0;
  text-align: center;
  line-height: 1.5;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .gi-wrap { grid-template-columns: 1fr; gap: 48px; }
  .gi-sub  { max-width: 100%; }
}

@media (max-width: 580px) {
  .gi-form-grid { grid-template-columns: 1fr; }
  .gi-btns      { grid-template-columns: 1fr; }
  .gi-form-card { padding: 24px 18px; }
}

/* ============================================================
   REELS FULLSCREEN VIDEO POPUP — added for Watch video buttons
   ============================================================ */
.reel-player-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(227, 27, 35, .22), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(255, 207, 1, .18), transparent 26%),
    rgba(0, 0, 0, .92);
  backdrop-filter: blur(14px);
}

.reel-player-modal.open {
  display: grid;
}

.reel-player-shell {
  position: relative;
  width: min(1180px, 100%);
  height: min(720px, 92vh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 26px;
  background: #050505;
  box-shadow: 0 35px 120px rgba(0, 0, 0, .7);
}

.reel-player-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  background: rgba(0, 0, 0, .5);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: .25s ease;
}

.reel-player-close:hover {
  transform: scale(1.06);
  background: #e31b23;
}

.reel-player-topbar { display: none !important; }

.reel-player-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: #ffcf01;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.reel-player-topbar h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1;
  text-shadow: 0 4px 24px rgba(0,0,0,.6);
}

.reel-player-topbar p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.reel-player-info {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
}

.reel-player-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  border-radius: 0 0 26px 26px;
}

.reel-player-stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  outline: none;
  z-index: 1;
  pointer-events: none;
}

.reel-player-stage iframe {
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

/* ── Custom Video Controls — permanently visible, always on top ── */
.vid-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 48px 18px 18px;
  background: linear-gradient(0deg, rgba(0,0,0,.95) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 1 !important;
  pointer-events: all !important;
}

/* Progress bar */
.vid-progress {
  width: 100%; height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 4px; cursor: pointer;
  position: relative;
}
.vid-progress-fill {
  height: 100%; width: 0%;
  background: var(--red);
  border-radius: 4px;
  pointer-events: none;
  transition: width .1s linear;
}
.vid-progress:hover { height: 7px; }
.vid-progress:hover .vid-progress-fill { background: #ffcf01; }

/* Bottom row */
.vid-bar {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.vid-bar-left, .vid-bar-right {
  display: flex; align-items: center; gap: 10px;
}

/* Control buttons */
.vid-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.vid-btn:hover { background: var(--red); transform: scale(1.1); }
.vid-btn svg { width: 16px; height: 16px; fill: white; }

/* Time display */
.vid-time {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.75);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Volume slider */
.vid-volume {
  width: 70px; height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 4px; cursor: pointer;
}
.vid-volume-fill {
  height: 100%; width: 100%;
  background: rgba(255,255,255,.7);
  border-radius: 4px;
  pointer-events: none;
}

/* Big play button overlay — shown when paused */
.vid-big-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 5; cursor: pointer;
  opacity: 0; transition: opacity .2s;
  pointer-events: none;
}
.vid-big-play.visible {
  opacity: 1;
  pointer-events: all;
}
.vid-big-play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(227,27,35,.85);
  border: 3px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transition: transform .2s, background .2s;
}
.vid-big-play:hover .vid-big-play-btn {
  transform: scale(1.1);
  background: var(--red);
}

.reel-player-empty {
  width: min(760px, 92%);
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 40px 24px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.11), transparent 34%),
    linear-gradient(135deg, rgba(227,27,35,.35), rgba(0,89,60,.2));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
}

.reel-player-bigplay {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 9px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: #e31b23;
  color: #fff;
  font-size: 34px;
  box-shadow: 0 16px 50px rgba(227,27,35,.42);
}

.reel-player-empty h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(22px, 3vw, 36px);
}

.reel-player-empty p {
  max-width: 540px;
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}

.reel-watch-btn {
  border: 1px solid rgba(255, 207, 1, .82);
  cursor: pointer;
  font-family: inherit;
}

@media (max-width: 760px) {
  .reel-player-modal { padding: 10px; }
  .reel-player-shell { height: 94vh; border-radius: 18px; }
  .reel-player-topbar { padding: 20px 64px 18px 18px; }
}

@media (max-width: 620px) {
  .hero-trust-panel { margin-bottom: 26px; padding: 10px; }
  .hero-trust-panel .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust-panel .trust-item { min-height: 76px; padding: 12px 10px; }
}

/* ============================================================
   DONATE & MERCHANDISE SECTION
   ============================================================ */
.donate-section {
  background: var(--black); color: var(--white);
  position: relative; overflow: hidden;
}
.donate-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(215,25,32,.35), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(255,207,1,.12), transparent 28%);
  pointer-events: none;
}
.donate-section .container { position: relative; }
.donate-section .section-head h2,
.donate-section .section-head p { color: var(--white); }
.donate-section .eyebrow-red { color: var(--red); }
.donate-section .eyebrow-red::before { background: var(--red); }

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
  align-items: start;
}

/* ── Shared Card Base ── */
.donate-card, .tshirt-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}

/* ── Donation Card ── */
.donate-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.donate-card-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(227,27,35,.35);
}

.donate-card-title {
  font-size: 20px; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
}
.donate-card-sub { font-size: 13px; color: rgba(255,255,255,.5); }

.donate-form { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 16px; }

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

.donate-field { display: flex; flex-direction: column; gap: 7px; }
.donate-field label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .05em; }

.donate-field input,
.donate-field select,
.donate-field textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
  box-sizing: border-box;
}
.donate-field input::placeholder,
.donate-field textarea::placeholder { color: rgba(255,255,255,.28); }
.donate-field input:focus,
.donate-field select:focus,
.donate-field textarea:focus {
  border-color: var(--yellow);
  background: rgba(255,255,255,.1);
}
.donate-field select option { background: #1a1a1a; color: #fff; }
.donate-field textarea { resize: none; }

.donate-amount-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.donate-currency {
  position: absolute; left: 16px;
  font-size: 16px; font-weight: 800;
  color: var(--yellow);
}
.donate-amount-wrap input { padding-left: 32px; }

.donate-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 4px;
}

.donate-btn {
  flex: 1; min-width: 160px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 20px;
  border-radius: 999px;
  border: none; cursor: pointer;
  font-size: 14px; font-weight: 700;
  color: white; font-family: inherit;
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.donate-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }

.donate-btn--wa  { background: #25d366; box-shadow: 0 6px 20px rgba(37,211,102,.32); }
.donate-btn--email { background: var(--red); box-shadow: 0 6px 20px rgba(227,27,35,.32); }

/* ── T-Shirt Card ── */
.tshirt-img-wrap {
  position: relative;
  height: 280px;
  background: linear-gradient(135deg, #1a0505, #2a0a0a);
  overflow: hidden;
}
.tshirt-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.tshirt-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px; font-weight: 800;
  padding: 5px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .06em;
}
.tshirt-price {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  font-size: 22px; font-weight: 900;
  padding: 8px 18px; border-radius: 12px;
  font-family: 'Playfair Display', serif;
}

.tshirt-info { padding: 24px 28px 28px; }
.tshirt-title { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.tshirt-desc { font-size: 14px; color: rgba(255,255,255,.52); line-height: 1.6; margin-bottom: 20px; }
.tshirt-form { display: flex; flex-direction: column; gap: 16px; }

/* ── Thank You Dialog ── */
.thankyou-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
  backdrop-filter: blur(6px);
}
.thankyou-overlay.open { opacity: 1; visibility: visible; }

.thankyou-box {
  background: var(--black);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  max-width: 400px; width: 90%;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  transform: scale(.92);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.thankyou-overlay.open .thankyou-box { transform: scale(1); }

.thankyou-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 32px rgba(0,154,68,.4);
}
.thankyou-box h3 {
  font-size: 26px; font-weight: 900;
  color: var(--white); margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}
.thankyou-box p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 28px; }
.thankyou-close {
  background: var(--red); color: white;
  border: none; border-radius: 999px;
  padding: 13px 36px; font-size: 15px;
  font-weight: 700; cursor: pointer;
  font-family: inherit;
  transition: filter .2s, transform .2s;
}
.thankyou-close:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* Responsive */
@media (max-width: 900px) {
  .donate-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .donate-form-row { grid-template-columns: 1fr; }
  .donate-card-header { flex-direction: column; text-align: center; }
  .donate-btns { flex-direction: column; }
  .donate-btn { min-width: unset; }
}

/* ── Payment Method Blocks ─────────────────────────────────── */
.donate-methods {
  padding: 0 28px 4px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pay-method {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pay-method:last-child { border-bottom: none; }

.pay-method-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pay-method-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pay-method-icon--mm   { background: linear-gradient(135deg, #e31b23, #ff6b35); }
.pay-method-icon--bank { background: linear-gradient(135deg, #009a44, #006830); }

.pay-method-label {
  font-size: 15px; font-weight: 800;
  color: var(--white); margin-bottom: 2px;
}
.pay-method-sub {
  font-size: 12px; color: rgba(255,255,255,.45); font-weight: 500;
}

.pay-details {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
}

.pay-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  gap: 12px;
}
.pay-detail-row:last-child { border-bottom: none; }

.pay-detail-key {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}

.pay-detail-val {
  font-size: 14px; font-weight: 600;
  color: var(--white);
  text-align: right;
}

.pay-number {
  font-family: 'Courier New', monospace;
  font-size: 15px; font-weight: 800;
  color: var(--yellow);
  letter-spacing: .04em;
}

.pay-steps {
  background: rgba(255,207,1,.05);
  border: 1px solid rgba(255,207,1,.12);
  border-radius: 12px;
  padding: 14px 16px;
}

.pay-steps-title {
  font-size: 11px; font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.pay-steps-list {
  padding-left: 18px;
  display: flex; flex-direction: column; gap: 6px;
  margin: 0;
}
.pay-steps-list li {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}
.pay-steps-list li strong { color: var(--white); }

.pay-divider {
  display: flex; align-items: center;
  gap: 12px; padding: 4px 0;
  color: rgba(255,255,255,.2);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
}
.pay-divider::before, .pay-divider::after {
  content: ''; flex: 1;
  height: 1px; background: rgba(255,255,255,.08);
}

/* Confirmation block */
.donate-confirm {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
}

.donate-confirm-title {
  font-size: 13px; font-weight: 700;
  color: var(--yellow);
  margin-bottom: 18px;
  display: flex; align-items: center;
}

#donateForm { display: flex; flex-direction: column; gap: 14px; }

/* ── News Modal Social Buttons ─────────────────────────────── */
.modal-social-divider {
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 24px 0 20px;
}

.modal-social-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.modal-social-btns .social-btn {
  flex: 1;
  min-width: 130px;
  font-size: 13px;
  padding: 11px 14px;
  justify-content: center;
}

.modal-cta {
  display: inline-flex;
  white-space: nowrap;
}

/* All 4 buttons on one line */
.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.modal-actions .social-btn,
.modal-actions .modal-cta {
  flex: 1;
  min-width: 120px;
  font-size: 12px;
  padding: 11px 12px;
  justify-content: center;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .modal-actions { flex-direction: column; }
  .modal-actions .social-btn,
  .modal-actions .modal-cta { min-width: unset; width: 100%; }
}

/* ── GoFundMe Button ───────────────────────────────────────── */
.gofundme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #02a95c, #00c170);
  color: white;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(2,169,92,.35);
  transition: transform .2s, box-shadow .2s, filter .2s;
  font-family: inherit;
}
.gofundme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(2,169,92,.48);
  filter: brightness(1.08);
}
