@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #1a2a6c;
  --primary-dark: #111c4e;
  --primary-light: #2d3f8f;
  --secondary: #c8a04a;
  --secondary-dark: #a07830;
  --accent: #4a6cf7;
  --bg-light: #f4f6ff;
  --bg-white: #ffffff;
  --text-dark: #1e1e2e;
  --text-muted: #6b7280;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(26,42,108,0.10);
  --shadow-lg: 0 10px 40px rgba(26,42,108,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --navbar-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.front-page-content {
  padding-top: var(--navbar-height);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--navbar-height);
  background: var(--primary);
  display: flex; align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.navbar.scrolled { height: 64px; background: var(--primary-dark); }

.nav-container {
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav-logo img { height: 50px; width: auto; border-radius: 6px; }
.nav-logo-text { color: #fff; }
.nav-logo-text span { display: block; }
.nav-logo-text .title { font-size: 1rem; font-weight: 700; letter-spacing: 0.5px; }
.nav-logo-text .sub { font-size: 0.72rem; color: var(--secondary); font-weight: 500; }

.nav-menu {
  display: flex; align-items: center; gap: 4px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem; font-weight: 500;
  padding: 8px 12px; border-radius: 8px;
  transition: var(--transition);
  cursor: pointer; white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.nav-link.active { color: var(--secondary); }
.nav-link svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; min-width: 220px;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 8px; opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.nav-item:hover .dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 9px 14px;
  font-size: 0.82rem; color: var(--text-dark);
  border-radius: 8px; transition: var(--transition);
}
.dropdown a:hover { background: var(--bg-light); color: var(--primary); }

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; color: #fff;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: var(--navbar-height); left: 0; right: 0; bottom: 0;
  background: var(--primary-dark);
  overflow-y: auto; z-index: 999;
  padding: 16px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; color: #fff; padding: 12px 16px;
  border-radius: 8px; font-size: 0.9rem;
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); }
.mobile-menu .m-section { color: var(--secondary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 16px 16px 4px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--navbar-height);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,160,74,0.2); border: 1px solid rgba(200,160,74,0.4);
  color: var(--secondary); font-size: 0.78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; color: #fff; line-height: 1.15;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--secondary); }
.hero p {
  color: rgba(255,255,255,0.78); font-size: 1.05rem;
  margin-bottom: 32px; max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
}
.btn-primary {
  background: var(--secondary); color: var(--primary-dark);
}
.btn-primary:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,160,74,0.4); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 32px; margin-top: 40px;
}
.stat { color: #fff; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--secondary); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

.hero-image-box {
  position: relative;
}
.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg); padding: 32px;
  color: #fff;
}
.hero-card-icon {
  width: 56px; height: 56px;
  background: var(--secondary); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px;
}
.hero-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.hero-card p { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.hero-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-card-mini {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 16px;
  text-align: center;
}
.hero-card-mini .num { font-size: 1.4rem; font-weight: 800; color: var(--secondary); }
.hero-card-mini .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(26,42,108,0.08); color: var(--primary);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; padding: 5px 14px; border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
  color: var(--text-dark); margin-bottom: 14px; line-height: 1.2;
}
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 540px; margin: 0 auto; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 32px;
  transition: var(--transition); border: 1px solid var(--border);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px; color: #fff;
}
.card-icon.gold { background: linear-gradient(135deg, var(--secondary-dark), var(--secondary)); }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: 0.82rem; font-weight: 600;
  margin-top: 16px; transition: var(--transition);
}
.card-link:hover { gap: 10px; }

/* ── INFO BLOCK ── */
.info-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.info-block.reverse { direction: rtl; }
.info-block.reverse > * { direction: ltr; }
.info-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--bg-light);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.info-text .label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--secondary); margin-bottom: 12px;
}
.info-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.info-text p { color: var(--text-muted); margin-bottom: 14px; font-size: 0.95rem; }

/* ── ACCORDION ── */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.acc-item.open { box-shadow: var(--shadow); }
.acc-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; cursor: pointer; background: #fff;
  font-weight: 600; font-size: 0.95rem; transition: var(--transition);
}
.acc-header:hover { background: var(--bg-light); }
.acc-header svg { width: 18px; height: 18px; transition: transform 0.3s; color: var(--primary); flex-shrink: 0; }
.acc-item.open .acc-header svg { transform: rotate(180deg); }
.acc-body {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  background: var(--bg-light);
}
.acc-item.open .acc-body { max-height: 600px; }
.acc-body-inner { padding: 18px 20px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.acc-body-inner a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 500; padding: 6px 0;
  border-bottom: 1px solid var(--border); width: 100%;
  transition: var(--transition);
}
.acc-body-inner a:hover { color: var(--secondary); padding-left: 6px; }
.acc-body-inner a:last-child { border-bottom: none; }

