/*
 * admin.css — Namilyango College
 * Shared stylesheet for: administration.php, board.php, pta.php,
 *                        student_leaders.php, staff.php
 * Design tokens: navy #00274c | gold #f2cb3f/#c9a227
 * Fonts: Raleway 800 (headings) | Fira Sans (body)
 */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Fira Sans', 'Inter', sans-serif;
  color: #1e293b;
  background: #f8fafc;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── PROGRESS BAR ─────────────────────────────────────────── */
#adm-progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, #f2cb3f, #c9a227);
  width: 0%; z-index: 9999; transition: width .1s linear;
}

/* ─── BACK TO TOP ──────────────────────────────────────────── */
#backToTop {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: #00274c; color: #f2cb3f;
  border: none; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,39,76,.35);
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s; z-index: 500;
}
#backToTop.show { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: #c9a227; color: #00274c; }

/* ─── SCROLL REVEAL ────────────────────────────────────────── */
.adm-reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.adm-reveal.adm-visible { opacity: 1; transform: none; }
.adm-reveal-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity .55s ease, transform .55s ease;
}
.adm-reveal-left.adm-visible { opacity: 1; transform: none; }
.adm-reveal-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.adm-reveal-right.adm-visible { opacity: 1; transform: none; }

/* ─── WRAPPER / CONTAINER ──────────────────────────────────── */
.adm-wrap {
  max-width: 1200px; margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* ─── PAGE BANNER ──────────────────────────────────────────── */
.adm-banner {
  position: relative; min-height: 380px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.adm-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.adm-banner-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg,rgba(0,39,76,.78) 30%,rgba(0,20,40,.55) 100%);
}
.adm-banner-content {
  position: relative; z-index: 2;
  padding: 3rem clamp(1rem,4vw,2.5rem) 3.5rem;
  width: 100%;
}
.adm-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.75);
  margin-bottom: 1rem; flex-wrap: wrap;
}
.adm-breadcrumb a { color: rgba(255,255,255,.75); }
.adm-breadcrumb a:hover { color: #f2cb3f; }
.adm-breadcrumb .sep { color: rgba(255,255,255,.4); font-size: .7rem; }
.adm-banner-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #f2cb3f;
  background: rgba(242,203,63,.15); border: 1px solid rgba(242,203,63,.3);
  padding: .3rem .85rem; border-radius: 20px; margin-bottom: .9rem;
}
.adm-banner-title {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1;
  color: #fff; margin-bottom: .75rem;
}
.adm-banner-title span { color: #f2cb3f; }
.adm-banner-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.82);
  max-width: 60ch;
}
.adm-banner-badge {
  position: absolute; top: 2rem; right: clamp(1rem,4vw,2.5rem);
  background: rgba(242,203,63,.15); border: 2px solid rgba(242,203,63,.4);
  border-radius: 12px; padding: 1rem 1.25rem; text-align: center; color: #fff;
}
.adm-banner-badge strong { display: block; font-size: 1.6rem; font-weight: 800; color: #f2cb3f; }
.adm-banner-badge span { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; opacity: .75; }

/* ─── STATS STRIP ───────────────────────────────────────────── */
.adm-stats-strip {
  background: #00274c; color: #fff;
  padding: 1.5rem 0;
}
.adm-stats-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
}
.adm-stat {
  text-align: center; padding: 1rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.adm-stat:last-child { border-right: none; }
.adm-stat-num {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: 2.1rem; color: #f2cb3f; display: block; line-height: 1;
}
.adm-stat-lbl {
  font-size: .73rem; text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.65); margin-top: .25rem; display: block;
}

