@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
:root {
  --navy: #203057;
  --gold: #f2c94c;
  --white: #ffffff;
  --grass: #3a8d3f;
  --light: #eef3fb;
  --bg: #f6f8ff;
  --surface: #ffffff;
  --surface-alt: #f8fbff;
  --border: #dfe8f7;
  --shadow: 0 24px 55px rgba(29, 94, 232, 0.1);
  --text: #0f121f;
  --muted: #5b677f;
  --danger: #d64545;
  --info: #2375f8;
}
* {
  box-sizing:border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(242, 201, 76, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(58, 141, 63, 0.12), transparent 22%),
    linear-gradient(180deg, #f6f8ff 0%, #e9eef8 100%);
  color: var(--text);
  transition: background 0.3s ease, color 0.3s ease;
}
body.dark-mode {
  background: radial-gradient(circle at top left, rgba(242, 201, 76, 0.05), transparent 24%),
    radial-gradient(circle at top right, rgba(58, 141, 63, 0.06), transparent 22%),
    linear-gradient(180deg, #061125 0%, #091725 100%);
  color: #e9edf7;
}
body.dark-mode .site-header {
  background: rgba(4, 11, 26, 0.96);
  border-bottom-color: rgba(242, 201, 76, 0.16);
}
body.dark-mode .card,
body.dark-mode .footer,
body.dark-mode .contact-panel,
body.dark-mode .fee-calculator,
body.dark-mode .gallery-card,
body.dark-mode .link-card,
body.dark-mode .page-hero,
body.dark-mode .bottom-contact-bar,
body.dark-mode .testimonial-card,
body.dark-mode .event-card,
body.dark-mode .notice-card {
  background: rgba(10, 17, 39, 0.88);
  color: #e9edf7;
  border-color: rgba(255, 255, 255, 0.08);
}
body.dark-mode .main-nav a,
body.dark-mode .footer a,
body.dark-mode .card p,
body.dark-mode .testimonial-card p,
body.dark-mode .notice-card p {
  color: #d7dcf0;
}
body.dark-mode .hero-content h1,
body.dark-mode .brand-copy .brand-title,
body.dark-mode .hero-content p,
body.dark-mode .link-card h3,
body.dark-mode .event-meta,
body.dark-mode .testimonial-card h3,
body.dark-mode .notice-card h3 {
  color: #f5f8ff;
}
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select,
body.dark-mode button {
  background: rgba(255, 255, 255, 0.08);
  color: #eef2ff;
  border-color: rgba(255, 255, 255, 0.16);
}
body.dark-mode .btn-primary,
body.dark-mode .btn-accent,
body.dark-mode .btn-secondary,
body.dark-mode .fab,
body.dark-mode .app-nav-link {
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}
body.dark-mode .bottom-contact-bar {
  background: rgba(3, 12, 27, 0.95);
}
body.dark-mode .modal-content {
  background: #071025;
}
body.dark-mode .login-action,
body.dark-mode .theme-toggle {
  color: #f5f7ff;
}
body.dark-mode .app-nav-link.active,
body.dark-mode .app-nav-link:hover,
body.dark-mode .btn-primary:hover,
body.dark-mode .btn-secondary:hover,
body.dark-mode .btn-accent:hover {
  filter: brightness(1.05);
}
.bottom-contact-bar .app-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.bottom-contact-bar .app-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.bottom-contact-bar .app-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(6, 26, 71, 0.08);
  color: #fff;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}
.bottom-contact-bar .app-nav-link.active,
.bottom-contact-bar .app-nav-link:hover {
  background: rgba(242, 201, 76, 0.18);
  transform: translateY(-1px);
  border-color: rgba(242, 201, 76, 0.35);
}
.bottom-contact-bar .app-nav-link i {
  width: 1rem;
  text-align: center;
}
.bottom-contact-bar .app-actions .theme-toggle {
  padding: 0.7rem 0.85rem;
  background: rgba(242, 201, 76, 0.15);
  border-color: rgba(242, 201, 76, 0.35);
}
.bottom-contact-bar .login-action {
  padding: 0.7rem 1rem;
}

.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: grid;
  gap: 0.75rem;
  z-index: 1200;
}
.toast {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  min-width: 260px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  animation: toastIn 0.35s ease forwards;
  opacity: 0;
  transform: translateY(-6px);
}
.toast.toast-success { background: rgba(58, 141, 63, 0.15); border: 1px solid #3a8d3f; color: #0f2b12; }
.toast.toast-info { background: rgba(38, 103, 209, 0.12); border: 1px solid #2767d1; color: #0c2d57; }
.toast.toast-danger { background: rgba(214, 69, 69, 0.12); border: 1px solid #d64545; color: #5d1717; }
.toast span { flex: 1; }
.toast button { border: 0; background: transparent; color: inherit; cursor: pointer; font-size: 1rem; }

.login-modal,
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
}
.modal-backdrop.open,
.login-modal.open {
  display: block;
}
.modal-backdrop {
  background: rgba(7, 14, 38, 0.72);
}
.login-modal {
  display: grid;
  place-items: center;
  pointer-events: none;
}
.login-modal.open {
  pointer-events: auto;
}
.modal-content {
  width: min(420px, calc(100% - 2rem));
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(6, 26, 71, 0.18);
  position: relative;
}
.modal-content h3 {
  margin-bottom: 1rem;
  color: var(--navy);
}
.modal-content p {
  margin-bottom: 1.4rem;
  color: var(--muted);
}
.modal-content .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--muted);
}
.modal-content form {
  display: grid;
  gap: 1rem;
}
.modal-content input,
.modal-content button {
  width: 100%;
}
.modal-content .login-button {
  padding: 1rem 1.2rem;
  border-radius: 999px;
}

.bottom-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(6, 26, 71, 0.08);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  backdrop-filter: blur(10px);
}
.bottom-app-bar .app-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.bottom-app-bar .app-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(6, 26, 71, 0.06);
  color: var(--navy);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, border 0.25s ease;
}
.bottom-app-bar .app-nav-link.active,
.bottom-app-bar .app-nav-link:hover {
  background: rgba(242, 201, 76, 0.18);
  transform: translateY(-1px);
  border-color: rgba(242, 201, 76, 0.35);
}
.bottom-app-bar .app-nav-link i {
  width: 1.1rem;
  text-align: center;
}
.bottom-app-bar .app-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.fab {
  position: fixed;
  right: 1.2rem;
  bottom: 5.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--grass);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 24px 50px rgba(58, 141, 63, 0.25);
  cursor: pointer;
  z-index: 1150;
  transition: transform 0.2s ease;
}
.fab:hover {
  transform: translateY(-2px);
}

