/* ===================================================
   DepEd Division of General Santos City — style.css
   =================================================== */

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

:root {
  --blue:      #1B6B35;   /* primary green  */
  --blue-mid:  #27993F;   /* mid green      */
  --gold:      #C9A020;   /* warm logo gold */
  --red:       #ce1126;
  --white:     #ffffff;
  --gray-100:  #EBF5EE;   /* light green bg */
  --gray-200:  #d9ead9;
  --gray-500:  #6b7280;
  --gray-700:  #374151;
  --gray-900:  #111827;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--gray-900);
  background: #fff;
  overflow-x: hidden;
}

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

img { display: block; }

/* ── ACCESSIBILITY BAR ──────────────────────────────── */
#acc-bar {
  background: #0C3D1A;
  color: #B8DCC4;
  font-size: 12px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
#acc-bar a { color: #B8DCC4; margin: 0 8px; transition: color .2s; }
#acc-bar a:hover { color: var(--gold); }
.acc-left { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.acc-right { display: flex; align-items: center; gap: 16px; }
.acc-right span { display: flex; align-items: center; gap: 5px; }
.acc-btn {
  background: none;
  border: 1px solid #B8DCC4;
  color: #B8DCC4;
  padding: 3px 10px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 11.5px;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.acc-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }

#acc-statement {
  background: #155228;
  color: #D5EDD9;
  padding: 14px 24px;
  font-size: 13px;
  line-height: 1.7;
  border-bottom: 3px solid var(--gold);
}
.acc-statement-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.acc-statement-inner button {
  background: var(--gold); color: #000; border: none;
  padding: 6px 16px; border-radius: 3px; cursor: pointer;
  font-weight: 700; font-size: 12px; white-space: nowrap;
}

/* ── SITE HEADER ────────────────────────────────────── */
#site-header {
  background: linear-gradient(135deg, #1B6B35 0%, #155228 55%, #0E3D1E 100%);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.header-brand { display: flex; align-items: center; gap: 18px; }
.header-brand .logo { height: 88px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.header-text .republic { font-size: 11px; color: #B8DCC4; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 2px; }
.header-text h1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px; font-weight: 700;
  color: #fff; line-height: 1.15; letter-spacing: .4px;
}
.header-text h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--gold); margin-top: 2px;
}
.header-text .region { font-size: 12px; color: #B8DCC4; margin-top: 3px; }
.header-text .tagline {
  font-size: 11px; color: #F5E070;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.2px; margin-top: 5px;
}

/* Transparency Seal */
.tseal-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.tseal-wrap a { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.tseal-wrap img {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: contain;
  background: #fff;
  transition: transform .3s;
}
.tseal-wrap img:hover { transform: scale(1.08); }
.tseal-wrap span {
  font-size: 9.5px; color: var(--gold);
  text-transform: uppercase; letter-spacing: .8px;
  font-weight: 700; text-align: center; line-height: 1.3;
}

/* ── MAIN NAVIGATION ────────────────────────────────── */
#main-nav {
  background: var(--blue);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 3px 12px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: stretch;
}
.nav-toggle {
  display: none; background: none; border: none;
  color: #fff; font-size: 22px; padding: 13px 18px; cursor: pointer;
}

#nav-list { display: flex; align-items: stretch; list-style: none; width: 100%; }
#nav-list > li { position: relative; }
#nav-list > li > a,
#nav-list > li > span {
  display: flex; align-items: center; gap: 5px;
  padding: 0 14px; height: 48px;
  font-size: 12.5px; font-weight: 700;
  color: #fff; white-space: nowrap;
  cursor: pointer; transition: background .18s, color .18s;
  text-transform: uppercase; letter-spacing: .4px;
}
#nav-list > li > a:hover,
#nav-list > li > span:hover,
#nav-list > li.active > a {
  background: var(--gold); color: #000;
}
.nav-caret { font-size: 9px; opacity: .8; }