/* ── NOTICES ── */
.notices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.notice-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: var(--transition);
}
.notice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.notice-img {
  height: 180px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: rgba(255,255,255,0.4);
}
.notice-body { padding: 24px; }
.notice-date { font-size: 0.72rem; color: var(--secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; }
.notice-body h3 { font-size: 1rem; font-weight: 700; margin: 8px 0; }
.notice-body p { font-size: 0.85rem; color: var(--text-muted); }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; padding: 60px 0;
}
.contact-strip-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px;
  align-items: center;
}
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(200,160,74,0.2); border: 1px solid rgba(200,160,74,0.4);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-item h4 { font-size: 0.78rem; font-weight: 600; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; }
.contact-item p { font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.contact-item a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.contact-item a:hover { color: var(--secondary); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: calc(var(--navbar-height) + 56px) 0 56px;
  color: #fff; text-align: center;
}
.page-hero .breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 16px;
}
.page-hero .breadcrumb a:hover { color: var(--secondary); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-hero h1 span { color: var(--secondary); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ── FOOTER ── */
footer {
  background: var(--primary-dark); color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo-text .title { font-size: 1.1rem; }
.footer-brand p { font-size: 0.85rem; margin-top: 14px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: var(--primary-dark); }
.footer-col h4 { color: #fff; font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-col a { display: block; font-size: 0.83rem; padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--secondary); padding-left: 4px; }
.footer-bottom {
  text-align: center; padding: 20px 0; font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ── TABLE ── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; background: #fff; }
th { background: var(--primary); color: #fff; padding: 14px 18px; text-align: left; font-size: 0.83rem; font-weight: 600; }
td { padding: 12px 18px; font-size: 0.85rem; color: var(--text-dark); border-bottom: 1px solid var(--border); }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--bg-light); }
tr:hover td { background: rgba(26,42,108,0.04); }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: var(--text-dark);
  transition: var(--transition); background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,42,108,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── BADGES ── */
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-blue { background: rgba(26,42,108,0.1); color: var(--primary); }
.badge-gold { background: rgba(200,160,74,0.15); color: var(--secondary-dark); }
.badge-green { background: rgba(16,185,129,0.1); color: #059669; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; } .delay-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-box { display: none; }
  .info-block { grid-template-columns: 1fr; }
  .info-block.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .notices-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}

/* Rediseno inspirado en la estructura visual de Bucaramanga */
:root {
  --primary: #173f8f;
  --primary-dark: #092b6f;
  --primary-light: #1f62b8;
  --secondary: #f4bd24;
  --secondary-dark: #d99500;
  --accent: #e1292f;
  --bg-light: #f3f7fc;
  --text-dark: #183056;
  --text-muted: #68778d;
  --border: #dce6f2;
  --shadow: 0 8px 24px rgba(25, 61, 117, 0.12);
  --shadow-lg: 0 18px 45px rgba(25, 61, 117, 0.18);
  --navbar-height: 86px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
}

.bga-topbar {
  background: #0b2d72;
  color: #fff;
  font-size: 0.78rem;
}

.bga-topbar .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.bga-topbar i {
  color: var(--secondary);
  margin-right: 6px;
}

.bga-social {
  display: inline-flex;
  gap: 12px;
}

.navbar {
  top: 34px;
  height: var(--navbar-height);
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 4px 18px rgba(10, 36, 82, 0.16);
}

.admin-bar .navbar {
  top: 66px;
}

.nav-container {
  max-width: 1180px;
}

.nav-logo {
  gap: 14px;
}

.nav-logo img {
  height: 70px;
  width: auto;
  border-radius: 0;
  object-fit: contain;
}

.nav-logo-text {
  color: var(--primary-dark);
}

.nav-logo-text .title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.nav-logo-text .sub {
  color: var(--accent);
  font-weight: 700;
}

.nav-link {
  color: var(--primary-dark);
  font-weight: 700;
  border-radius: 4px;
  padding: 12px 10px;
}

.nav-link:hover,
.nav-link.active {
  background: var(--primary);
  color: #fff;
}

.bga-nav-cta {
  background: var(--secondary);
  color: #17325d;
}

.dropdown {
  border-radius: 0;
  border-top: 4px solid var(--secondary);
}

.nav-toggle {
  color: var(--primary-dark);
}

.front-page-content {
  padding-top: calc(var(--navbar-height) + 34px);
}

.bga-home {
  padding-top: calc(var(--navbar-height) + 34px);
}

.bga-hero {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
}

.bga-hero-track,
.bga-slide {
  position: absolute;
  inset: 0;
}

.bga-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: bgaSlide 18s infinite;
}

.bga-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 39, 98, 0.78), rgba(8, 39, 98, 0.15) 58%, rgba(8, 39, 98, 0));
}