.club-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}
.club-category-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(6, 26, 71, 0.1);
  background: #fff;
  color: var(--navy);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.club-category-pill.active,
.club-category-pill:hover {
  background: rgba(242, 201, 76, 0.15);
  transform: translateY(-1px);
}
.club-card {
  position: relative;
  overflow: hidden;
}
.club-card h3 {
  margin: 1rem 0 0.65rem;
}
.club-card-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.club-card-actions button {
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.club-card-actions button.joined {
  background: rgba(58, 141, 63, 0.12);
  color: #2f5f2e;
}
.club-card-actions button:hover {
  background: rgba(242, 201, 76, 0.18);
  transform: translateY(-1px);
}
.event-featured-card {
  display: grid;
  gap: 1.5rem;
  background: linear-gradient(180deg, rgba(242, 201, 76, 0.23), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(242, 201, 76, 0.4);
}
.event-featured-badge {
  display: inline-flex;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(6, 26, 71, 0.08);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}
.testimonial-section {
  margin: 3rem 0 1rem;
}
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}
.testimonial-card {
  padding: 1.8rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.testimonial-card p {
  margin-top: 1rem;
  color: var(--muted);
}
.testimonial-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(242, 201, 76, 0.35);
}
.testimonial-author > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}
.testimonial-author strong,
.testimonial-author span {
  line-height: 1.2;
}
.testimonial-author div span {
  display: inline-block;
}
.testimonial-author strong {
  color: var(--navy);
}
.achievement-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  margin-top: 1.5rem;
}
.achievement-card {
  background: rgba(242, 201, 76, 0.1);
  padding: 1.2rem 1.3rem;
  border-radius: 24px;
  text-align: center;
}
.achievement-card h3 {
  font-size: 2rem;
  margin-bottom: 0.35rem;
}
.achievement-card p {
  color: var(--muted);
}
@keyframes toastIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button, .btn {
  font-family: 'Montserrat', sans-serif;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(5, 17, 51, 0.98), rgba(8, 34, 87, 0.95));
  border-bottom: 1px solid rgba(242, 201, 76, 0.12);
  box-shadow: 0 16px 40px rgba(5, 17, 51, 0.16);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(10px);
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 201, 76, 0.4), transparent);
}
.site-header.scrolled {
  background: rgba(7, 34, 89, 0.99);
  box-shadow: 0 18px 45px rgba(4, 14, 39, 0.3);
  padding: 10px 0 8px;
  border-bottom-color: rgba(242, 201, 76, 0.15);
}
.site-header.scrolled .brand-logo {
  width: 60px;
  height: 60px;
  padding: 8px;
}
.site-header.scrolled .brand-copy .eyebrow {
  font-size: 0.72rem;
}
.site-header.scrolled .brand-copy .brand-title {
  font-size: 0.98rem;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}
.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff 0%, #f5f7ff 100%);
  padding: 10px;
  box-shadow: 0 8px 24px rgba(242, 201, 76, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.brand-logo:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(242, 201, 76, 0.25);
  background: linear-gradient(135deg, #fff 0%, #e8eff8 100%);
}
.brand-copy {
  color: #f5f7ff;
}
.brand-copy .eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.24rem;
  color: #b7c7de;
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
}
.brand-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}
.visitor-greeting {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #f5f7ff;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.28s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.visitor-greeting.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}
.visitor-greeting:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(242, 201, 76, 0.35);
  transform: translateY(-1px);
}
.visitor-greeting span {
  color: var(--gold);
  font-weight: 700;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  color: #d7dcf0;
  padding: 0.75rem 1.1rem;
  border-radius: 18px;
  background: transparent;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f2c94c, transparent);
  transition: width 0.3s ease;
  z-index: -1;
}
.main-nav a:hover {
  color: #ffffff;
  background: rgba(242, 201, 76, 0.12);
  transform: translateY(-2px);
  letter-spacing: 0.06em;
}
.main-nav a:hover::before {
  width: 100%;
}
.main-nav a.active {
  color: #f2c94c;
  background: rgba(242, 201, 76, 0.15);
  font-weight: 700;
}
.main-nav a.active::before {
  width: 100%;
  background: #f2c94c;
}
.main-nav a:focus-visible {
  outline: 2px solid rgba(242, 201, 76, 0.95);
  outline-offset: 4px;
}
.nav-item-has-dropdown {
  position: relative;
}
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.dropdown-toggle span {
  transition: transform 0.3s ease;
}
.nav-item-has-dropdown:hover .dropdown-toggle span {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: linear-gradient(135deg, rgba(6, 26, 71, 0.99), rgba(8, 32, 78, 0.96));
  border: 1px solid rgba(242, 201, 76, 0.18);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 0.9rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.25s ease;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(242, 201, 76, 0.18);
}
.nav-item-has-dropdown:hover .dropdown-menu,
.nav-item-has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-item {
  display: block;
  padding: 0.85rem 1.4rem;
  color: #d7dcf0;
  white-space: nowrap;
  transition: all 0.22s ease;
  position: relative;
  padding-left: 1.4rem;
}
.dropdown-item::before {
  content: '▸';
  position: absolute;
  left: 0.8rem;
  color: #f2c94c;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.dropdown-item:hover::before {
  opacity: 1;
  transform: translateX(4px);
}
.dropdown-item:hover,
.dropdown-item:focus-visible {
  background: rgba(242, 201, 76, 0.15);
  color: #ffffff;
  padding-left: 1.65rem;
}
.menu-toggle {
  display: none;
  color: #f5f7ff;
  font-size: 2rem;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0.3rem 0.6rem;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}