/* Dropdown level 1 */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 240px;
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
  border-top: 3px solid var(--gold);
  display: none; z-index: 2000;
  list-style: none;
}
.has-drop:hover .dropdown { display: block; }
.dropdown > li { position: relative; border-bottom: 1px solid var(--gray-200); }
.dropdown > li:last-child { border-bottom: none; }
.dropdown > li > a,
.dropdown > li > span {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 15px; font-size: 13px;
  color: var(--gray-700); cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap; gap: 8px;
}
.dropdown > li > a > i,
.dropdown > li > span > i { font-size: 11px; color: var(--gray-500); }
.dropdown > li > a:hover,
.dropdown > li > span:hover { background: var(--blue); color: #fff; }
.dropdown > li > a:hover > i,
.dropdown > li > span:hover > i { color: var(--gold); }

/* Dropdown level 2 */
.sub-dropdown {
  position: absolute; top: 0; left: 100%;
  background: #fff; min-width: 230px;
  box-shadow: 5px 5px 22px rgba(0,0,0,.12);
  border-top: 3px solid var(--blue-mid);
  display: none; z-index: 2100; list-style: none;
}
.has-sub:hover .sub-dropdown { display: block; }
.sub-dropdown > li { position: relative; border-bottom: 1px solid var(--gray-200); }
.sub-dropdown > li:last-child { border-bottom: none; }
.sub-dropdown > li > a,
.sub-dropdown > li > span {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 15px; font-size: 12.5px;
  color: var(--gray-700); cursor: pointer;
  transition: background .15s; white-space: nowrap;
}
.sub-dropdown > li > a:hover,
.sub-dropdown > li > span:hover { background: var(--blue-mid); color: #fff; }

/* Dropdown level 3 */
.sub-sub-dropdown {
  position: absolute; top: 0; left: 100%;
  background: #fff; min-width: 210px;
  box-shadow: 5px 5px 20px rgba(0,0,0,.1);
  border-top: 3px solid var(--red);
  display: none; z-index: 2200; list-style: none;
}
.has-sub2:hover .sub-sub-dropdown { display: block; }
.sub-sub-dropdown > li { border-bottom: 1px solid var(--gray-200); }
.sub-sub-dropdown > li:last-child { border-bottom: none; }
.sub-sub-dropdown > li > a {
  display: block; padding: 9px 15px; font-size: 12.5px;
  color: var(--gray-700); transition: background .15s; white-space: nowrap;
}
.sub-sub-dropdown > li > a:hover { background: var(--red); color: #fff; }

/* ── HERO SLIDER ────────────────────────────────────── */
#hero {
  position: relative; width: 100%; overflow: hidden; background: #000;
  line-height: 0;
}

/* ── NOTICE TICKER BAR ──────────────────────────────── */
.nb-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 46px;
  background: rgba(10, 45, 18, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;                    /* shown by JS when data arrives */
  align-items: stretch;
  z-index: 12;
  border-top: 1px solid rgba(201,160,32,.35);
}
.nb-bar.visible { display: flex; }

/* When bar is visible, push dots up */
#hero.nb-active .hero-dots { bottom: 56px; }

.nb-label {
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nb-track-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.nb-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding: 0 18px;
}
.nb-track.ticker {
  animation: nb-scroll linear infinite;
}
@keyframes nb-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.nb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  padding-right: 48px;
}
.nb-item .nb-date {
  background: rgba(201,160,32,.25);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nb-item .nb-sep {
  color: rgba(255,255,255,.25);
}
.nb-loading { color: rgba(255,255,255,.5); font-size: 12.5px; padding: 0 4px; }
.nb-all {
  padding: 0 16px;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-left: 1px solid rgba(255,255,255,.15);
  flex-shrink: 0;
  transition: color .2s, background .2s;
}
.nb-all:hover { color: #fff; background: rgba(255,255,255,.08); }
#hero-sizer {
  width: 100%; height: auto; display: block;
  visibility: hidden; pointer-events: none;
}
.hero-slide {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0; transition: opacity 1.4s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,50,20,.25) 0%, rgba(10,50,20,.65) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px;
}
.hero-overlay h2 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(20px, 4vw, 46px);
  font-weight: 700; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  line-height: 1.2;
}
.hero-overlay h2 span { color: var(--gold); }
.hero-overlay p {
  max-width: 560px; margin-top: 14px;
  color: #D5EDD9; font-size: clamp(13px, 1.7vw, 17px);
  line-height: 1.65; text-shadow: 0 1px 5px rgba(0,0,0,.4);
}
.hero-btn {
  margin-top: 26px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 30px;
  background: var(--gold); color: #1B6B35;
  font-weight: 700; font-size: 14px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: .5px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
}
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 7px 22px rgba(0,0,0,.3); }
.hero-dots {
  position: absolute; bottom: 18px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 9px;
}
.hero-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,.45); cursor: pointer;
  border: 2px solid rgba(255,255,255,.7);
  transition: background .3s, border-color .3s;
}
.hero-dot.active { background: var(--gold); border-color: var(--gold); }