.bga-slide-one {
  background-image: url("https://colpresentacioneiva.edu.co/wp-content/uploads/2023/04/imagen-pie-sin-abeja.png");
}

.bga-slide-two {
  background-image: url("https://colpresentacioneiva.edu.co/wp-content/uploads/2023/04/soy-presentacion1.png");
  animation-delay: 6s;
}

.bga-slide-three {
  background-image: url("https://colpresentacioneiva.edu.co/wp-content/uploads/2023/04/logo_principal.png");
  animation-delay: 12s;
}

@keyframes bgaSlide {
  0%, 30% { opacity: 1; transform: scale(1); }
  36%, 94% { opacity: 0; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1); }
}

.bga-hero-panel {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 24px 90px;
  color: #fff;
}

.bga-hero-panel span {
  display: inline-block;
  background: var(--secondary);
  color: #17325d;
  font-weight: 800;
  text-transform: uppercase;
  padding: 8px 14px;
  margin-bottom: 18px;
}

.bga-hero-panel h1 {
  max-width: 620px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 18px;
}

.bga-hero-panel p {
  max-width: 560px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.bga-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bga-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 2px;
}

.bga-btn-primary {
  background: var(--accent);
  color: #fff;
}

.bga-btn-light {
  background: #fff;
  color: var(--primary-dark);
}

.bga-shortcuts {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.bga-shortcut-grid {
  max-width: 1180px;
  margin: -42px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  box-shadow: var(--shadow-lg);
}

.bga-shortcut-grid a {
  min-height: 128px;
  background: #fff;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--primary-dark);
  font-weight: 800;
  padding: 18px 12px;
}

.bga-shortcut-grid a:nth-child(even) {
  background: var(--bg-light);
}

.bga-shortcut-grid i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.2rem;
}

.bga-band {
  padding: 84px 0;
  background: #f7fbff;
}

.bga-two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.bga-kicker,
.section-tag {
  color: var(--accent);
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bga-two-col h2,
.bga-principles-head h2 {
  color: var(--primary-dark);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 10px 0 18px;
}

.bga-two-col p {
  color: var(--text-muted);
  font-size: 1rem;
}

.bga-link {
  display: inline-flex;
  gap: 8px;
  color: var(--accent);
  font-weight: 900;
  margin-top: 18px;
}

.bga-news-box {
  background: #fff;
  border-top: 5px solid var(--secondary);
  box-shadow: var(--shadow);
  padding: 28px;
}

.bga-news-box h3 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.bga-news-box a {
  display: block;
  padding: 12px 0;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}

.bga-section-title h2 {
  color: var(--primary-dark);
}

.bga-academic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.bga-academic-card {
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bga-academic-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.bga-academic-card div {
  padding: 22px;
}

.bga-academic-card h3 {
  color: var(--primary-dark);
  font-size: 1.35rem;
}

.bga-academic-card p {
  color: var(--text-muted);
  margin: 8px 0 14px;
}

.bga-academic-card span {
  color: var(--accent);
  font-weight: 900;
}

.bga-principles {
  background: var(--primary-dark);
  color: #fff;
  padding: 84px 0;
}

.bga-principles-head {
  text-align: center;
  margin-bottom: 36px;
}

.bga-principles-head h2 {
  color: #fff;
}

.bga-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bga-principle-grid div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 30px;
  text-align: center;
}

.bga-principle-grid i {
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 14px;
}

footer {
  background: #08265e;
}

footer .nav-logo img {
  height: 62px;
  background: #fff;
  padding: 4px;
}

.footer-col h4 {
  color: var(--secondary);
}

@media (max-width: 980px) {
  .bga-topbar .container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 16px;
  }

  .navbar {
    top: 50px;
  }

  .admin-bar .navbar {
    top: 82px;
  }

  .bga-home,
  .front-page-content {
    padding-top: calc(var(--navbar-height) + 50px);
  }

  .bga-shortcut-grid,
  .bga-academic-grid,
  .bga-principle-grid,
  .bga-two-col {
    grid-template-columns: 1fr;
  }

  .bga-shortcut-grid {
    margin: 0;
  }
}