.menu-toggle:hover {
  color: #f2c94c;
  transform: scale(1.1);
}
.menu-toggle:focus-visible {
  outline: 2px solid rgba(242, 201, 76, 0.9);
  outline-offset: 4px;
  border-radius: 8px;
}
.main-nav {
  display: flex;
  transition: all 0.3s ease;
}
/* Desktop: center the nav and add a left student login area */
@media (min-width: 901px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 12px;
  }
  .main-nav {
    justify-self: center;
    position: static;
    transform: none;
  }
  .menu-toggle {
    justify-self: end;
  }
  .student-login {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.75rem;
    background: rgba(242, 201, 76, 0.95);
    color: #0b2037;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: none;
  }
  .student-login:hover { filter: brightness(0.95); }
}
@media (max-width: 900px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: linear-gradient(135deg, rgba(6, 26, 71, 0.99), rgba(8, 32, 78, 0.96));
    flex-direction: column;
    padding: 1rem 1rem 1.5rem;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-15px);
    visibility: hidden;
    transition: max-height 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, transform 0.3s ease;
    order: 3;
    border-bottom: 1px solid rgba(242, 201, 76, 0.12);
    backdrop-filter: blur(8px);
  }
  .main-nav.open {
    max-height: calc(100vh - 100px);
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .main-nav.open a,
  .main-nav.open .dropdown-toggle {
    font-size: 0.92rem;
    background: rgba(242, 201, 76, 0.08);
    border-radius: 14px;
    line-height: 1.5;
    padding: 1rem 1rem;
    border: 1px solid rgba(242, 201, 76, 0.1);
  }
  .main-nav.open a:hover,
  .main-nav.open .dropdown-toggle:hover {
    background: rgba(242, 201, 76, 0.18);
    border-color: rgba(242, 201, 76, 0.25);
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .main-nav a,
  .dropdown-toggle {
    width: 100%;
    padding: 1rem 1rem;
  }
  .nav-item-has-dropdown .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0.5rem 0 0;
    backdrop-filter: none;
  }
  .nav-item-has-dropdown .dropdown-menu::before {
    display: none;
  }
  .dropdown-item {
    padding-left: 1.8rem;
    background: transparent;
  }
  .dropdown-item::before {
    left: 1rem;
  }
  .dropdown-item:hover {
    background: rgba(242, 201, 76, 0.1);
    padding-left: 2rem;
  }
  .menu-toggle {
    display: block;
    order: 2;
    margin-left: auto;
  }
  .site-header.scrolled .header-inner {
    padding: 12px 10px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    padding: 12px 8px;
    gap: 0.75rem;
  }
  .brand {
    gap: 0.65rem;
  }
  .brand-logo {
    width: 52px;
    height: 52px;
    padding: 6px;
  }
  .brand-copy .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.14rem;
  }
  .brand-title {
    font-size: 0.92rem;
  }
  .menu-toggle {
    font-size: 1.7rem;
    padding: 0.15rem 0.4rem;
  }
  .main-nav {
    padding: 0 0.9rem 1rem;
  }
  .main-nav ul {
    gap: 0.7rem;
  }
  .main-nav a {
    padding: 0.8rem 0.9rem;
    font-size: 0.95rem;
  }
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem 6rem;
}
.hero {
  position: relative;
  min-height: 75vh;
  background: linear-gradient(180deg, rgba(6, 26, 71, 0.7) 0%, rgba(6, 26, 71, 0.9) 100%), url('photos/church 2.jpeg') center/cover no-repeat;
  background-size: cover;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 32px;
  margin-bottom: 1.5rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 28%);
  pointer-events: none;
}
.home-page .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('logowo.png') center/contain no-repeat;
  opacity: 0.08;
  filter: grayscale(1) contrast(1.15);
  pointer-events: none;
}
.home-page .hero-content {
  position: relative;
  max-width: 720px;
  color: #fff;
  animation: slideInUp 0.9s ease both;
  padding: 2.1rem;
  background: rgba(5, 16, 41, 0.64);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 28px 70px rgba(2, 16, 44, 0.32);
}
.hero-content .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 1.2rem;
  line-height: 1.02;
}
.hero-content p {
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.leaders-section {
  margin: 3rem 0;
}
.leaders-section .section-heading h2 {
  font-size: clamp(2.3rem, 3.5vw, 3rem);
  color: var(--navy);
}
.leaders-section .lead {
  color: #2e4a77;
  max-width: 720px;
  margin-bottom: 1rem;
}
.leader-panel {
  padding: 1.8rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  border: 1px solid rgba(32, 48, 88, 0.12);
}
.leader-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.4rem;
}
.leader-photo-wrap {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  overflow: hidden;
  background: #f8fbff;
  border: 1px solid rgba(32, 48, 88, 0.1);
  display: grid;
  place-items: center;
}
.leader-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leader-panel h3 {
  margin-bottom: 0.45rem;
  color: var(--navy);
}
.leader-panel p {
  color: var(--muted);
  line-height: 1.8;
}
.leader-list {
  display: grid;
  gap: 0.85rem;
}
.leader-item {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(5, 16, 41, 0.05);
  border: 1px solid rgba(32, 48, 88, 0.1);
}
.leader-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}
.leader-item span {
  color: #2f4e7c;
  display: block;
  margin-bottom: 0.25rem;
}
.leader-item a {
  color: var(--grass);
  text-decoration: none;
  font-weight: 700;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  padding: 1rem 1.8rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.25s ease;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(6, 26, 71, 0.2);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: #f7d85d;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
}
.btn-accent:hover {
  background: #2d8d35;
}