/* ── QUICK INFO ─────────────────────────────────────── */
#quick-info { background: var(--blue); }
.qi-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.qi-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 26px;
  border-right: 1px solid rgba(255,255,255,.13);
  transition: background .2s;
}
.qi-item:last-child { border-right: none; }
.qi-item:hover { background: rgba(255,255,255,.07); }
.qi-icon {
  width: 46px; height: 46px;
  background: rgba(201,160,32,.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 19px; flex-shrink: 0;
}
.qi-text span { display: block; font-size: 23px; font-weight: 700; color: #fff; font-family: 'Roboto Condensed', sans-serif; }
.qi-text small { font-size: 11px; color: #B8DCC4; text-transform: uppercase; letter-spacing: .7px; }

/* ── SECTION BASE ───────────────────────────────────── */
.section { padding: 64px 20px; }
.section-alt { background: var(--gray-100); }
.container { max-width: 1180px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 42px; }
.section-title h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: 1px;
}
.underline {
  display: block; width: 58px; height: 4px;
  background: var(--gold); margin: 10px auto 0; border-radius: 2px;
}
.section-title p { margin-top: 12px; color: var(--gray-500); font-size: 14.5px; }
.section-label {
  font-size: 11.5px; color: var(--red);
  text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 700; margin-bottom: 8px; display: block;
}

/* ── WELCOME / ABOUT ────────────────────────────────── */
.welcome-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: center;
}
.welcome-img-wrap {
  position: relative; border-radius: 8px;
  overflow: hidden; box-shadow: 0 8px 32px rgba(27,107,53,.18);
}
.welcome-img-wrap::before {
  content: ''; position: absolute;
  top: -12px; left: -12px;
  width: 80px; height: 80px;
  border-top: 5px solid var(--gold);
  border-left: 5px solid var(--gold);
  border-radius: 2px; z-index: 1;
}
.welcome-img-wrap::after {
  content: ''; position: absolute;
  bottom: -12px; right: -12px;
  width: 80px; height: 80px;
  border-bottom: 5px solid var(--blue);
  border-right: 5px solid var(--blue);
  border-radius: 2px;
}
.welcome-img-wrap img { width: 100%; height: 360px; object-fit: cover; }
.welcome-text h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 30px; color: var(--blue); font-weight: 700; line-height: 1.2;
}
.welcome-text h3 span { color: var(--red); }
.welcome-text p { margin-top: 16px; color: var(--gray-700); font-size: 14.5px; line-height: 1.85; }
.sds-sig { margin-top: 26px; padding-top: 18px; border-top: 2px solid var(--gray-200); }
.sds-sig strong { display: block; font-size: 15px; color: var(--blue); }
.sds-sig em { font-size: 13px; color: var(--gray-500); }