/* ─── SECTION ───────────────────────────────────────────────── */
.adm-section {
  padding: 4.5rem 0;
}
.adm-section.alt-bg { background: #f1f5f9; }
.adm-section.dark-bg { background: #00274c; color: #fff; }

.adm-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #c9a227; margin-bottom: .5rem;
}
.adm-heading {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem); color: #00274c;
  margin-bottom: .75rem; line-height: 1.2;
}
.dark-bg .adm-heading { color: #fff; }
.adm-divider {
  width: 48px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg,#f2cb3f,#c9a227);
  margin-bottom: 2rem;
}

/* ─── 2-COL INTRO LAYOUT ────────────────────────────────────── */
.adm-intro-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.adm-intro-text p {
  color: #475569; margin-bottom: 1rem; font-size: .975rem;
}
.adm-intro-image {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,39,76,.18);
}
.adm-intro-image img { width: 100%; height: 360px; object-fit: cover; }
.adm-intro-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: #00274c; color: #f2cb3f;
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: .85rem; padding: .5rem 1rem; border-radius: 8px;
}
.adm-feature-list {
  list-style: none; margin-top: 1.5rem;
}
.adm-feature-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .55rem 0; border-bottom: 1px dashed #e2e8f0;
  font-size: .93rem; color: #475569;
}
.adm-feature-list li:last-child { border-bottom: none; }
.adm-feature-list i { color: #c9a227; margin-top: .2rem; min-width: 16px; }

/* ─── PERSON CARD ───────────────────────────────────────────── */
.adm-person-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.adm-person-grid.compact {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.1rem;
}
.adm-person-card {
  background: #fff; border-radius: 16px;
  overflow: hidden; text-align: center;
  box-shadow: 0 2px 16px rgba(0,39,76,.07);
  transition: transform .25s, box-shadow .25s;
  border-top: 4px solid var(--pc-clr, #00274c);
}
.adm-person-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,39,76,.14);
}
.adm-person-photo {
  background: linear-gradient(135deg, #00274c 60%, #1a4a7a 100%);
  padding: 2rem 2rem 1.25rem; position: relative;
}
.adm-person-photo-img {
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover; border: 3px solid #f2cb3f;
  margin: 0 auto;
}
.adm-person-photo-placeholder {
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 3px solid #f2cb3f;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto; font-size: 2.2rem; color: #f2cb3f;
}
.adm-person-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: #f2cb3f; border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; color: #00274c;
}
.adm-person-body { padding: 1.25rem 1rem 1.5rem; }
.adm-person-name {
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 1rem; color: #00274c; margin-bottom: .25rem;
}
.adm-person-role {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #c9a227; margin-bottom: .6rem;
}
.adm-person-dept {
  font-size: .8rem; color: #64748b; margin-bottom: .75rem;
}
.adm-person-tag {
  display: inline-block; font-size: .66rem; font-weight: 700;
  text-transform: uppercase; padding: .2rem .6rem;
  border-radius: 12px; background: rgba(0,39,76,.06); color: #00274c;
  border: 1px solid rgba(0,39,76,.12); margin-bottom: .5rem;
}
.adm-person-hod { background: rgba(201,162,39,.12); color: #856404; border-color: #c9a227; }

/* ─── FEATURED LEADER CARD ──────────────────────────────────── */
.adm-featured-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; margin-bottom: 3rem;
}
.adm-featured-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,39,76,.1);
  display: flex; gap: 0;
  border-left: 5px solid var(--fc-clr, #00274c);
}
.adm-featured-photo {
  width: 140px; min-width: 140px;
  background: linear-gradient(160deg, #00274c 0%, #1a4a7a 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1.5rem .75rem; gap: .5rem;
}
.adm-featured-photo-img {
  width: 88px; height: 88px; border-radius: 50%;
  object-fit: cover; border: 3px solid #f2cb3f;
}
.adm-featured-photo-ph {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 3px solid #f2cb3f;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; color: #f2cb3f;
}
.adm-featured-icon-lbl {
  font-size: .62rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  text-align: center;
}
.adm-featured-body { padding: 1.5rem 1.25rem; flex: 1; }
.adm-featured-name {
  font-family: 'Raleway', sans-serif; font-weight: 900;
  font-size: 1.1rem; color: #00274c; margin-bottom: .2rem;
}
.adm-featured-role {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #c9a227; margin-bottom: .85rem;
}
.adm-featured-meta {
  display: flex; flex-direction: column; gap: .4rem; margin-bottom: .9rem;
}
.adm-featured-meta-item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .82rem; color: #64748b;
}
.adm-featured-meta-item i { color: #c9a227; min-width: 14px; }
.adm-featured-msg {
  font-style: italic; font-size: .88rem; color: #475569;
  border-left: 3px solid #f2cb3f; padding-left: .85rem;
  line-height: 1.55;
}

/* ─── TABS ──────────────────────────────────────────────────── */
.adm-tabs-wrap { margin-top: 2.5rem; }
.adm-tab-nav {
  display: flex; gap: .5rem; flex-wrap: wrap;
  border-bottom: 2px solid #e2e8f0; margin-bottom: 2rem;
}
.adm-tab-btn {
  background: none; border: none; cursor: pointer;
  padding: .7rem 1.35rem; font-family: 'Fira Sans', sans-serif;
  font-weight: 600; font-size: .88rem; color: #64748b;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color .2s, border-color .2s; border-radius: 0;
  display: flex; align-items: center; gap: .5rem;
}
.adm-tab-btn:hover { color: #00274c; }
.adm-tab-btn.active { color: #00274c; border-bottom-color: #f2cb3f; }
.adm-tab-btn i { font-size: .82rem; }
.adm-tab-pane { display: none; }
.adm-tab-pane.active { display: block; }

/* ─── ACCORDION (Teaching Depts) ────────────────────────────── */
.adm-accordion { display: flex; flex-direction: column; gap: 1rem; }
.adm-acc-item {
  background: #fff; border-radius: 14px;
  border: 1px solid #e2e8f0; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,39,76,.04);
}
.adm-acc-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 1.1rem 1.5rem;
  background: none; border: none; cursor: pointer;
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 1rem; color: #00274c; text-align: left;
  gap: 1rem;
}
.adm-acc-trigger-left { display: flex; align-items: center; gap: .75rem; }
.adm-acc-dept-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg,#00274c,#1a4a7a);
  display: flex; align-items: center; justify-content: center;
  color: #f2cb3f; font-size: .9rem; min-width: 38px;
}
.adm-acc-dept-count {
  font-size: .73rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: #94a3b8;
}
.adm-acc-arrow {
  color: #c9a227; font-size: .85rem;
  transition: transform .3s;
}
.adm-acc-item.open .adm-acc-arrow { transform: rotate(180deg); }
.adm-acc-body { display: none; border-top: 1px solid #f1f5f9; }
.adm-acc-item.open .adm-acc-body { display: block; }

/* Subject row inside accordion */
.adm-subj-block { padding: 1rem 1.5rem; border-bottom: 1px solid #f8fafc; }
.adm-subj-block:last-child { border-bottom: none; }
.adm-subj-title {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: #94a3b8; margin-bottom: .75rem;
  display: flex; align-items: center; gap: .5rem;
}
.adm-subj-title::after {
  content: ''; flex: 1; height: 1px; background: #f1f5f9;
}
.adm-staff-row {
  display: flex; align-items: center; gap: .85rem;
  padding: .55rem 0; border-bottom: 1px dashed #f1f5f9;
}
.adm-staff-row:last-child { border-bottom: none; }
.adm-staff-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg,#00274c,#1a4a7a);
  display: flex; align-items: center; justify-content: center;
  color: #f2cb3f; font-size: .85rem; font-weight: 700;
  min-width: 38px; overflow: hidden;
}
.adm-staff-avatar img { width: 100%; height: 100%; object-fit: cover; }
.adm-staff-info { flex: 1; }
.adm-staff-name {
  font-weight: 700; font-size: .9rem; color: #1e293b;
}
.adm-staff-detail {
  font-size: .77rem; color: #94a3b8;
}
.adm-staff-hod-badge {
  font-size: .62rem; font-weight: 700; text-transform: uppercase;
  background: rgba(201,162,39,.12); color: #856404;
  border: 1px solid #c9a227; border-radius: 20px;
  padding: .15rem .55rem; white-space: nowrap;
}

/* ─── FILTER BAR ────────────────────────────────────────────── */
.adm-filter-bar {
  background: #fff; border-radius: 14px; padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 14px rgba(0,39,76,.07);
  display: flex; gap: 1rem; align-items: center;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.adm-search-wrap {
  display: flex; align-items: center; gap: .6rem;
  background: #f8fafc; border: 1.5px solid #e2e8f0;
  border-radius: 10px; padding: .5rem 1rem;
  flex: 1; min-width: 200px;
}
.adm-search-wrap i { color: #94a3b8; }
.adm-search-wrap input {
  border: none; background: none; outline: none;
  font-family: 'Fira Sans', sans-serif; font-size: .9rem;
  color: #1e293b; width: 100%;
}
.adm-filter-pills { display: flex; gap: .5rem; flex-wrap: wrap; }
.adm-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .9rem; border-radius: 20px; font-size: .8rem;
  font-weight: 600; cursor: pointer; transition: background .2s, color .2s;
  border: 1.5px solid #e2e8f0; background: #f1f5f9; color: #64748b;
}
.adm-pill:hover, .adm-pill.active {
  background: #00274c; color: #fff; border-color: #00274c;
}
.adm-filter-submit {
  background: #00274c; color: #f2cb3f; border: none;
  border-radius: 10px; padding: .55rem 1.35rem;
  font-family: 'Fira Sans', sans-serif; font-weight: 700;
  font-size: .88rem; cursor: pointer; transition: background .2s;
  display: flex; align-items: center; gap: .5rem;
}
.adm-filter-submit:hover { background: #c9a227; color: #00274c; }

/* ─── BOARD MEMBER CARD ─────────────────────────────────────── */
.adm-board-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr));
  gap: 1.5rem;
}
.adm-board-card {
  background: #fff; border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,39,76,.08);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
  border-top: 4px solid var(--bc-clr, #00274c);
}
.adm-board-card:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(0,39,76,.14); }
.adm-board-photo {
  background: linear-gradient(135deg,#00274c 60%,#1a4a7a);
  padding: 1.75rem 1.75rem 1.25rem; text-align: center; position: relative;
}
.adm-board-photo-img {
  width: 90px; height: 90px; border-radius: 50%;
  object-fit: cover; border: 3px solid #f2cb3f; margin: 0 auto;
}
.adm-board-photo-ph {
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 3px solid #f2cb3f;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto; font-size: 2rem; color: #f2cb3f;
}
.adm-board-body { padding: 1.1rem 1.25rem 1.4rem; text-align: center; }
.adm-board-name {
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: .97rem; color: #00274c; margin-bottom: .2rem;
}
.adm-board-role {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #c9a227; margin-bottom: .6rem;
}
.adm-board-org { font-size: .8rem; color: #64748b; margin-bottom: .75rem; }
.adm-board-pill {
  display: inline-block; font-size: .65rem; font-weight: 700;
  text-transform: uppercase; padding: .18rem .55rem; border-radius: 12px;
  background: rgba(0,39,76,.06); color: #00274c; border: 1px solid rgba(0,39,76,.12);
}

/* ─── RESPONSIBILITY CARDS ──────────────────────────────────── */
.adm-resp-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
  gap: 1.5rem;
}
.adm-resp-card {
  background: #fff; border-radius: 16px; padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 14px rgba(0,39,76,.07);
  border-left: 4px solid var(--rc-clr,#00274c);
  transition: transform .25s;
}
.adm-resp-card:hover { transform: translateY(-4px); }
.adm-resp-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--rc-clr,#00274c); color: #f2cb3f;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1rem;
}
.adm-resp-title {
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 1rem; color: #00274c; margin-bottom: .5rem;
}
.adm-resp-text { font-size: .88rem; color: #475569; line-height: 1.55; }

/* ─── DOCUMENT / RESOURCE CARDS ─────────────────────────────── */
.adm-doc-list { display: flex; flex-direction: column; gap: .85rem; }
.adm-doc-card {
  background: #fff; border-radius: 14px; padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 2px 10px rgba(0,39,76,.06);
  border-left: 4px solid var(--dc-clr,#00274c);
  transition: transform .2s;
}
.adm-doc-card:hover { transform: translateX(4px); }
.adm-doc-icon {
  width: 44px; height: 44px; border-radius: 10px; min-width: 44px;
  background: var(--dc-clr,#00274c); color: #f2cb3f;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.adm-doc-info { flex: 1; }
.adm-doc-title { font-weight: 700; font-size: .92rem; color: #1e293b; }
.adm-doc-meta { font-size: .77rem; color: #94a3b8; margin-top: .15rem; }
.adm-doc-download {
  background: rgba(0,39,76,.06); border: 1px solid rgba(0,39,76,.12);
  color: #00274c; border-radius: 8px; padding: .4rem .8rem;
  font-size: .78rem; font-weight: 700; display: flex; align-items: center; gap: .4rem;
  transition: background .2s, color .2s; white-space: nowrap;
}
.adm-doc-download:hover { background: #00274c; color: #f2cb3f; }

/* ─── MEETING / DATE CARDS ──────────────────────────────────── */
.adm-meeting-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1.5rem; }
.adm-meeting-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,39,76,.08);
  transition: transform .25s;
}
.adm-meeting-card:hover { transform: translateY(-4px); }
.adm-meeting-header {
  background: linear-gradient(135deg,#00274c,#1a4a7a);
  padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1.25rem;
}
.adm-meeting-date-box {
  background: #f2cb3f; border-radius: 10px; padding: .4rem .8rem;
  text-align: center; min-width: 60px;
}
.adm-meeting-date-day {
  font-family: 'Raleway',sans-serif; font-weight: 900;
  font-size: 1.8rem; color: #00274c; line-height: 1;
}
.adm-meeting-date-mon {
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #00274c;
}
.adm-meeting-title-wrap h4 { color: #fff; font-size: .97rem; font-weight: 700; }
.adm-meeting-type-pill {
  display: inline-block; font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  background: rgba(242,203,63,.2); color: #f2cb3f;
  border: 1px solid rgba(242,203,63,.3); border-radius: 20px;
  padding: .15rem .55rem; margin-top: .25rem;
}
.adm-meeting-body { padding: 1.1rem 1.5rem 1.4rem; }
.adm-meeting-detail {
  display: flex; align-items: center; gap: .6rem;
  font-size: .83rem; color: #475569; margin-bottom: .45rem;
}
.adm-meeting-detail i { color: #c9a227; min-width: 14px; }

/* ─── ANNOUNCEMENT CARDS ────────────────────────────────────── */
.adm-announce-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1.5rem; }
.adm-announce-card {
  background: #fff; border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 2px 14px rgba(0,39,76,.08);
  border-top: 4px solid var(--ac-clr,#f2cb3f);
  transition: transform .25s;
}
.adm-announce-card:hover { transform: translateY(-4px); }
.adm-announce-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--ac-clr,#c9a227);
  background: color-mix(in srgb, var(--ac-clr,#f2cb3f) 12%, white);
  padding: .2rem .65rem; border-radius: 20px; margin-bottom: .75rem;
}
.adm-announce-title { font-weight: 800; font-size: 1rem; color: #00274c; margin-bottom: .5rem; }
.adm-announce-body { font-size: .87rem; color: #475569; line-height: 1.55; margin-bottom: .85rem; }
.adm-announce-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.adm-announce-date { font-size: .76rem; color: #94a3b8; }
.adm-announce-read-more {
  font-size: .78rem; font-weight: 700; color: #00274c;
  display: flex; align-items: center; gap: .3rem;
}
.adm-announce-read-more:hover { color: #c9a227; }

/* ─── TIMELINE ──────────────────────────────────────────────── */
.adm-timeline { position: relative; padding-left: 2.5rem; }
.adm-timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg,#f2cb3f,#00274c);
}
.adm-tl-item {
  position: relative; margin-bottom: 2.25rem;
}
.adm-tl-dot {
  position: absolute; left: -2.5rem; top: .25rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: #f2cb3f; border: 3px solid #00274c;
  transform: translateX(-50%); margin-left: 1px;
}
.adm-tl-year {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: #c9a227; margin-bottom: .25rem;
}
.adm-tl-title {
  font-family: 'Raleway',sans-serif; font-weight: 800;
  font-size: .97rem; color: #00274c; margin-bottom: .35rem;
}
.adm-tl-text { font-size: .87rem; color: #475569; line-height: 1.55; }

/* ─── INFO / COMMITTEE CARDS ────────────────────────────────── */
.adm-info-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 1.5rem; }
.adm-info-card {
  background: #fff; border-radius: 16px; padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 14px rgba(0,39,76,.07); transition: transform .25s;
  text-align: center;
}
.adm-info-card:hover { transform: translateY(-4px); }
.adm-info-icon {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 1rem;
  background: linear-gradient(135deg,#00274c,#1a4a7a);
  color: #f2cb3f; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.adm-info-title { font-family: 'Raleway',sans-serif; font-weight: 800; font-size: 1rem; color: #00274c; margin-bottom: .5rem; }
.adm-info-text { font-size: .87rem; color: #475569; }

/* ─── ABOUT / PTA LAYOUT ────────────────────────────────────── */
.adm-about-layout {
  display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; align-items: start;
}
.adm-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.adm-sidebar-card {
  background: #fff; border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 2px 14px rgba(0,39,76,.07);
}
.adm-sidebar-card-title {
  font-family: 'Raleway',sans-serif; font-weight: 800;
  font-size: .95rem; color: #00274c; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .6rem;
}
.adm-sidebar-card-title i { color: #c9a227; }
.adm-sidebar-list { display: flex; flex-direction: column; gap: .5rem; }
.adm-sidebar-item {
  display: flex; align-items: center; gap: .7rem;
  font-size: .85rem; color: #475569; padding: .4rem 0;
  border-bottom: 1px dashed #f1f5f9;
}
.adm-sidebar-item:last-child { border-bottom: none; }
.adm-sidebar-item i { color: #c9a227; min-width: 14px; }

/* ─── FEEDBACK FORM ─────────────────────────────────────────── */
.adm-form-section {
  background: #fff; border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,39,76,.09);
}
.adm-form-header { margin-bottom: 2rem; }
.adm-form-title { font-family: 'Raleway',sans-serif; font-weight: 900; font-size: 1.5rem; color: #00274c; margin-bottom: .4rem; }
.adm-form-sub { font-size: .9rem; color: #64748b; }
.adm-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.adm-form-full { grid-column: 1 / -1; }
.adm-field label {
  display: block; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: #64748b; margin-bottom: .45rem;
}
.adm-field label .req { color: #e53e3e; margin-left: .25rem; }
.adm-field input,
.adm-field select,
.adm-field textarea {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid #e2e8f0; border-radius: 10px;
  font-family: 'Fira Sans',sans-serif; font-size: .9rem;
  color: #1e293b; background: #f8fafc; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.adm-field input:focus,
.adm-field select:focus,
.adm-field textarea:focus {
  border-color: #00274c;
  box-shadow: 0 0 0 3px rgba(0,39,76,.1);
  background: #fff;
}
.adm-field textarea { resize: vertical; min-height: 130px; }
.adm-form-submit {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #00274c; color: #f2cb3f; border: none;
  border-radius: 12px; padding: .85rem 2rem;
  font-family: 'Fira Sans',sans-serif; font-weight: 700;
  font-size: .95rem; cursor: pointer; transition: background .2s, transform .2s;
  margin-top: .75rem;
}
.adm-form-submit:hover { background: #c9a227; color: #00274c; transform: translateY(-2px); }

/* Alert banners */
.adm-alert {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem; border-radius: 12px;
  margin-bottom: 1.5rem; font-size: .9rem;
}
.adm-alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.adm-alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.adm-alert i { margin-top: .15rem; }

/* ─── MESSAGE / LEADER QUOTES ───────────────────────────────── */
.adm-msg-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 2rem; margin-bottom: 3rem; }
.adm-msg-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,39,76,.1);
  border-top: 5px solid var(--mc-clr,#00274c);
}
.adm-msg-photo {
  background: linear-gradient(135deg,#00274c,#1a4a7a);
  padding: 2rem; text-align: center;
}
.adm-msg-photo-img {
  width: 110px; height: 110px; border-radius: 50%;
  object-fit: cover; border: 3px solid #f2cb3f; margin: 0 auto 1rem;
}
.adm-msg-photo-ph {
  width: 110px; height: 110px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 3px solid #f2cb3f;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 2.5rem; color: #f2cb3f;
}
.adm-msg-name { font-family: 'Raleway',sans-serif; font-weight: 800; color: #fff; font-size: 1.05rem; }
.adm-msg-role { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #f2cb3f; opacity: .85; }
.adm-msg-body { padding: 1.75rem; }
.adm-msg-quote {
  font-size: .95rem; font-style: italic; color: #475569; line-height: 1.7;
  border-left: 3px solid #f2cb3f; padding-left: 1rem;
  position: relative;
}
.adm-msg-quote::before { content: '\201C'; font-size: 3rem; color: rgba(242,203,63,.3); position: absolute; top: -.75rem; left: .5rem; font-family: Georgia,serif; }

/* ─── CROSS NAV ─────────────────────────────────────────────── */
.adm-cross-nav {
  background: #00274c; padding: 2.5rem 0;
}
.adm-cross-label {
  text-align: center; font-size: .73rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 1.5rem;
}
.adm-cross-links {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem;
}
.adm-cross-link {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 1.1rem 1.5rem; color: rgba(255,255,255,.75);
  font-size: .82rem; font-weight: 600; min-width: 110px; text-align: center;
  transition: background .2s, border-color .2s, color .2s;
}
.adm-cross-link i { font-size: 1.3rem; color: #f2cb3f; }
.adm-cross-link:hover { background: rgba(242,203,63,.12); border-color: rgba(242,203,63,.35); color: #fff; }
.adm-cross-link.active { background: rgba(242,203,63,.15); border-color: rgba(242,203,63,.4); color: #fff; }

/* ─── COMMITTEE TABS CONTENT ────────────────────────────────── */
.adm-committee-desc {
  font-size: .9rem; color: #475569; margin-bottom: 1.75rem;
  padding: 1rem 1.25rem; background: #f8fafc;
  border-left: 4px solid #f2cb3f; border-radius: 0 10px 10px 0;
}

/* ─── WHATSAPP FLOAT ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 5.5rem; right: 2rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; z-index: 500;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ─── EMPTY STATE ───────────────────────────────────────────── */
.adm-empty {
  text-align: center; padding: 3rem 1.5rem; color: #94a3b8;
}
.adm-empty i { font-size: 2.5rem; margin-bottom: .75rem; display: block; }
.adm-empty p { font-size: .92rem; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 992px) {
  .adm-intro-layout,
  .adm-about-layout { grid-template-columns: 1fr; }
  .adm-about-layout .adm-sidebar { order: -1; }
  .adm-intro-image { order: -1; }
  .adm-form-grid { grid-template-columns: 1fr; }
  .adm-section { padding: 3.5rem 0; }
  .adm-wrap { padding: 0 1.25rem; }
}

@media (max-width: 768px) {
  .adm-section { padding: 2.75rem 0; }
  .adm-banner { min-height: 260px; }
  .adm-banner-badge { display: none; }
  .adm-banner-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .adm-banner-sub { font-size: .88rem; }
  .adm-stats-inner { grid-template-columns: repeat(2,1fr); }
  .adm-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .adm-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .adm-stat:nth-last-child(-n+2) { border-bottom: none; }
  .adm-featured-card { flex-direction: column; }
  .adm-featured-photo { width: 100%; flex-direction: row; justify-content: flex-start; padding: 1.25rem; }
  .adm-msg-grid { grid-template-columns: 1fr; }
  /* Tabs: horizontal scroll on small screens */
  .adm-tabs-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .adm-tab-nav { flex-wrap: nowrap; min-width: max-content; gap: .25rem; padding-bottom: .25rem; }
  .adm-tab-btn { padding: .55rem .9rem; font-size: .82rem; white-space: nowrap; }
  .adm-cross-links { gap: .6rem; }
  .adm-cross-link { min-width: 90px; padding: .9rem 1rem; }
  .adm-heading { font-size: clamp(1.4rem, 4vw, 2rem); }
  /* Committees / info grids */
  .adm-info-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 576px) {
  .adm-section { padding: 2.25rem 0; }
  .adm-person-grid { grid-template-columns: repeat(2,1fr); }
  .adm-board-grid { grid-template-columns: repeat(2,1fr); }
  .adm-filter-bar { flex-direction: column; }
  .adm-search-wrap { width: 100%; }
  .adm-intro-image img { height: 240px; }
  .adm-cross-links { grid-template-columns: 1fr 1fr !important; gap: .5rem; }
}

@media (max-width: 400px) {
  .adm-wrap { padding: 0 1rem; }
  .adm-section { padding: 2rem 0; }
  .adm-person-grid,
  .adm-board-grid { grid-template-columns: 1fr; }
  .adm-stats-inner { grid-template-columns: 1fr; }
  .adm-stat { border-right: none !important; }
}