.card,
.link-card,
.gallery-card,
.contact-panel,
.fee-calculator,
.requirements,
.page-hero,
.application-panel,
.application-summary {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover,
.link-card:hover,
.gallery-card:hover,
.fee-calculator:hover,
.contact-panel:hover,
.requirements:hover,
.application-panel:hover,
.application-summary:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 85px rgba(7, 27, 71, 0.12);
}
.gallery-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  will-change: transform;
}
.gallery-card img {
  transition: transform 0.4s ease;
}
.gallery-card:hover img {
  transform: scale(1.03);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
}
.btn-accent {
  background: var(--grass);
  color: #fff;
}
.highlight-number {
  color: var(--grass);
}
.section-heading {
  margin-bottom: 1.2rem;
}
.section-heading .eyebrow {
  color: var(--grass);
  margin-bottom: 0.75rem;
}
.section-heading h2 {
  font-size: 2.2rem;
  color: var(--navy);
}
.admissions-hero {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
  border-radius: 32px;
  margin-bottom: 2.5rem;
  background: linear-gradient(180deg, rgba(5, 14, 44, 0.88) 0%, rgba(8, 34, 79, 0.96) 100%), url('photos/students 4.jpeg') center/cover no-repeat;
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
}
.admissions-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('logowo.png') center/contain no-repeat;
  opacity: 0.08;
  filter: grayscale(1) contrast(1.2);
  pointer-events: none;
}
.admissions-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 24%, rgba(242, 201, 76, 0.16), transparent 28%),
              radial-gradient(circle at 82% 64%, rgba(255, 255, 255, 0.12), transparent 18%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.admissions-hero .hero-content {
  position: relative;
  max-width: 680px;
  color: #fff;
  padding: 2.75rem;
  animation: floatIn 0.85s ease-out both;
  background: rgba(5, 14, 38, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  box-shadow: 0 40px 80px rgba(3, 12, 34, 0.28);
  backdrop-filter: blur(12px);
}
.admissions-hero .hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  text-shadow: 0 18px 40px rgba(1, 8, 29, 0.6);
}
.admissions-hero .hero-content p {
  color: rgba(255, 255, 255, 0.95);
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.admissions-hero .hero-content .eyebrow {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(242, 201, 76, 0.95);
  margin-bottom: 1rem;
  font-size: 0.92rem;
}
.admissions-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.admissions-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.admissions-pill.active,
.admissions-pill:hover {
  background: rgba(242, 201, 76, 0.18);
  border-color: rgba(242, 201, 76, 0.35);
  transform: translateY(-1px);
}
.admissions-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 1.75rem;
  align-items: start;
}
.application-panel,
.application-summary {
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 255, 0.96));
  box-shadow: 0 32px 90px rgba(7, 27, 71, 0.1);
  border: 1px solid rgba(10, 34, 73, 0.09);
  position: relative;
  overflow: hidden;
}
.application-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(242, 201, 76, 1), rgba(242, 201, 76, 0.6));
}
.application-panel {
  padding-top: 1.75rem;
}
.application-summary {
  position: sticky;
  top: 1rem;
  padding: 2rem;
  min-height: fit-content;
}
.admissions-form {
  padding: 2rem;
}
.admissions-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.admissions-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.25s ease;
}
.admissions-pill.active,
.admissions-pill:hover {
  background: rgba(242, 201, 76, 0.2);
  border-color: rgba(242, 201, 76, 0.4);
  transform: translateY(-1px);
}
.admissions-form .form-label {
  display: block;
  margin-bottom: 0.65rem;
  color: #263450;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
}
.admissions-form .section-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.admissions-form .section-note {
  margin-bottom: 1.5rem;
}
.admissions-form .form-control,
.admissions-form .form-select,
.admissions-form textarea.form-control {
  border-radius: 16px;
  padding: 1rem 1.15rem;
  border: 1px solid #c7d4e7;
  background: #ffffff;
  color: #172639;
  min-height: 3.2rem;
  box-shadow: inset 0 1px 3px rgba(16, 35, 73, 0.05);
}
.admissions-form textarea.form-control {
  min-height: 160px;
}
.admissions-form .form-control:focus,
.admissions-form .form-select:focus {
  border-color: rgba(242, 201, 76, 0.8);
  box-shadow: 0 0 0 0.22rem rgba(242, 201, 76, 0.14);
}
.summary-header h3 {
  margin-bottom: 0.45rem;
}
.summary-header p {
  margin-bottom: 1.5rem;
  color: #5f728a;
}
.summary-item {
  padding: 1rem 0;
  border-bottom: 1px solid #e8eef8;
}
.summary-item:last-child {
  border-bottom: none;
}
.summary-label {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.summary-item p {
  color: #3c4d6f;
}
.summary-footer p {
  font-weight: 700;
  margin-bottom: 1rem;
}
.summary-footer ul {
  padding-left: 0;
  list-style: none;
}
.summary-footer ul li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: #3b4f74;
}
.text-gold {
  color: #f2c94c;
}
@media (max-width: 900px) {
  .admissions-grid {
    grid-template-columns: 1fr;
  }
}

.admissions-form .form-control,
.admissions-form .form-select {
  border-radius: 16px;
  padding: 1rem 1.1rem;
  border: 1px solid #dfe8f7;
  background: #f8fbff;
  color: #1e3143;
  min-height: 3.1rem;
}
.admissions-form .form-control::placeholder,
.admissions-form .form-select option[value=""] {
  color: #7d8b9a;
  opacity: 1;
}
.admissions-form .form-control:focus,
.admissions-form .form-select:focus {
  border-color: rgba(242, 201, 76, 0.7);
  box-shadow: 0 0 0 0.22rem rgba(242, 201, 76, 0.14);
}
.input-with-icon {
  position: relative;
}
.input-with-icon i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #5f728a;
  font-size: 1rem;
  pointer-events: none;
}
.input-with-icon input,
.input-with-icon select {
  padding-left: 2.7rem;
  color: #1e3143;
}

.gender-group .form-check {
  margin: 0;
}
.gender-group .form-check-input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
}
.gender-group .form-check-label {
  margin-left: 0.25rem;
  color: #24324a;
  font-weight: 600;
}

/* Ensure gender options display horizontally and don't wrap */
.gender-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
}
.gender-group .form-check {
  margin: 0;
  display: inline-flex;
  align-items: center;
}
.gender-group .form-check-input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0;
}
.gender-group .form-check-label {
  margin-left: 0.35rem;
}