/* ── VISION MISSION ─────────────────────────────────── */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card {
  background: #fff; border-radius: 8px; padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border-top: 5px solid var(--blue); position: relative; overflow: hidden;
}
.vm-card:nth-child(2) { border-top-color: var(--red); }
.vm-card::before {
  content: '\201C'; position: absolute;
  top: -6px; right: 18px;
  font-size: 110px; color: rgba(27,107,53,.06);
  font-family: Georgia, serif; line-height: 1;
}
.vm-card h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
}
.vm-card:nth-child(2) h4 { color: var(--red); }
.vm-card h4 i {
  width: 38px; height: 38px; background: var(--blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; flex-shrink: 0;
}
.vm-card:nth-child(2) h4 i { background: var(--red); }
.vm-card p { font-size: 14px; color: var(--gray-700); line-height: 1.85; }

/* Core Values */
.cv-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
  margin-top: 16px;
}
.cv-item {
  text-align: center; padding: 22px 10px;
  background: #fff; border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.cv-item:hover { transform: translateY(-5px); box-shadow: 0 9px 26px rgba(27,107,53,.14); }
.cv-item i { font-size: 28px; color: var(--blue); display: block; margin-bottom: 10px; }
.cv-item strong { font-size: 12.5px; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }

/* ── PROGRAMS ───────────────────────────────────────── */
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prog-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(27,107,53,.16); }
.prog-card-head {
  background: linear-gradient(135deg, var(--blue) 0%, #27993F 100%);
  padding: 26px; text-align: center; color: #fff;
}
.prog-card-head i { font-size: 36px; margin-bottom: 11px; display: block; }
.prog-card-head h5 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.prog-card-body { padding: 18px 20px; flex: 1; }
.prog-card-body p { font-size: 13.5px; color: var(--gray-700); line-height: 1.75; }
.prog-card-foot { padding: 12px 20px; border-top: 1px solid var(--gray-200); }
.prog-card-foot a {
  font-size: 12.5px; color: var(--blue); font-weight: 600;
  display: flex; align-items: center; gap: 6px; transition: color .2s;
}
.prog-card-foot a:hover { color: var(--red); }

/* ── NEWS ───────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.news-card {
  background: #fff; border-radius: 8px; padding: 24px;
  box-shadow: 0 3px 14px rgba(0,0,0,.07);
  border-left: 4px solid var(--blue);
  transition: transform .22s, box-shadow .22s;
  position: relative;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(27,107,53,.14); }
.news-card.featured { border-left-color: var(--gold); grid-column: 1 / -1; display: flex; gap: 24px; flex-wrap: wrap; }
.news-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: #1B6B35;
  font-size: 10px; font-weight: 700; padding: 3px 9px;
  border-radius: 3px; text-transform: uppercase; letter-spacing: .6px;
}
.news-date { font-size: 12px; color: var(--gray-500); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.news-card h5 { font-size: 16px; color: var(--blue); font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.news-card.featured h5 { font-size: 18px; }
.news-card p { font-size: 13.5px; color: var(--gray-700); line-height: 1.7; }
.news-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px; font-size: 13px; color: var(--blue);
  font-weight: 600; transition: color .2s;
}
.news-link:hover { color: var(--red); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 28px; border: 2px solid var(--blue);
  color: var(--blue); font-weight: 700; font-size: 14px;
  border-radius: 4px; transition: all .2s; text-transform: uppercase; letter-spacing: .4px;
}
.btn-outline:hover { background: var(--blue); color: #fff; }

/* ── TRANSPARENCY ───────────────────────────────────── */
.transparency-wrap {
  display: flex; align-items: center; gap: 40px;
  background: linear-gradient(135deg, var(--blue) 0%, #155228 100%);
  border-radius: 12px; padding: 40px 44px;
  flex-wrap: wrap;
}
.transparency-icon img {
  width: 100px; height: 100px; border-radius: 50%;
  border: 4px solid var(--gold); object-fit: contain; background: #fff;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.25));
}
.transparency-text h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.transparency-text p { font-size: 14px; color: #D5EDD9; line-height: 1.75; max-width: 600px; }
.transparency-links {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px;
}
.transparency-links a {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25); border-radius: 4px;
  color: #fff; font-size: 12.5px; font-weight: 600;
  transition: background .2s;
}
.transparency-links a:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* ── CONTACT ────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: #fff; border-radius: 8px; padding: 28px 24px;
  box-shadow: 0 4px 18px rgba(0,0,0,.07);
  border-top: 4px solid var(--blue);
  text-align: center;
  transition: transform .22s;
}
.contact-card:hover { transform: translateY(-4px); }
.contact-icon {
  width: 56px; height: 56px; background: var(--blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; margin: 0 auto 16px;
}
.contact-card h5 { font-size: 14.5px; color: var(--blue); font-weight: 700; margin-bottom: 14px; line-height: 1.4; }
.contact-card p { font-size: 13px; color: var(--gray-700); line-height: 2; display: flex; align-items: center; justify-content: center; gap: 7px; }
.contact-card p i { color: var(--blue); font-size: 12px; }

/* ── FOOTER ─────────────────────────────────────────── */
#site-footer { background: #0C3D1A; color: #B8DCC4; }
.footer-top { padding: 52px 20px 36px; }
.footer-top-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px;
}
.footer-logo { height: 64px; margin-bottom: 14px; }
.footer-about h4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 17px; font-weight: 700; color: #fff;
  line-height: 1.3; margin-bottom: 12px;
}
.footer-about p { font-size: 13px; line-height: 1.85; color: #B8DCC4; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: #B8DCC4; font-size: 15px; transition: all .2s;
}
.social-links a:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.footer-col h5 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: 13px; color: #B8DCC4; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '›'; color: var(--gold); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-seal { margin-top: 20px; }
.footer-seal img { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold); background: #fff; }
.footer-bottom {
  background: #071E0D; padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 12px; color: #7BAD8A; }
.footer-bottom a { color: #7BAD8A; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── BACK TO TOP ────────────────────────────────────── */
#back-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 14px rgba(0,0,0,.25); z-index: 999;
}
#back-top.visible { opacity: 1; pointer-events: all; }
#back-top:hover { background: var(--gold); color: #000; transform: translateY(-3px); }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .qi-grid { grid-template-columns: repeat(2, 1fr); }
  .cv-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  #nav-list {
    display: none; flex-direction: column;
    width: 100%; background: #165B2C;
  }
  #nav-list.open { display: flex; }
  #nav-list > li > a,
  #nav-list > li > span { height: auto; padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .dropdown { position: static; box-shadow: none; border-top: none; background: #0E4A22; display: none; }
  .has-drop.open .dropdown { display: block; }
  .dropdown > li > a, .dropdown > li > span { padding: 10px 28px; }
  .sub-dropdown { position: static; box-shadow: none; border-top: none; background: #0A3D1B; display: none; }
  .has-sub.open .sub-dropdown { display: block; }
  .sub-dropdown > li > a, .sub-dropdown > li > span { padding: 9px 40px; }
  .sub-sub-dropdown { position: static; background: #073014; display: none; }
  .has-sub2.open .sub-sub-dropdown { display: block; }
  .sub-sub-dropdown > li > a { padding: 9px 52px; }

  #site-header { padding: 14px 18px; }
  .header-brand .logo { height: 64px; }
  .header-text h1 { font-size: 18px; }
  .header-text h2 { font-size: 14px; }

  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-img-wrap::before, .welcome-img-wrap::after { display: none; }
  .vm-grid { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .transparency-wrap { flex-direction: column; text-align: center; padding: 30px 24px; }
  .transparency-links { justify-content: center; }
  .qi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .prog-grid { grid-template-columns: 1fr; }
  .cv-grid { grid-template-columns: repeat(2, 1fr); }
  .qi-grid { grid-template-columns: 1fr 1fr; }
  .hero-overlay h2 { font-size: 20px; }
  .acc-right { display: none; }
}
