/* ============================================================
   PAMI SCHOOLS — Main Stylesheet
   Mobile-first, then desktop breakpoints
   ============================================================ */

/* ── Variables ── */
:root {
  --navy:    #0b1d3a;
  --navy2:   #162d57;
  --red:     #b8111e;
  --red2:    #8b0010;
  --gold:    #c8902b;
  --gold2:   #f0b340;
  --cream:   #faf7f2;
  --white:   #ffffff;
  --gray1:   #f4f4f6;
  --gray2:   #e5e7eb;
  --gray3:   #9ca3af;
  --text:    #1a2336;
  --muted:   #5f6b7c;
  --green:   #0a6640;
  --shadow:  0 4px 24px rgba(11,29,58,.10);
  --shadow2: 0 12px 48px rgba(11,29,58,.18);
  --radius:  12px;
  --radius2: 20px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2rem, 6vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.3rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); }
p  { font-size: .95rem; color: var(--muted); }

/* ── Container ── */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.2rem; }

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--red); color: #fff;
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem 1.2rem; font-size: .8rem; font-weight: 600;
}
.ann-icon { flex-shrink: 0; }
.announcement-bar span:nth-child(2) { flex: 1; }
.ann-close { background: none; border: none; color: rgba(255,255,255,.7); font-size: .9rem; padding: 2px 4px; flex-shrink: 0; }
.ann-close:hover { color: #fff; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 1rem;
}

.logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.logo-crest {
  position: relative; width: 40px; height: 40px;
  background: var(--red); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--gold); flex-shrink: 0;
}
.logo-crest i { position: absolute; font-size: 1.5rem; color: rgba(255,255,255,.15); }
.logo-crest span { position: relative; z-index: 1; font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: #fff; }
.logo-crest.small { width: 32px; height: 32px; }
.logo-crest.small span { font-size: .95rem; }
.logo-text strong { display: block; color: #fff; font-size: .95rem; font-weight: 700; line-height: 1.2; }
.logo-text small  { display: block; color: var(--gold2); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

.main-nav { display: none; }
.main-nav a {
  color: rgba(255,255,255,.78); font-size: .88rem; font-weight: 500;
  padding: .4rem .7rem; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(255,255,255,.08); }
.main-nav a.nav-cta {
  background: var(--red); color: #fff; font-weight: 700;
  padding: .4rem 1rem; margin-left: .4rem;
}
.main-nav a.nav-cta:hover { background: var(--red2); }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 800;
  background: var(--navy);
  transform: translateX(100%); transition: transform .3s ease;
  padding-top: 64px; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: flex; align-items: center; gap: .8rem;
  color: rgba(255,255,255,.82); font-size: 1rem; font-weight: 500;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a i { width: 22px; text-align: center; color: var(--gold2); }
.mobile-nav a:hover, .mobile-nav a.active { color: #fff; background: rgba(255,255,255,.05); }
.mobile-nav .mob-cta {
  margin: 1.2rem; border-radius: var(--radius);
  background: var(--red); color: #fff !important;
  font-weight: 700; justify-content: center;
  border: none; padding: .9rem !important;
}

/* ── Utility ── */
.badge {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .28rem .9rem; border-radius: 100px;
}
.badge-gold   { background: var(--gold2); color: var(--navy); }
.badge-red    { background: var(--red);   color: #fff; }
.badge-navy   { background: var(--navy);  color: #fff; }
.badge-green  { background: var(--green); color: #fff; }
.badge-outline{ background: transparent; border: 1.5px solid rgba(255,255,255,.4); color: #fff; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.6rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 700; border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--red);   color: #fff; }
.btn-primary:hover { background: var(--red2); }
.btn-navy    { background: var(--navy);  color: #fff; }
.btn-navy:hover { background: var(--navy2); }
.btn-gold    { background: var(--gold2); color: var(--navy); }
.btn-gold:hover { background: var(--gold); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.4); color: #fff; }
.btn-outline:hover { border-color: var(--gold2); color: var(--gold2); }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.section { padding: 4rem 0; }
.section-alt { background: var(--gray1); }
.section-dark { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: .5rem;
}
.section-title { color: var(--navy); margin-bottom: .7rem; }
.section-title span { color: var(--red); }
.section-dark .section-title { color: #fff; }
.section-sub { font-size: .95rem; color: var(--muted); max-width: 520px; margin: 0 auto; }
.section-dark .section-sub { color: rgba(255,255,255,.65); }

/* ── Hero ── */
.hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 60%, #0d2244 100%);
  min-height: 80vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 4rem 1.2rem 3rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(200,144,43,.08), transparent);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero h1 { color: #fff; margin: .8rem 0; }
.hero h1 em { color: var(--gold2); font-style: normal; }
.hero p  { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2rem; }
.hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.hero-deco {
  position: absolute; right: -80px; bottom: -60px;
  width: 340px; height: 340px; border-radius: 50%;
  border: 1.5px solid rgba(200,144,43,.15);
}
.hero-deco::before {
  content:''; position:absolute; inset:30px;
  border-radius:50%; border:1.5px solid rgba(200,144,43,.1);
}

/* ── Stats Bar ── */
.stats-bar { background: var(--gold); padding: 1.2rem 0; }
.stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: .5rem; }
.stat-item { text-align: center; padding: .3rem .8rem; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--navy); opacity: .75; }

/* ── Division Cards ── */
.divisions-grid { display: flex; flex-direction: column; gap: 1.2rem; }
.div-card {
  border-radius: var(--radius2); overflow: hidden;
  box-shadow: var(--shadow); text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.div-card:hover { transform: translateY(-5px); box-shadow: var(--shadow2); }
.div-card-inner { padding: 1.8rem 1.5rem; display: flex; align-items: center; gap: 1.2rem; }
.div-card.schools  { background: linear-gradient(135deg, var(--navy), var(--navy2)); }
.div-card.computer { background: linear-gradient(135deg, var(--red),  var(--red2)); }
.div-card.bookshop { background: linear-gradient(135deg, #0a5c2d,    #063d1d); }
.div-card-icon {
  width: 60px; height: 60px; flex-shrink: 0;
  background: rgba(255,255,255,.12); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
}
.div-card-text { flex: 1; }
.div-card-text h3 { color: #fff; font-size: 1.2rem; margin-bottom: .25rem; }
.div-card-text p  { color: rgba(255,255,255,.72); font-size: .82rem; }
.div-card-arrow { color: rgba(255,255,255,.5); font-size: 1.1rem; flex-shrink: 0; }

/* ── Feature List ── */
.feature-list { display: flex; flex-direction: column; gap: .7rem; }
.feature-item {
  display: flex; align-items: center; gap: .9rem;
  background: var(--white); border-radius: var(--radius);
  padding: .9rem 1rem; box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.feature-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .95rem; }
.feature-icon.red   { background: #fee2e2; color: var(--red); }
.feature-icon.navy  { background: #dbeafe; color: var(--navy); }
.feature-icon.green { background: #d1fae5; color: var(--green); }
.feature-icon.gold  { background: #fef3c7; color: var(--gold); }
.feature-text { font-size: .9rem; font-weight: 600; color: var(--text); }

/* ── Cards ── */
.card {
  background: var(--white); border-radius: var(--radius2);
  box-shadow: var(--shadow); overflow: hidden;
}
.card-body { padding: 1.4rem; }
.card-title { font-size: 1.05rem; margin-bottom: .4rem; }
.card-meta  { font-size: .78rem; color: var(--muted); }

/* ── Course Cards ── */
.courses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.course-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,.06);
  display: flex; flex-direction: column; gap: .4rem;
}
.course-card-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--gray1); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--navy); margin-bottom: .2rem;
}
.course-card h4 { font-size: .9rem; color: var(--navy); }
.course-tag { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--red); }

/* ── Classes Grid ── */
.classes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.class-card {
  border-radius: var(--radius); padding: 1.2rem 1rem;
  text-align: center; color: #fff;
}
.class-card h3 { font-size: 1.4rem; color: #fff; }
.class-card p  { font-size: .76rem; color: rgba(255,255,255,.8); margin-top: .2rem; }
.class-card.kg   { background: linear-gradient(135deg,#3b5bdb,#1e3a8a); }
.class-card.pry  { background: linear-gradient(135deg,var(--red),var(--red2)); }
.class-card.jss  { background: linear-gradient(135deg,#c27803,#92400e); }
.class-card.sss  { background: linear-gradient(135deg,#059669,#065f46); }

/* ── Products Grid ── */
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; }
.product-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.2rem 1rem; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform var(--transition);
}
.product-card:hover { transform: translateY(-3px); }
.product-card i { font-size: 1.8rem; color: var(--navy); margin-bottom: .5rem; }
.product-card p { font-size: .82rem; font-weight: 600; color: var(--text); }

/* ── About / Values ── */
.values-grid { display: flex; flex-direction: column; gap: .9rem; }
.value-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.2rem; display: flex; gap: 1rem; align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.value-card-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--gray1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--red);
}
.value-card h4 { font-size: .95rem; color: var(--navy); margin-bottom: .2rem; }
.value-card p  { font-size: .82rem; line-height: 1.55; }

.founder-card {
  background: var(--white); border-radius: var(--radius2);
  box-shadow: var(--shadow); overflow: hidden;
}
.founder-head {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 2rem 1.5rem; text-align: center;
}
.founder-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 3px solid var(--gold2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond',serif; font-size: 2rem;
  color: #fff; margin: 0 auto 1rem;
}
.founder-head h3 { color: #fff; }
.founder-head p  { color: var(--gold2); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-top: .2rem; }
.founder-body { padding: 1.5rem; }
.founder-body p { font-size: .9rem; line-height: 1.75; color: var(--muted); margin-bottom: .9rem; }

/* ── Forms ── */
.form-card { background: var(--white); border-radius: var(--radius2); box-shadow: var(--shadow); padding: 1.8rem 1.4rem; }
.form-title { font-size: 1.3rem; color: var(--navy); margin-bottom: 1.4rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--navy); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .78rem 1rem;
  border: 2px solid var(--gray2); border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif; font-size: .92rem;
  background: var(--cream); color: var(--text);
  outline: none; transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); background: #fff; }
.form-group textarea { height: 110px; resize: vertical; }
.form-row { display: flex; gap: .8rem; }
.form-row .form-group { flex: 1; }
.form-error { color: var(--red); font-size: .8rem; margin-top: .3rem; }
.form-success {
  background: #d1fae5; border: 2px solid #059669;
  border-radius: var(--radius); padding: 1rem 1.2rem;
  color: #065f46; font-weight: 600; font-size: .9rem;
  margin-bottom: 1.2rem; display: flex; gap: .6rem; align-items: center;
}
.form-alert {
  background: #fee2e2; border: 2px solid var(--red);
  border-radius: var(--radius); padding: 1rem 1.2rem;
  color: var(--red2); font-weight: 600; font-size: .9rem;
  margin-bottom: 1.2rem; display: flex; gap: .6rem; align-items: center;
}

/* ── Tabs ── */
.tab-nav { display: flex; background: var(--gray1); border-radius: var(--radius); padding: 4px; margin-bottom: 1.5rem; }
.tab-btn {
  flex: 1; padding: .65rem .5rem;
  border: none; background: none; border-radius: 9px;
  font-family: 'DM Sans',sans-serif; font-size: .82rem; font-weight: 700;
  color: var(--muted); transition: all var(--transition);
}
.tab-btn.active { background: var(--white); color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Accordion / Requirements ── */
.req-card { background: var(--navy); border-radius: var(--radius2); padding: 1.6rem; color: #fff; }
.req-card h3 { color: var(--gold2); font-size: 1.1rem; margin-bottom: 1rem; }
.req-item { display: flex; align-items: center; gap: .7rem; margin-bottom: .6rem; font-size: .86rem; color: rgba(255,255,255,.85); }
.req-check { color: var(--gold2); flex-shrink: 0; }
.req-divider { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 1rem 0; }
.bank-detail { font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.6; }

/* ── Contact Cards ── */
.contact-cards { display: flex; flex-direction: column; gap: .9rem; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 1.2rem; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.contact-card-head { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.contact-card-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.cci-phone    { background: #fef3c7; color: #92400e; }
.cci-email    { background: #fee2e2; color: var(--red); }
.cci-location { background: #dbeafe; color: #1e40af; }
.cci-web      { background: #ede9fe; color: #5b21b6; }
.contact-card-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.contact-card-value { font-size: .9rem; font-weight: 700; color: var(--navy); }
.contact-card-value a { color: var(--red); }
.contact-card-value a:hover { text-decoration: underline; }

/* ── Notice ── */
.notice-bar {
  background: var(--red); color: #fff; text-align: center;
  padding: .9rem 1.2rem; font-size: .88rem; font-weight: 600;
}
.notice-bar strong { color: var(--gold2); }

/* ── Mode Pills ── */
.modes-wrap { display: flex; gap: .6rem; flex-wrap: wrap; }
.mode-pill {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  padding: .45rem 1rem; border-radius: 100px;
  font-size: .8rem; font-weight: 600;
}

/* ── Admin ── */
.admin-wrap { min-height: 100vh; background: var(--gray1); }
.admin-topbar {
  background: var(--navy); display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.2rem; height: 60px;
  position: sticky; top: 0; z-index: 100;
}
.admin-topbar strong { color: #fff; font-size: 1rem; }
.admin-topbar a { color: rgba(255,255,255,.7); font-size: .85rem; text-decoration: none; }
.admin-topbar a:hover { color: var(--gold2); }
.admin-topbar a i { margin-right: .3rem; }

.admin-container { max-width: 900px; margin: 0 auto; padding: 1.5rem 1.2rem; }
.admin-stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; margin-bottom: 1.5rem; }
.admin-stat-card { background: var(--white); border-radius: var(--radius); padding: 1.2rem 1rem; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.admin-stat-num { font-family: 'Cormorant Garamond',serif; font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.admin-stat-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-top: .2rem; }

.admin-section-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .9rem; }
.admin-table-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow-x: auto; margin-bottom: 1.5rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.admin-table th { background: var(--navy); color: #fff; padding: .8rem 1rem; text-align: left; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.admin-table td { padding: .8rem 1rem; border-bottom: 1px solid var(--gray2); vertical-align: middle; white-space: nowrap; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray1); }

.status-badge { padding: .25rem .7rem; border-radius: 100px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.s-pending   { background: #fef3c7; color: #92400e; }
.s-reviewing { background: #dbeafe; color: #1e40af; }
.s-approved  { background: #d1fae5; color: #065f46; }
.s-rejected  { background: #fee2e2; color: var(--red2); }

.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--gray1); padding: 1.5rem; }
.admin-login-card { background: var(--white); border-radius: var(--radius2); box-shadow: var(--shadow2); padding: 2.2rem 1.8rem; width: 100%; max-width: 400px; text-align: center; }
.admin-login-logo { width: 64px; height: 64px; background: var(--navy); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; border: 3px solid var(--gold2); }
.admin-login-logo i { font-size: 1.8rem; color: var(--gold2); }
.admin-login-card h2 { font-size: 1.5rem; margin-bottom: .3rem; }
.admin-login-card .sub { font-size: .85rem; color: var(--muted); margin-bottom: 1.6rem; }

/* ── Footer ── */
.site-footer { background: var(--navy); padding: 3.5rem 0 0; }
.footer-grid { display: flex; flex-direction: column; gap: 2rem; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .85rem; margin-top: .7rem; line-height: 1.65; max-width: 260px; }
.footer-logo { display: flex; align-items: center; gap: .6rem; }
.footer-logo strong { color: #fff; font-size: 1rem; }
.footer-social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); font-size: .9rem; transition: background var(--transition), color var(--transition); }
.footer-social a:hover { background: var(--red); color: #fff; }

.footer-col h4 { color: var(--gold2); font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .9rem; font-family: 'DM Sans',sans-serif; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: rgba(255,255,255,.62); font-size: .86rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold2); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .6rem; color: rgba(255,255,255,.62); font-size: .84rem; margin-bottom: .55rem; }
.footer-contact-list i { color: var(--gold2); margin-top: .2rem; flex-shrink: 0; width: 14px; }
.footer-contact-list a { color: rgba(255,255,255,.62); }
.footer-contact-list a:hover { color: var(--gold2); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 2.5rem; padding: 1.2rem 0; }
.footer-bottom .container { display: flex; flex-direction: column; gap: .3rem; align-items: center; text-align: center; }
.footer-bottom span { font-size: .78rem; color: rgba(255,255,255,.4); }

/* ── Page Hero Variants ── */
.page-hero { background: linear-gradient(145deg, var(--navy), var(--navy2)); padding: 3.5rem 1.2rem 3rem; text-align: center; }
.page-hero h1 { color: #fff; margin: .8rem 0 .5rem; }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto; }
.page-hero.red    { background: linear-gradient(145deg, var(--red), var(--red2)); }
.page-hero.green  { background: linear-gradient(145deg, #0a5c2d, #063d1d); }
.page-hero.purple { background: linear-gradient(145deg, #2d1b4e, #1a0d2e); }

/* ── Responsive: Tablet ── */
@media (min-width: 640px) {
  .container { padding: 0 2rem; }
  .divisions-grid { display: grid; grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .admin-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .form-card { padding: 2rem; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 2.5rem; }
  .footer-bottom .container { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ── Responsive: Desktop ── */
@media (min-width: 900px) {
  .hamburger { display: none; }
  .main-nav { display: flex; align-items: center; gap: .2rem; }
  .mobile-nav { display: none !important; }
  .hero { min-height: calc(100vh - 64px); }
  .divisions-grid { grid-template-columns: repeat(3, 1fr); }
  .courses-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-cards { display: grid; grid-template-columns: 1fr 1fr; }
  .feature-list { display: grid; grid-template-columns: 1fr 1fr; }
  .classes-grid { grid-template-columns: repeat(4,1fr); }
}