.health-check .form-check-label {
  color: #24324a;
  font-weight: 600;
}
#healthDetails {
  border-radius: 12px;
  border: 1px solid #dfe8f7;
  padding: 0.9rem;
  color: #1e3143;
  background: #f8fbff;
}
.input-with-icon.focused .form-control,
.input-with-icon.focused .form-select {
  border-color: rgba(242, 201, 76, 0.85);
  box-shadow: 0 0 0 0.22rem rgba(242, 201, 76, 0.14);
}
.file-name-label {
  font-size: 0.92rem;
  color: #33475a;
  margin-top: 0.5rem;
  line-height: 1.4;
}
.upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.file-upload-field {
  padding: 1rem 1rem 0.85rem;
  border-radius: 22px;
  border: 1px solid #dfe8f7;
  background: #f4f7ff;
  display: grid;
  gap: 0.85rem;
}
.file-upload-field i {
  font-size: 1.2rem;
  color: rgba(47, 64, 94, 0.72);
  min-width: 1.4rem;
}
.file-upload-field strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #24324a;
}
.file-upload-field p {
  color: #5d6e89;
}
.upload-input {
  border: none;
  background: transparent;
  padding: 0;
}
.summary-header h3,
.section-heading h2 {
  color: var(--navy);
}
.summary-item {
  padding: 1rem 0;
  border-bottom: 1px solid #e8eef8;
}
.summary-item:last-child {
  border-bottom: none;
}
.summary-label {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.progress-box .progress {
  background: #e5efff;
}
.summary-footer p {
  font-weight: 600;
}
.summary-footer ul li {
  margin-bottom: 0.75rem;
}
@media (max-width: 900px) {
  .admissions-grid {
    grid-template-columns: 1fr;
  }
  .upload-grid {
    grid-template-columns: 1fr;
  }
}
/* Beautified Admissions Page Enhancements */
.form-section {
  position: relative;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 255, 0.6));
  border: 1px solid rgba(10, 34, 73, 0.08);
  box-shadow: 0 8px 32px rgba(7, 27, 71, 0.06);
  margin-bottom: 1.75rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.form-section:hover {
  box-shadow: 0 12px 42px rgba(7, 27, 71, 0.1);
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 255, 0.8));
}
.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #f2c94c, #ffc86b);
  border-radius: 24px 0 0 24px;
}
.section-title {
  color: #203057;
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.section-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #f2c94c, #ffc86b);
  border-radius: 2px;
  display: inline-block;
}
.section-note {
  color: #6b7d99;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}
.admissions-form .form-control,
.admissions-form .form-select {
  border: 1.5px solid #dfe8f7;
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  background: #ffffff;
  color: #172639;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(7, 27, 71, 0.04);
}
.admissions-form .form-control::placeholder {
  color: #8fa1b8;
  font-weight: 500;
}
.admissions-form .form-control:focus,
.admissions-form .form-select:focus {
  border-color: #f2c94c;
  box-shadow: 0 0 0 4px rgba(242, 201, 76, 0.12), 0 8px 20px rgba(242, 201, 76, 0.15);
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.98));
  transform: translateY(-1px);
}
.admissions-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.admissions-form textarea.form-control:focus {
  min-height: 140px;
}
.admissions-form .form-label {
  color: #203057;
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: -0.01em;
}
.admissions-form .form-label .text-danger {
  color: #e74c3c;
  font-size: 1.15em;
}
.admissions-form .form-check-input {
  width: 1.3rem;
  height: 1.3rem;
  border: 2px solid #dfe8f7;
  border-radius: 8px;
  margin-top: 0.25rem;
  transition: all 0.25s ease;
  cursor: pointer;
}
.admissions-form .form-check-input:hover {
  border-color: #f2c94c;
  box-shadow: 0 0 8px rgba(242, 201, 76, 0.2);
}
.admissions-form .form-check-input:checked {
  background: #f2c94c;
  border-color: #f2c94c;
  box-shadow: 0 2px 8px rgba(242, 201, 76, 0.3);
}
.admissions-form .form-check-label {
  color: #3a4d6f;
  font-weight: 600;
  margin-left: 0.6rem;
  cursor: pointer;
}
.btn-primary[type="submit"] {
  background: linear-gradient(135deg, #f2c94c, #ffd966);
  border: none;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(242, 201, 76, 0.35);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  color: #203057;
}
.btn-primary[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}
.btn-primary[type="submit"]:hover {
  background: linear-gradient(135deg, #ffd966, #ffe066);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(242, 201, 76, 0.45);
  color: #1a1f2e;
}
.btn-primary[type="submit"]:hover::before {
  left: 100%;
}
.btn-primary[type="submit"]:active {
  transform: translateY(0);
}
.application-summary {
  background: linear-gradient(180deg, rgba(32, 48, 87, 0.02), rgba(242, 201, 76, 0.04));
  border: 2px solid rgba(242, 201, 76, 0.15);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(32, 48, 87, 0.08);
}
.summary-header {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(242, 201, 76, 0.2);
}
.summary-header h3 {
  color: #203057;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.summary-item {
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(10, 34, 73, 0.05);
  transition: all 0.3s ease;
  cursor: default;
}
.summary-item:hover {
  background: rgba(242, 201, 76, 0.03);
  transform: translateX(4px);
  border-radius: 8px;
  padding-left: 0.5rem;
}
.summary-item:last-child {
  border-bottom: none;
}
.summary-label {
  color: #f2c94c;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.summary-item p {
  color: #3c4d6f;
  font-weight: 500;
  line-height: 1.6;
}
.summary-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(242, 201, 76, 0.2);
}
.summary-footer p {
  color: #203057;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.summary-footer ul li {
  color: #3a4d6f;
  font-weight: 600;
  transition: all 0.25s ease;
}
.summary-footer ul li:hover {
  color: #f2c94c;
  transform: translateX(4px);
}
.summary-footer .text-gold {
  color: #f2c94c;
  font-size: 1.1em;
  margin-right: 0.5rem;
}
@media (max-width: 620px) {
  .admissions-hero {
    min-height: auto;
    padding: 1.5rem;
  }
  .admissions-hero .hero-content {
    padding: 1.5rem 0;
  }
  .input-with-icon i {
    left: 0.85rem;
  }
  .form-section {
    padding: 1.5rem;
  }
  .section-title {
    font-size: 1.15rem;
  }
}
.page-hero-clubs {
  position: relative;
  min-height: 58vh;
  background: linear-gradient(180deg, rgba(6, 26, 71, 0.78) 0%, rgba(6, 26, 71, 0.95) 100%), url('photos/students 3.jpeg') center/cover no-repeat;
  background-size: cover;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 32px;
  margin-bottom: 2rem;
  padding: 2rem 1.2rem;
}
.page-hero-clubs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(242, 201, 76, 0.16), transparent 30%);
  pointer-events: none;
}
.club-search-panel {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.club-search {
  flex: 1;
  min-width: 240px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap:0.75rem;
  background: #fff;
  border: 1px solid rgba(7, 27, 71, 0.1);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  box-shadow: 0 18px 35px rgba(7, 27, 71, 0.08);
}
.club-search i {
  color: var(--gold);
  font-size: 1.15rem;
  text-align: center;
}
.club-search input {
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text);
  background: transparent;
  width: 100%;
}
.club-count {
  min-width: 150px;
  text-align: right;
  font-weight: 700;
  color: var(--navy);
}
.club-grid {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
}
.club-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(7, 27, 71, 0.08);
  border-radius: 26px;
  padding: 0;
}
.club-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(242, 201, 76, 0.14), transparent 30%);
  pointer-events: none;
  z-index: 0;
}
.club-card > * {
  position: relative;
  z-index: 1;
}
.club-card-media {
  overflow: hidden;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(242, 201, 76, 0.1), rgba(58, 141, 63, 0.08));
}
.club-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.club-card:hover .club-card-media img {
  transform: scale(1.03);
}
.club-card h3 {
  margin: 1.35rem 1.75rem 0.85rem;
  color: var(--navy);
}
.club-card p {
  color: var(--muted);
  line-height: 1.85;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.event-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(58, 141, 63, 0.16);
  box-shadow: 0 24px 60px rgba(58, 141, 63, 0.08);
}
.event-card:nth-child(odd) {
  border-color: rgba(242, 201, 76, 0.18);
  box-shadow: 0 24px 60px rgba(242, 201, 76, 0.1);
}
.event-card h3 {
  margin-bottom: 0.95rem;
  font-size: 1.4rem;
  color: var(--navy);
}
.event-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.event-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 44px;
  border-radius: 18px;
  background: rgba(6, 26, 71, 0.06);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 0.9rem;
}
.event-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(58, 141, 63, 0.12);
  color: var(--grass);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.event-featured-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(58, 141, 63, 0.14), rgba(242, 201, 76, 0.15));
  border: 1px solid rgba(58, 141, 63, 0.18);
  padding: 2rem;
  border-radius: 28px;
  margin-bottom: 1.5rem;
  box-shadow: 0 26px 70px rgba(7, 27, 71, 0.08);
}
.event-featured-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}
.event-featured-copy .eyebrow {
  color: var(--grass);
  margin-bottom: 0.75rem;
  display: inline-block;
}
.event-featured-copy h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  color: var(--navy);
}
.event-featured-copy p {
  color: var(--muted);
  line-height: 1.9;
  max-width: 760px;
}
.notice-list {
  display: grid;
  gap: 1rem;
}
.notice-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 20px 45px rgba(7, 27, 71, 0.07);
  overflow: hidden;
}
.notice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(242, 201, 76, 0.12), transparent 32%);
  pointer-events: none;
}
.notice-card.notice-highlight {
  border-left: 6px solid var(--gold);
  background: linear-gradient(180deg, #fff 0%, #fffbf2 100%);
}
.notice-card h3 {
  margin-bottom: 0.75rem;
}
.notice-card p {
  color: var(--muted);
  line-height: 1.8;
}
.notice-card h3,
.notice-card p {
  position: relative;
  z-index: 1;
}
.buzz-section {
  margin-bottom: 2rem;
}
.buzz-row {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.events-marquee,
.notice-ticker {
  overflow: hidden;
  border-radius: 28px;
}
.events-track {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  animation: scrollEvents 16s linear infinite;
}
.events-marquee:hover .events-track {
  animation-play-state: paused;
}
.events-track .event-card {
  flex: 0 0 320px;
  min-width: 320px;
}
.notice-ticker {
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem 1rem 0.5rem;
  height: 450px;
}
.notice-track {
  display: grid;
  gap: 1rem;
  animation: scrollNotices 14s linear infinite;
}
.notice-ticker:hover .notice-track {
  animation-play-state: paused;
}
@keyframes scrollEvents {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollNotices {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@media (max-width: 900px) {
  .buzz-row {
    grid-template-columns: 1fr;
  }
  .notice-ticker {
    height: auto;
    padding-bottom: 1rem;
  }
  .club-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }
  .club-search-panel {
    align-items: stretch;
  }
  .club-count {
    text-align: left;
    width: 100%;
  }
  .page-hero-clubs {
    min-height: auto;
    padding: 2rem 1.2rem;
  }
}
.carousel {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(7, 27, 71, 0.12);
  margin-bottom: 2rem;
}
.carousel-inner {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
}
.carousel-slide {
  min-width: 100%;
  padding: 2.3rem 2rem;
}
.carousel-slide h3 {
  font-size: 1.9rem;
  margin-bottom: 0.65rem;
  color: var(--navy);
}
.carousel-slide p,
.carousel-slide span {
  color: var(--muted);
}
.carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 2rem;
  border-top: 1px solid #eef1f8;
  background: #f8fbff;
}
.icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.4rem;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(6, 26, 71, 0.14);
}
.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.link-card {
  background: #fff;
  padding: 2rem;
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(7, 27, 71, 0.1);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.link-card span {
  font-size: 2.4rem;
}
.link-card h3 {
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.link-card p {
  color: var(--muted);
  line-height: 1.9;
}
.mission-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  margin: 2rem 0;
}
.mission-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  border: 1px solid rgba(32, 48, 88, 0.12);
  box-shadow: 0 30px 70px rgba(7, 27, 71, 0.08);
  padding: 2rem;
}
.mission-card .eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grass);
  margin-bottom: 0.8rem;
}
.mission-card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.mission-card p {
  color: #4a5e7e;
  line-height: 1.85;
}
.buzz-section {
  margin: 3rem 0 2rem;
}
.buzz-row {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1rem;
  align-items: start;
}
.events-marquee,
.notice-ticker {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(7, 27, 71, 0.11);
}
.events-track,
.notice-track {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}
.event-card,
.notice-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(32, 48, 88, 0.08);
}
.event-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.event-tag {
  color: var(--grass);
  font-weight: 700;
}
.event-card h3,
.notice-card h3 {
  margin-bottom: 0.65rem;
  color: var(--navy);
}
.notice-card p {
  color: var(--muted);
  line-height: 1.8;
}
.feature-cards {
  margin-bottom: 2rem;
}
.feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid rgba(32, 48, 88, 0.1);
  box-shadow: 0 26px 70px rgba(7, 27, 71, 0.09);
}
.feature-card h3 {
  margin-bottom: 0.75rem;
}
.feature-card p {
  color: #4a5e7e;
  line-height: 1.8;
}
.club-search-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.club-search {
  flex: 1 1 320px;
  position: relative;
}
.club-search i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: var(--muted);
}
.club-search input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 18px;
  border: 1px solid #dfe8f7;
}
.club-count {
  min-width: 140px;
  font-weight: 700;
  color: var(--navy);
}
.events-grid,
.testimonial-grid,
.achievement-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}
.event-card,
.notice-card,
.testimonial-card {
  background: #fff;
}
.event-meta,
.notice-card h3,
.testimonial-card h3 {
  color: var(--navy);
}
.card {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 24px 55px rgba(7, 27, 71, 0.1);
}
.card h3 {
  margin-bottom: 1rem;
  color: var(--navy);
}
.card p {
  color: var(--muted);
  line-height: 1.9;
}
.page-hero {
  position: relative;
  min-height: 65vh;
  background: linear-gradient(180deg, rgba(6, 26, 71, 0.72) 0%, rgba(6, 26, 71, 0.9) 100%), url('photos/students 1.jpeg') center/cover no-repeat;
  background-size: cover;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 28px;
  margin-bottom: 2rem;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 25%);
  pointer-events: none;
}
.page-hero .hero-content { position: relative; max-width: 720px; color: #fff; padding: 2rem; animation: slideInUp 0.9s ease both; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.9); }
..contact-page .page-hero {
  background: linear-gradient(180deg, rgba(6, 26, 71, 0.52) 0%, rgba(8, 35, 84, 0.56) 100%), url('photos/church 2.jpeg') center/cover no-repeat;
  background-blend-mode: overlay;
}
.contact-page .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('logowo.png') center/contain no-repeat;
  opacity: 0.08;
  filter: grayscale(1) contrast(1.15);
  pointer-events: none;
}
.contact-page .hero-content {
  position: relative;
  max-width: 680px;
  padding: 2.4rem;
  border-radius: 30px;
  background: rgba(5, 16, 41, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 80px rgba(5, 16, 41, 0.28);
}
.contact-page .hero-content h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}
.contact-page .hero-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.85;
}
.contact-page .contact-intro .lead {
  color: #dce2f0;
}
.academic-portal {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tab-buttons button {
  background: #f5f8ff;
  color: var(--navy);
  padding: 0.95rem 1.2rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
}
.tab-buttons button.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.grade-table-wrap {
  display: none;
}
.grade-table-wrap.active {
  display: block;
}
.grade-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.grade-table th,
.grade-table td {
  padding: 1rem 1rem;
  border-bottom: 1px solid #eef1f8;
  text-align: left;
}
.grade-table th {
  background: #f7f9ff;
  color: var(--navy);
}
.grade-tag {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(242, 201, 76, 0.16);
  color: var(--navy);
  font-size: 0.9rem;
}
.fee-calculator,
.requirements,
.contact-panel,
.gallery {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 24px 55px rgba(7, 27, 71, 0.1);
}
.contact-panel.mail-panel {
  border: 1px solid rgba(255, 207, 82, 0.3);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
}
.contact-panel.mail-panel .contact-panel-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eef1f8;
  padding-bottom: 1.25rem;
}
.contact-panel.mail-panel .contact-panel-header h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0;
}
.contact-panel.mail-panel .contact-tag {
  color: var(--grass);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.contact-panel.mail-panel .contact-details p {
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 0.98rem;
}
.contact-panel.mail-panel .contact-details strong {
  color: var(--navy);
}
.contact-panel.mail-panel .contact-details a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(6, 26, 71, 0.15);
}
.contact-panel.mail-panel .contact-details a:hover {
  color: var(--grass);
}
.contact-panel.mail-panel .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}
.contact-panel.mail-panel .btn-mail {
  background: linear-gradient(135deg, #061a47 0%, #0f2a6b 100%);
  color: #f8e08c;
  box-shadow: 0 18px 35px rgba(6, 26, 71, 0.28);
  border: 1px solid rgba(242, 201, 76, 0.35);
  border-radius: 999px;
  padding: 1rem 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.contact-panel.mail-panel .btn-mail:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #0b225d 0%, #153571 100%);
}
.contact-panel.mail-panel .btn-mail i {
  font-size: 1rem;
}
.fee-calculator form,
.contact-panel form {
  display: grid;
  gap: 1rem;
}
.fee-calculator label,
.contact-panel label {
  font-weight: 700;
  color: var(--navy);
}
.fee-calculator select,
.fee-calculator button,
.contact-panel input,
.contact-panel textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid #dfe8f7;
  font-size: 1rem;
}
.fee-calculator button,
.contact-panel button {
  width: fit-content;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 1rem 1.6rem;
  border: none;
}
.fee-result {
  background: rgba(230, 243, 255, 0.85);
  border-left: 4px solid var(--gold);
  padding: 1.35rem 1.4rem;
  border-radius: 18px;
  margin-top: 1rem;
  color: var(--navy);
  font-weight: 700;
}
.requirements ul {
  list-style: none;
  margin-top: 1rem;
}
.requirements li {
  margin-bottom: 1rem;
  color: var(--muted);
}
.requirement-toggle {
  cursor: pointer;
  display: grid;
  gap: 0.85rem;
  background: #f5f9ff;
  border: 1px solid #dfe8f7;
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
}
.requirement-toggle strong {
  color: var(--navy);
}
.requirement-detail {
  display: none;
  color: var(--muted);
}
.requirement-toggle.open .requirement-detail {
  display: block;
}
.map-responsive {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding-top: 56.25%;
}
.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}
.gallery-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 26, 71, 0.7) 100%);
}
.gallery-card figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: #fff;
  z-index: 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery-card:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ourschool-page .gallery-card img,
