/* ============================================================
   CPAG public landing (index.php + top_bar.php)
   v2 redesign — civic hero with gold badge accents
   ============================================================ */

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

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

body{
  background: #0d1f3c;
  color: #fff;
  overflow-x: hidden;
}

/* =========================
   TOP NAV
========================= */
.top-nav{
  background: linear-gradient(180deg, rgba(11,26,52,.92), rgba(9, 20, 40, .85));
  backdrop-filter: blur(10px);
  padding: 12px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 2px solid #e8a824;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
}
.top-nav .logo{
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}
.top-nav .logo:hover{ text-decoration: none; color: #fff; }
.logo-img{
  width: 40px; height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 4px 14px rgba(0,0,0,.3), 0 0 0 2px rgba(232,168,36,.5);
}

.menu-toggle{
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

.top-nav nav{
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-nav nav a,
.top-nav nav button{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 15px;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .15s ease, color .15s ease, transform .12s ease, box-shadow .15s ease;
}
.top-nav nav a:hover,
.top-nav nav button:hover{
  background: rgba(255,255,255,.12);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.top-nav nav a:active,
.top-nav nav button:active{ transform: translateY(0) scale(.97); }

.nav-officials-btn{
  color: #e8a824;
  background: rgba(232,168,36,.12);
  border-color: rgba(232,168,36,.4);
}
.nav-officials-btn:hover{
  background: rgba(232,168,36,.24);
  color: #ffd24a;
}

.nav-link-danger{
  color: #ff8a7a;
  background: rgba(207,58,44,.12);
  border-color: rgba(207,58,44,.4);
}
.nav-link-danger:hover{
  background: rgba(207,58,44,.26);
  color: #ffb3a8;
}

.nav-link-success{
  color: #6ee7a0;
  background: rgba(22,163,74,.12);
  border-color: rgba(22,163,74,.4);
}
.nav-link-success:hover{
  background: rgba(22,163,74,.26);
  color: #a7f3c5;
}

/* =========================
   HERO
========================= */
.hero{
  min-height: calc(100vh - 62px);
  background: url('../images/bg.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
}
.hero .overlay{
  position: absolute;
  top:0; right:0; bottom:0; left:0;
  background: linear-gradient(165deg, rgba(9,20,40,.9) 0%, rgba(13,31,60,.72) 55%, rgba(26,86,196,.5) 100%);
}

/* ============================================================
   ANIMATIONS — entrance ng hero content, scroll-reveal ng
   ibang seksyon
   ============================================================ */
@keyframes fadeUpIn{
  from{ opacity: 0; transform: translateY(24px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes logoPopIn{
  from{ opacity: 0; transform: scale(.7) rotate(-8deg); }
  to{ opacity: 1; transform: scale(1) rotate(0); }
}
.hero-content .logo-big{
  animation: logoPopIn .7s cubic-bezier(.34,1.56,.64,1) both;
}
.hero-content h1{
  animation: fadeUpIn .7s ease .15s both;
}
.hero-content p{
  animation: fadeUpIn .7s ease .3s both;
}
.hero-content .buttons{
  animation: fadeUpIn .7s ease .45s both;
}
.hero-content .buttons a{
  transition: transform .2s ease, box-shadow .2s ease;
}
.hero-content .buttons a:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.scroll-reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.scroll-reveal.revealed{
  opacity: 1;
  transform: translateY(0);
}
.hero-content{
  position: relative;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  gap: 14px;
}
.logo-big{
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.5));
  animation: floatin .8s ease both;
}
@keyframes floatin{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}

.hero-content h1{
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: .03em;
  max-width: 820px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.hero-content h1::after{
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  background: #e8a824;
  border-radius: 100px;
  margin: 16px auto 0;
}

.hero-content p{
  color: rgba(255,255,255,.85);
  font-size: 15.5px;
  max-width: 520px;
  line-height: 1.65;
}

/* compact variant — para sa news.php banner, mas maliit
   pero parehong background image at overlay */
.hero-compact{
  min-height: 300px;
}
.hero-compact .hero-content{
  padding: 70px 20px 50px;
  gap: 10px;
}
.hero-compact h1{
  font-size: clamp(24px, 4vw, 34px);
}
.hero-compact .incidents-kicker{
  background: rgba(232,168,36,.15);
}

/* =========================
   BUTTONS
========================= */
.buttons{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}
.btn{
  display: inline-block;
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active{ transform: scale(.97); }

.btn-red{
  background: #cf3a2c;
  color: #fff;
  box-shadow: 0 8px 22px rgba(207,58,44,.4);
}
.btn-red:hover{ background: #b52f22; }

.btn-outline{
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn-outline:hover{ background: rgba(255,255,255,.16); }

.btn-success{
  background: #14874f;
  color: #fff;
  box-shadow: 0 8px 22px rgba(20,135,79,.4);
}
.btn-success:hover{ background: #0f6d3f; }

/* =========================
   FOOTER
========================= */
footer{
  background: #091428;
  text-align: center;
  padding: 22px 16px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px){
  .top-nav{ padding: 12px 16px; }
  .menu-toggle{ display: block; }

  .top-nav nav{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(9,20,40,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 14px 16px;
    display: none;
    border-bottom: 2px solid #e8a824;
  }
  .top-nav nav.show{ display: flex; }
  .top-nav nav a,
  .top-nav nav button{
    margin: 4px 0;
    padding: 13px 14px;
    font-size: 15px;
    text-align: left;
    width: 100%;
    justify-content: flex-start;
  }

  .logo-big{ width: 100px; height: 100px; }
  .buttons{ flex-direction: column; width: 100%; max-width: 320px; }
  .btn{ width: 100%; text-align: center; }
}

/* ============================================================
   v3 polish (2026 Modern UI) — appended overrides
   ============================================================ */
.top-nav{
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(11,28,56,.86);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-content h1{
  letter-spacing: -.01em;
  text-shadow: 0 4px 24px rgba(0,0,0,.45);
}
.hero-content p{
  color: rgba(255,255,255,.85);
}
.buttons .btn{
  border-radius: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .18s ease, box-shadow .18s ease;
}
.buttons .btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.btn-red{ box-shadow: 0 8px 22px rgba(220,38,38,.35); }
.btn-success{ box-shadow: 0 8px 22px rgba(22,163,74,.32); }
.btn-outline{
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.08);
}
.logo-big{
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.5));
}

/* ============================================================
   INCIDENT REPORTS / ANNOUNCEMENTS SECTION
   Alternating image/text rows na "lumulutang" papasok
   habang naka-scroll (IntersectionObserver + subtle parallax
   sa larawan, ginagawa sa index.php script).
   ============================================================ */
.incidents-section{
  background: #f3f5f9;
  padding: 70px 20px 90px;
}

.incidents-empty{
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
  color: #94a3b8;
}
.incidents-empty i{ font-size: 44px; display: block; margin-bottom: 14px; }
.incidents-empty p{ font-size: 14.5px; margin: 0; }

.incidents-heading{
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.incidents-kicker{
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #e8a824;
  background: rgba(232,168,36,.12);
  border: 1px solid rgba(232,168,36,.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.incidents-heading h2{
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: #0d1f3c;
  margin: 0 0 12px;
}
.incidents-heading p{
  color: #64748b;
  font-size: 15px;
  margin: 0;
}

.incidents-list{
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ---- one row: image + text side by side ---- */
.incident-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;

  /* pre-reveal state: nakatago at bahagyang nakababa,
     lumulutang papasok kapag na-scroll into view */
  opacity: 0;
  transform: translateY(46px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.incident-row.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.incident-row.reverse{
  grid-template-columns: 1fr 1fr;
}
.incident-row.reverse .incident-media{ order: 2; }
.incident-row.reverse .incident-text{ order: 1; }

/* ---- floating media panel — BUONG larawan, walang cut/crop
   kahit anong laki. Letterbox background sa gilid kung
   hindi tugma ang aspect ratio ng larawan. ---- */
.incident-media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(13,31,60,.18);
  background: linear-gradient(135deg, #0d1f3c, #1a3a6e);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  max-height: 460px;
}
.incident-media img,
.incident-media-placeholder{
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: contain;
  display: block;
}
.incident-media-placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  color: rgba(255,255,255,.5);
  min-height: 260px;
}

/* ---- text side ---- */
.incident-text{ padding: 0 6px; }
.incident-date{
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 10px;
}
.incident-text h3{
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 800;
  color: #0d1f3c;
  margin: 0 0 12px;
  line-height: 1.3;
}
.incident-text p{
  color: #475569;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.incident-responders{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #0d1f3c;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 8px 14px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(13,31,60,.06);
}
.incident-responders i{ color: #e8a824; }

/* ============================================================
   MOBILE — single column, image on top
   ============================================================ */
@media (max-width: 767.98px){
  .incidents-section{ padding: 50px 16px 60px; }
  .incidents-heading{ margin-bottom: 40px; }
  .incidents-list{ gap: 42px; }

  .incident-row,
  .incident-row.reverse{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .incident-row.reverse .incident-media,
  .incident-row.reverse .incident-text{ order: initial; }
  .incident-media{ min-height: 200px; max-height: 320px; }
  .incident-media img{ max-height: 320px; }
}

/* respetuhin ang reduced-motion users */
@media (prefers-reduced-motion: reduce){
  .incident-row{ transition: none; opacity: 1; transform: none; }
  .incident-media img, .incident-media-placeholder{ transition: none !important; transform: none !important; }
}

/* ============================================================
   ZOOMABLE IMAGES + THUMBNAIL STRIP (multi-image gallery)
   ============================================================ */
.incident-zoomable{ cursor: zoom-in; }

.incident-media-count{
  position: absolute;
  right: 12px; bottom: 12px;
  background: rgba(13,31,60,.75);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.incident-thumbs{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 4px 0 16px;
}
.incident-thumb{
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  opacity: .7;
  transition: opacity .15s ease, border-color .15s ease, transform .15s ease;
}
.incident-thumb:hover{ opacity: 1; transform: translateY(-2px); }
.incident-thumb.active{ opacity: 1; border-color: #e8a824; }

/* ============================================================
   LIGHTBOX — click-to-zoom viewer
   ============================================================ */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(6,12,26,.95);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox.open{
  display: flex;
  opacity: 1;
}
.lightbox-img{
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  animation: lightbox-in .25s ease both;
}
@keyframes lightbox-in{
  from{ opacity: 0; transform: scale(.94); }
  to{ opacity: 1; transform: scale(1); }
}
.lightbox-close{
  position: absolute;
  top: 20px; right: 20px;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s ease;
}
.lightbox-close:hover{ background: rgba(255,255,255,.24); }
.lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s ease;
}
.lightbox-nav:hover{ background: rgba(255,255,255,.24); }
.lightbox-prev{ left: 18px; }
.lightbox-next{ right: 18px; }
.lightbox-counter{
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,.1);
  padding: 5px 14px;
  border-radius: 100px;
}

/* filmstrip — LAHAT ng larawan ng post, makikita habang naka-zoom */
.lightbox-filmstrip{
  position: absolute;
  bottom: 62px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 8px;
  max-width: 90vw;
  overflow-x: auto;
  padding: 6px;
  scrollbar-width: thin;
}
.lightbox-filmstrip-thumb{
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  cursor: pointer;
  opacity: .55;
  border: 2px solid transparent;
  transition: opacity .15s ease, border-color .15s ease, transform .15s ease;
}
.lightbox-filmstrip-thumb:hover{ opacity: .85; transform: translateY(-2px); }
.lightbox-filmstrip-thumb.active{ opacity: 1; border-color: #e8a824; }

@media (max-width: 576px){
  .lightbox-filmstrip{ bottom: 54px; }
  .lightbox-filmstrip-thumb{ width: 40px; height: 40px; }
}

@media (max-width: 576px){
  .lightbox-nav{ width: 40px; height: 40px; font-size: 17px; }
  .lightbox-prev{ left: 8px; }
  .lightbox-next{ right: 8px; }
  .lightbox-close{ width: 36px; height: 36px; top: 12px; right: 12px; }
}

/* ============================================================
   CPAG OFFICIALS — big trigger button + slide-in panel
   ============================================================ */
.officials-trigger{
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,168,36,.12);
  border: 1.5px solid #e8a824;
  color: #e8a824;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .15s ease, transform .12s ease;
}
.officials-trigger:hover{ background: rgba(232,168,36,.22); }
.officials-trigger:active{ transform: scale(.97); }
.officials-trigger-icon{ font-size: 22px; }

.officials-overlay{
  position: fixed; inset: 0;
  background: rgba(5,12,26,.7);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.officials-overlay.show{ opacity: 1; pointer-events: auto; }

.officials-panel{
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: #0d1f3c;
  border-left: 2px solid #e8a824;
  z-index: 91;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .3s ease, visibility 0s linear .3s;
}
.officials-panel.show{
  transform: translateX(0);
  visibility: visible;
  transition: transform .3s ease, visibility 0s linear 0s;
}

.officials-panel-header{
  position: sticky; top: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  background: rgba(9,20,40,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232,168,36,.3);
}
.officials-panel-header h3{
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 800; color: #fff; margin: 0;
}
.officials-close{
  background: none; border: none; color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer;
  opacity: .7;
}
.officials-close:hover{ opacity: 1; }

.officials-panel-body{ padding: 22px; }

.official-leader-card{
  text-align: center;
  padding: 22px 16px;
  background: rgba(232,168,36,.08);
  border: 1px solid rgba(232,168,36,.3);
  border-radius: 16px;
  margin-bottom: 22px;
}
.official-leader-card img{
  width: 84px; height: 84px; border-radius: 50%;
  object-fit: cover; border: 3px solid #e8a824;
  margin-bottom: 10px;
}
.official-photo-placeholder{
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 10px;
  border: 3px solid #e8a824;
}
.official-photo-placeholder.small{ width: 56px; height: 56px; font-size: 22px; border-width: 2px; }
.official-leader-name{ font-weight: 800; font-size: 15px; color: #fff; }
.official-leader-callsign{ color: #e8a824; font-weight: 700; font-size: 13px; margin-top: 2px; }
.official-leader-title{ color: rgba(255,255,255,.65); font-size: 12px; margin-top: 4px; }

.officials-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.officials-section-label{
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #e8a824;
  margin: 22px 0 10px;
}
.officials-section-label:first-child{ margin-top: 0; }
.official-card{
  text-align: center;
  padding: 14px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
}
.official-card img{
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; margin-bottom: 8px;
}
.official-name{ font-weight: 700; font-size: 12.5px; color: #fff; }
.official-title{ color: rgba(255,255,255,.6); font-size: 11px; margin-top: 2px; }

.officials-empty{ color: rgba(255,255,255,.6); text-align: center; padding: 30px 0; }

.official-clickable{ cursor: pointer; transition: transform .15s ease; }
.official-clickable:hover{ transform: translateY(-2px); }
.official-clickable:active{ transform: scale(.97); }

/* ============================================================
   OFFICIAL ZOOM LIGHTBOX — pag-click ng litrato/card
   ============================================================ */
.official-lightbox{
  position: fixed; inset: 0;
  background: rgba(5,12,26,.88);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility 0s linear .2s;
}
.official-lightbox.open{
  opacity: 1;
  visibility: visible;
  transition: opacity .2s ease, visibility 0s linear 0s;
}
.official-lightbox-inner{
  position: relative;
  background: #0d1f3c;
  border: 1px solid rgba(232,168,36,.35);
  border-radius: 20px;
  padding: 36px 28px 28px;
  max-width: 380px;
  width: 100%;
  margin: auto;
  text-align: center;
  animation: lbScaleIn .25s ease;
}
@keyframes lbScaleIn{
  from{ opacity: 0; transform: scale(.92); }
  to{ opacity: 1; transform: scale(1); }
}
.official-lightbox-close{
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; color: #fff;
  font-size: 28px; line-height: 1; cursor: pointer;
  opacity: .7;
}
.official-lightbox-close:hover{ opacity: 1; }
.official-lightbox-photo img{
  width: 160px; height: 160px; border-radius: 50%;
  object-fit: cover; border: 4px solid #e8a824;
  margin-bottom: 16px;
}
.official-lightbox-placeholder{
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; margin: 0 auto 16px;
  border: 4px solid #e8a824;
}
.official-lightbox-name{ font-size: 19px; font-weight: 800; color: #fff; }
.official-lightbox-callsign{ color: #e8a824; font-weight: 700; font-size: 14px; margin-top: 4px; }
.official-lightbox-title{ color: rgba(255,255,255,.65); font-size: 13px; margin-top: 6px; }

/* ============================================================
   PARTNER LOGOS + MAP
   ============================================================ */
.partners-section{
  background: #091428;
  padding: 50px 20px;
  text-align: center;
  border-top: 1px solid rgba(232,168,36,.2);
}
.partners-heading{
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800; color: #fff;
  margin-bottom: 14px;
}
.partners-statement{
  max-width: 620px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,.65);
  font-size: 13.5px;
  line-height: 1.7;
}
.partners-logos{
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.partner-logo-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.partner-logo-card img{
  width: 96px; height: 96px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
}
.partner-logo-placeholder{
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  align-items: center; justify-content: center;
  font-size: 38px;
}
.partner-logo-card span{
  font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.8);
  max-width: 140px;
}
.partners-map{
  max-width: 720px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(232,168,36,.25);
}
.partners-map iframe{ display: block; }

@media (max-width: 576px){
  .officials-panel{ width: 100vw; }
  .officials-grid{ grid-template-columns: repeat(2, 1fr); }
  .partners-logos{ gap: 24px; }
}