.ourschool-page .card img {
  max-width: 86%;
  width: auto;
  margin: 0 auto;
}
.footer {
  background: linear-gradient(135deg, #091834 0%, #132a56 50%, #0f1f3c 100%);
  color: #f4f7ff;
  padding: 3.5rem 1rem 1.5rem;
  border-top: 1px solid rgba(242, 201, 76, 0.15);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 201, 76, 0.4), transparent);
  animation: slideGradient 3s infinite;
}
@keyframes slideGradient {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(242, 201, 76, 0.1);
  padding: 12px;
  object-fit: contain;
  transition: transform 0.3s ease, background 0.3s ease;
}
.footer-brand:hover img {
  transform: scale(1.08) rotate(2deg);
  background: rgba(242, 201, 76, 0.2);
}
.footer-brand > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-brand p {
  margin: 0;
  line-height: 1.3;
}
.footer-brand p:first-child {
  color: #f5f7ff;
  font-weight: 600;
  font-size: 1.05rem;
}
.footer-brand p:last-child {
  color: #f2c94c;
  font-size: 0.9rem;
  font-style: italic;
}
.footer-copy {
  margin: 0;
  color: #a8b8d8;
  font-size: 0.9rem;
  text-align: center;
}
.footer-nav {
  display: block;
}
.footer-nav h3 {
  margin: 0 0 1.2rem;
  color: #f5f7ff;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer-nav h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #f2c94c, transparent);
  border-radius: 1px;
}
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.footer-nav li {
  transition: transform 0.2s ease;
}
.footer-nav li:hover {
  transform: translateX(4px);
}
.footer-nav a {
  color: #dce4f7;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.footer-nav a::before {
  content: '→';
  margin-right: 0.5rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}
.footer-nav a:hover::before {
  opacity: 1;
  transform: translateX(0);
  color: #f2c94c;
}
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #f2c94c;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-contact h3 {
  margin: 0 0 1.2rem;
  color: #f5f7ff;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #f2c94c, transparent);
  border-radius: 1px;
}
.footer-contact p {
  margin: 0;
  color: #d8e3ff;
  font-size: 0.95rem;
  line-height: 1.5;
}
.footer-contact a {
  color: #dce4f7;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}
.footer-contact a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f2c94c;
  transition: width 0.2s ease;
}
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #f2c94c;
}
.footer-contact a:hover::after {
  width: 100%;
}
.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-bottom .footer-copy {
  margin: 0;
  color: #8fa0c8;
  font-size: 0.9rem;
}
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.footer-nav a {
  color: #dce4f7;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #f2c94c;
}
.footer-symbol {
  font-size: 2.2rem;
  text-align: right;
}
.bottom-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: rgba(6, 26, 71, 0.96);
  color: #fff;
  padding: 0.85rem 1.2rem;
  z-index: 1100;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.bottom-contact-bar a {
  color: #fff;
  font-weight: 700;
}
.bottom-contact-bar .primary-number {
  color: var(--gold);
}

.floating-apply-button {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 1250;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  background: var(--gold);
  color: #0b1834;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 42px rgba(15, 40, 95, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.floating-apply-button:hover {
  transform: translateY(-1px);
  background: #f7d45f;
}
@media (max-width: 720px) {
  .floating-apply-button {
    right: 0.85rem;
    bottom: 7.5rem;
    padding: 0.85rem 1.1rem;
  }
}

.form-section {
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(210, 221, 239, 0.72);
  box-shadow: 0 20px 48px rgba(8, 27, 70, 0.06);
  animation: floatIn 0.85s ease both;
}
.form-section:nth-child(odd) {
  background: rgba(248, 252, 255, 0.98);
}
.section-title {
  font-size: 1.12rem;
  margin-bottom: 0.35rem;
  color: #17273d;
}
.section-note {
  font-size: 0.96rem;
  color: #5b6d88;
  margin-bottom: 1.15rem;
}
.file-upload-field {
  border-color: rgba(23, 64, 132, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.file-upload-field:hover {
  transform: translateY(-2px);
  border-color: rgba(58, 141, 63, 0.24);
  background: rgba(244, 250, 255, 0.97);
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.application-panel,
.application-summary {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.96));
  border: 1px solid rgba(28, 56, 112, 0.08);
  box-shadow: 0 26px 68px rgba(18, 42, 96, 0.10);
}
.form-section {
  padding: 1.6rem 1.4rem 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 221, 239, 0.7);
  box-shadow: 0 18px 40px rgba(9, 31, 78, 0.06);
  animation: floatIn 0.8s ease both;
}
.form-section:nth-child(odd) {
  background: rgba(248, 252, 255, 0.98);
}
.section-title {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  color: #17273d;
}
.section-note {
  font-size: 0.96rem;
  color: #5b6d88;
  margin-bottom: 1.15rem;
}
.file-upload-field {
  border-color: rgba(23, 64, 132, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.file-upload-field:hover {
  transform: translateY(-2px);
  border-color: rgba(58, 141, 63, 0.22);
  background: rgba(244, 250, 255, 0.98);
}
.admissions-pill {
  box-shadow: 0 18px 40px rgba(7, 26, 61, 0.12);
}
.admissions-pill.active {
  background: rgba(242, 201, 76, 0.22);
  border-color: rgba(242, 201, 76, 0.42);
}
.admissions-hero::after {
  animation: glowPulse 7s ease-in-out infinite;
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.01); }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .quick-links,
  .gallery-grid,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-nav,
  .footer-contact {
    margin: 0 auto;
  }
  .footer-bottom {
    margin-top: 1.5rem;
  }
  .footer-symbol {
    text-align: center;
  }
  .bottom-contact-bar {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 680px) {
  main {
    padding: 1.5rem 1rem 9.5rem;
  }
  .hero-content h1,
  .page-hero h1 {
    font-size: 2.4rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand-copy .brand-title {
    font-size: 0.95rem;
  }
  .menu-toggle {
    font-size: 2rem;
  }
}
