/* =============================================================
   LEKKI SPORTS ACADEMY - Premium Brand Identity
   Colors: Premium Black | Luxury Gold | Premium Emerald Green
   ============================================================= */

:root {
  --black: #0F0F0F;
  --black-2: #181818;
  --black-3: #1F1F1F;

  --gold: #C8A34D;
  --gold-light: #D4AF37;
  --gold-dark: #B8892D;

  --green: #0B3D2E;
  --green-light: #0E4A38;
  --green-dark: #145A42;

  --primary: var(--green);
  --primary-dark: #082D22;
  --secondary: var(--gold);
  --secondary-light: var(--gold-light);
  --accent: #C0392B;

  --text-dark: #1a1a2e;
  --text-light: #8a8a9a;
  --text-white: #ffffff;
  --text-muted: #a0a0b0;

  --bg-light: #F5F3EF;
  --bg-white: #FFFFFF;
  --bg-dark: var(--black);
  --bg-section-alt: #F0EDE8;

  --primary-light: #0E4A38;
  --secondary-light: var(--gold-light);
  --gradient-1: var(--gradient-dark);
  --gradient-2: var(--gradient-gold);

  --gradient-dark: linear-gradient(135deg, var(--black) 0%, #1A1A1A 50%, var(--black) 100%);
  --gradient-green: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 50%, var(--green) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  --gradient-black-green: linear-gradient(135deg, var(--black) 0%, var(--green) 100%);
  --gradient-hero: linear-gradient(135deg, #0A0A0A 0%, var(--green) 70%, #0A0A0A 100%);
  --gradient-card: linear-gradient(135deg, rgba(11,61,46,0.95) 0%, rgba(15,15,15,0.98) 100%);

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --shadow-gold: 0 5px 20px rgba(200,163,77,0.25);
  --shadow-gold-lg: 0 10px 40px rgba(200,163,77,0.3);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

* {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  overflow-x: hidden;
  padding-top: 85px;
  background: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--green);
}

a {
  color: var(--green);
  transition: var(--transition);
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
  flex-direction: column;
  gap: 24px;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader .loader-logo {
  height: 46px;
  width: auto;
  border-radius: 6px;
  z-index: 1;
  position: relative;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(200, 163, 77, 0.1);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  border-radius: 50%;
  animation: spin 0.9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  z-index: 1;
}

.loader-subtitle {
  font-family: var(--font-primary);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== MAIN HEADER / NAVIGATION ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid rgba(200, 163, 77, 0.08);
}

.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.98);
}

.main-header .navbar {
  padding: 10px 0;
  transition: padding 0.3s ease;
}

.main-header.scrolled .navbar {
  padding: 6px 0;
}

.main-header .navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.main-header .navbar-brand img {
  height: 65px;
  width: auto;
  transition: height 0.35s ease;
  flex-shrink: 0;
}

.main-header.scrolled .navbar-brand img {
  height: 52px;
}

.main-header .navbar-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1.2px;
  line-height: 1.15;
  white-space: nowrap;
  transition: font-size 0.35s ease, letter-spacing 0.35s ease;
  margin-right: 25px;
}

.main-header .navbar-brand .brand-text-highlight {
  color: var(--gold);
  font-weight: 800;
}

.main-header.scrolled .navbar-brand .brand-text {
  font-size: 16px;
  letter-spacing: 1px;
}

.navbar .nav-link {
  color: rgba(15,15,15,0.85) !important;
  font-weight: 500;
  font-size: 12px;
  padding: 8px 18px !important;
  transition: color 0.25s ease;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.navbar-nav {
  gap: 4px;
}

@media (min-width: 1200px) {
  .navbar-nav {
    gap: 8px;
  }
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold) !important;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar .btn-apply {
  background: var(--gradient-gold) !important;
  color: var(--black) !important;
  font-weight: 600;
  padding: 8px 24px !important;
  border-radius: 50px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  text-transform: none;
  font-size: 13px;
  box-shadow: var(--shadow-gold);
  border: none;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.navbar .btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 163, 77, 0.35);
  color: var(--black) !important;
  background: linear-gradient(135deg, #d4af37, #c8a34d) !important;
}

.navbar .btn-apply:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  color: var(--black) !important;
}

.navbar .btn-apply:active {
  transform: translateY(0);
  box-shadow: var(--shadow-gold);
  color: var(--black) !important;
}

.navbar .btn-apply::after,
.navbar .btn-apply:hover::after,
.navbar .btn-apply:focus::after,
.navbar .btn-apply:active::after {
  display: none !important;
}

.navbar .btn-apply i {
  font-size: 11px;
}

/* ===== NAV AUTH BUTTONS (Login / Register) ===== */
.nav-auth-item {
  list-style: none;
}

.nav-login-btn,
.nav-register-btn {
  font-size: 12px !important;
  padding: 6px 16px !important;
  border-radius: 50px !important;
  text-transform: none !important;
  letter-spacing: 0.3px !important;
  font-weight: 600 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  white-space: nowrap;
}

.nav-login-btn {
  color: var(--green) !important;
  border: 1.5px solid var(--green) !important;
  background: transparent !important;
}

.nav-login-btn:hover {
  background: var(--green) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(26,86,50,0.25);
}

.nav-login-btn:hover::after,
.nav-login-btn::after {
  display: none !important;
}

.nav-register-btn {
  color: #fff !important;
  background: var(--green) !important;
  border: 1.5px solid var(--green) !important;
  box-shadow: 0 4px 14px rgba(26,86,50,0.2);
}

.nav-register-btn:hover {
  background: #0f3d24 !important;
  border-color: #0f3d24 !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(26,86,50,0.35);
  transform: translateY(-1px);
}

.nav-register-btn:hover::after,
.nav-register-btn::after {
  display: none !important;
}

.nav-auth-mobile-item {
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

.nav-auth-mobile-item .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px !important;
  padding: 14px 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.nav-auth-mobile-item .nav-link:hover {
  color: var(--gold) !important;
}

/* ===== SIMPLE DROPDOWN MENUS (News, Gallery, FAQ) ===== */
.navbar .dropdown-menu {
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  margin-top: 6px;
}

.navbar .dropdown-menu .dropdown-item {
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(15,15,15,0.85);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.navbar .dropdown-menu .dropdown-item i {
  width: 16px;
  color: var(--gold);
  font-size: 12px;
  text-align: center;
  transition: transform 0.2s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background: rgba(11,61,46,0.06);
  color: var(--green);
  padding-left: 26px;
}

.navbar .dropdown-menu .dropdown-item:hover i {
  transform: translateX(2px);
}

.navbar .dropdown-menu .dropdown-divider {
  margin: 4px 0;
  border-color: rgba(200,163,77,0.15);
}

/* Dropdown header styling */
.navbar .dropdown-menu .dropdown-header {
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  border: none;
}

/* Active state for dropdown parent */
.navbar .nav-link.dropdown-toggle.active {
  color: var(--gold) !important;
}

.navbar .nav-link.dropdown-toggle.active::after {
  transform: scaleX(1);
}

/* Dropdown caret override - match brand */
.navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 9px;
  border: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--gold);
  opacity: 0.7;
}

.navbar .dropdown.show > .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* ===== GLOBAL BUTTON STYLES ===== */
.btn-primary-custom {
  background: var(--gradient-gold) !important;
  color: #0F0F0F !important;
  box-shadow: var(--shadow-gold);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(200, 163, 77, 0.4);
  color: #0F0F0F !important;
}

.btn-primary-custom:active {
  transform: translateY(0);
  box-shadow: var(--shadow-gold);
}

.btn-outline-custom {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.3px;
  text-align: center;
}

.btn-outline-custom:hover {
  background: var(--green);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,61,46,0.2);
  border-color: var(--green);
}

/* ===== MEGA MENU ===== */
.mega-menu {
  position: static !important;
}

.mega-menu .dropdown-menu {
  width: 100%;
  max-width: 100vw;
  padding: 28px 32px;
  border: none;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 40px rgba(0,0,0,0.04);
  margin-top: 0;
  border-top: 3px solid var(--gold);
  background: rgba(255,255,255,0.98);
}

.mega-menu .dropdown-menu .menu-group-title {
  font-family: var(--font-heading);
  color: var(--green);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  transition: color 0.25s ease;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
}

.mega-menu .dropdown-menu .menu-group-title:hover {
  color: var(--gold);
}

.mega-menu .dropdown-menu .menu-group-title i {
  color: var(--gold);
  font-size: 14px;
}

.mega-menu .dropdown-menu .menu-item {
  display: block;
  padding: 5px 0;
  color: rgba(15,15,15,0.8);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.25s ease, padding-left 0.25s ease;
  position: relative;
}

.mega-menu .dropdown-menu .menu-item:hover {
  color: var(--green);
  padding-left: 8px;
  font-weight: 500;
}

.mega-menu .dropdown-menu .menu-item i {
  width: 16px;
  color: var(--gold);
  margin-right: 8px;
  font-size: 9px;
  transition: transform 0.25s ease;
}

.mega-menu .dropdown-menu .menu-item:hover i {
  transform: translateX(2px);
}

.dropdown-menu .btn-outline-primary {
  color: var(--gold);
  border-color: var(--gold);
  border-radius: 50px;
  padding: 8px 24px;
  font-weight: 500;
  font-size: 13px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.2px;
}

.dropdown-menu .btn-outline-primary:hover {
  background: var(--gradient-gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.dropdown-menu .btn-outline-primary:active {
  transform: translateY(0);
}

@media (min-width: 992px) {
  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s ease;
    pointer-events: none;
  }

  .dropdown:hover > .dropdown-menu,
  .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .mega-menu .dropdown-menu {
    transform: translateY(12px);
  }
  
  .dropdown:hover > .mega-menu .dropdown-menu,
  .mega-menu .dropdown-menu.show {
    transform: translateY(0);
  }
}

/* ===== NAV OVERLAP FIX: Compact nav on medium-large screens ===== */
@media (min-width: 992px) and (max-width: 1399px) {
  .main-header .navbar-brand .brand-text {
    font-size: 16px;
    letter-spacing: 0.8px;
    margin-right: 15px;
  }

  .main-header .navbar-brand img {
    height: 55px;
  }

  .main-header .navbar-brand {
    gap: 10px;
  }

  .navbar .nav-link {
    padding: 7px 13px !important;
    font-size: 11px;
    letter-spacing: 0.3px;
  }

  .navbar .nav-link::after {
    left: 13px;
    right: 13px;
  }

  .navbar .btn-apply {
    padding: 7px 18px !important;
    font-size: 12px;
  }

  .nav-login-btn,
  .nav-register-btn {
    font-size: 11px !important;
    padding: 5px 14px !important;
  }

  .navbar-nav {
    gap: 2px;
  }
}

@media (min-width: 1400px) {
  .main-header .navbar-brand .brand-text {
    margin-right: 30px;
  }

  .navbar-nav {
    gap: 10px;
  }

  .navbar .nav-link {
    padding: 8px 20px !important;
    font-size: 13px;
  }
}

/* ===== HAMBURGER MENU (Animated) ===== */
.navbar-toggler {
  border: none !important;
  padding: 0 !important;
  width: 44px;
  height: 36px;
  position: relative;
  background: transparent !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: none !important;
  outline: none !important;
}

.navbar-toggler:hover {
  opacity: 0.8;
}

.navbar-toggler .hamburger-bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green);
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.navbar-toggler[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  display: none;
}

@media (max-width: 991px) {
  .main-header .navbar {
    padding: 8px 0;
  }

  .main-header.scrolled .navbar {
    padding: 6px 0;
  }

  .main-header .navbar-brand img {
    height: 55px;
  }

  .main-header .navbar-brand .brand-text {
    font-size: 15px;
    letter-spacing: 1px;
    margin-right: 0;
  }

  .main-header.scrolled .navbar-brand img {
    height: 46px;
  }

  .main-header.scrolled .navbar-brand .brand-text {
    font-size: 14px;
  }

  /* Prevent body scroll when mobile menu is open */
  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  .navbar-collapse {
    background: var(--black);
    padding: 16px 20px 24px;
    border-radius: 0 0 16px 16px;
    max-height: calc(100dvh - 65px);
    overflow-y: auto;
    overflow-x: hidden;
    border-top: 2px solid var(--gold);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    -webkit-overflow-scrolling: touch;
  }

  .navbar-collapse.collapsing {
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar .nav-item {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .navbar .nav-item:last-child {
    border-bottom: none;
  }

  .navbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
    padding: 14px 0 !important;
    text-transform: none;
    font-size: 14px;
    letter-spacing: 0;
    position: relative;
  }

  .navbar .nav-link::after {
    display: none;
  }

  .navbar .nav-link:hover,
  .navbar .nav-link.active {
    color: var(--gold) !important;
  }

  /* Dropdown caret on mobile */
  .navbar .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: auto;
    vertical-align: middle;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    border: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gold);
    opacity: 0.6;
    margin-top: 0;
  }

  .navbar .dropdown.show > .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .navbar .btn-apply {
    display: inline-flex;
    margin-top: 10px;
    margin-bottom: 6px;
    justify-content: center;
    width: 100%;
    font-size: 14px;
    padding: 13px 22px !important;
    border-radius: 50px;
    gap: 8px;
  }

  .mega-menu {
    position: relative !important;
  }

  .mega-menu .dropdown-menu {
    background: rgba(255,255,255,0.04);
    margin-left: 0;
    margin-top: 0;
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    position: static !important;
    float: none;
    width: 100%;
    box-shadow: none;
    border-top: none;
    transform: none !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    max-height: 0;
    overflow: hidden;
    padding: 0 12px;
    visibility: visible;
    opacity: 1;
  }

  .mega-menu .dropdown-menu.show {
    max-height: 2000px;
    padding: 8px 12px 14px;
  }

  .mega-menu .dropdown-menu .row {
    display: block;
  }

  .mega-menu .dropdown-menu .row > div {
    width: 100%;
    max-width: 100%;
    flex: none;
    padding: 0;
    margin-bottom: 8px;
  }

  .mega-menu .dropdown-menu .menu-group-title {
    color: var(--gold);
    font-size: 13px;
    border-bottom-color: rgba(200,163,77,0.25);
    margin-bottom: 6px;
    padding-bottom: 4px;
    letter-spacing: 0.2px;
  }

  .mega-menu .dropdown-menu .menu-item {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    padding: 5px 0;
    padding-left: 4px;
  }

  .mega-menu .dropdown-menu .menu-item:hover {
    color: var(--gold);
    padding-left: 12px;
  }

  .mega-menu .dropdown-menu hr {
    display: none;
  }

  .mega-menu .dropdown-menu .text-center {
    text-align: left !important;
    padding: 4px 0;
  }

  .mega-menu .dropdown-menu .btn-outline-primary {
    display: inline-block;
    width: auto;
    font-size: 12px;
    padding: 6px 18px;
    border-color: var(--gold);
    color: var(--gold);
  }

  .mega-menu .dropdown-menu .btn-outline-primary:hover {
    background: var(--gold);
    color: var(--black);
  }

  .navbar-collapse::-webkit-scrollbar {
    width: 3px;
  }

  .navbar-collapse::-webkit-scrollbar-track {
    background: transparent;
  }

  .navbar-collapse::-webkit-scrollbar-thumb {
    background: rgba(200,163,77,0.25);
    border-radius: 4px;
  }

  /* Simple dropdowns on mobile (News, Gallery, FAQ) */
  .navbar .dropdown-menu {
    background: rgba(255,255,255,0.04);
    margin-left: 0;
    margin-top: 0;
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    position: static !important;
    float: none;
    width: 100%;
    box-shadow: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    transform: none !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    max-height: 0;
    overflow: hidden;
    padding: 0 12px;
    visibility: visible;
    opacity: 1;
  }

  .navbar .dropdown-menu.show {
    max-height: 2000px;
    padding: 6px 12px 10px;
  }

  .navbar .dropdown-menu .dropdown-item {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 7px 0;
    background: transparent !important;
    border-bottom: none;
  }

  .navbar .dropdown-menu .dropdown-item i {
    color: var(--gold);
    font-size: 11px;
    width: 18px;
  }

  .navbar .dropdown-menu .dropdown-item:hover {
    color: var(--gold);
    padding-left: 8px;
    background: transparent !important;
  }

  .navbar .dropdown-menu .dropdown-header {
    color: var(--gold);
    font-size: 11px;
    padding: 10px 0 4px;
    letter-spacing: 0.5px;
  }

  .navbar .dropdown-menu .dropdown-divider {
    border-color: rgba(200,163,77,0.15);
    margin: 4px 0;
  }
}

@media (max-width: 576px) {
  .main-header .navbar-brand {
    gap: 8px;
  }

  .main-header .navbar-brand img {
    height: 48px;
  }

  .main-header .navbar-brand .brand-text {
    font-size: 13px;
    letter-spacing: 0.8px;
  }

  .main-header.scrolled .navbar-brand img {
    height: 42px;
  }

  .main-header.scrolled .navbar-brand .brand-text {
    font-size: 12px;
    letter-spacing: 0.6px;
  }

  .main-header .navbar {
    padding: 6px 0;
  }

  .main-header.scrolled .navbar {
    padding: 5px 0;
  }

  .navbar .btn-apply {
    padding: 11px 18px !important;
    font-size: 13px;
  }

  .navbar-collapse {
    max-height: calc(100dvh - 60px);
    padding: 14px 16px 20px;
  }
}

@media (max-width: 400px) {
  .main-header .navbar-brand {
    gap: 6px;
  }

  .main-header .navbar-brand img {
    height: 42px;
  }

  .main-header .navbar-brand .brand-text {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .main-header.scrolled .navbar-brand img {
    height: 36px;
  }

  .main-header.scrolled .navbar-brand .brand-text {
    font-size: 10px;
  }

  .navbar .btn-apply {
    padding: 10px 14px !important;
    font-size: 12px;
  }

  .navbar-collapse {
    max-height: calc(100dvh - 55px);
    padding: 12px 14px 16px;
  }
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 92vh;
  overflow: hidden;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 92vh;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15,15,15,0.7) 0%, rgba(11,61,46,0.5) 50%, rgba(15,15,15,0.7) 100%);
  z-index: 1;
}

.hero-slide-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(200,163,77,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  opacity: 0.5;
}

.hero-slide .hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  width: 100%;
}

.hero-slide.active .hero-badge {
  animation: slideDown 0.6s ease forwards;
}

.hero-slide.active h1 {
  animation: slideUp 0.6s ease 0.15s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active p {
  animation: slideUp 0.6s ease 0.3s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active .btn-group-custom {
  animation: slideUp 0.6s ease 0.45s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active .hero-slide-icon {
  animation: fadeScale 0.8s ease 0.3s forwards;
  opacity: 0;
  transform: scale(0.8);
}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeScale {
  to { opacity: 1; transform: scale(1); }
}

.hero-slide .hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(200, 163, 77, 0.15);
  border: 1px solid rgba(200, 163, 77, 0.3);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.hero-slide h1 {
  font-size: 52px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.15;
  font-weight: 800;
  font-family: var(--font-heading);
}

.hero-slide p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 580px;
}

.hero-slide .btn-group-custom {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-slide .btn {
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.hero-slide .btn-primary-custom {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.hero-slide .btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 163, 77, 0.45);
  color: #0F0F0F;
}

.hero-slide .btn-primary-custom:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(200, 163, 77, 0.3);
}

.hero-slide .btn-outline-custom {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(2px);
}

.hero-slide .btn-outline-custom:hover {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.08);
}

.hero-slide .btn-outline-custom:active {
  transform: translateY(-1px);
}

.hero-slide-icon {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,163,77,0.2) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(200,163,77,0.2);
  animation: heroPulse 3s ease-in-out infinite;
}

.hero-slide-icon i {
  font-size: 100px;
  color: rgba(200,163,77,0.4);
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

/* Slider Arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider-arrow:hover {
  background: var(--gradient-gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-50%) scale(1.08);
  box-shadow: var(--shadow-gold);
}

.hero-slider-prev {
  left: 24px;
}

.hero-slider-next {
  right: 24px;
}

/* Pagination Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-slider-dots .dot:hover {
  background: rgba(255,255,255,0.5);
}

.hero-slider-dots .dot.active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(200,163,77,0.5);
  width: 14px;
  height: 14px;
}

@media (max-width: 991px) {
  .hero-slider,
  .hero-slides-wrapper,
  .hero-slide {
    min-height: 80vh;
  }
  .hero-slide h1 {
    font-size: 36px;
  }
  .hero-slide p {
    font-size: 15px;
  }
  .hero-slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
  .hero-slider-prev { left: 12px; }
  .hero-slider-next { right: 12px; }
}

@media (max-width: 576px) {
  .hero-slider,
  .hero-slides-wrapper,
  .hero-slide {
    min-height: 75vh;
  }
  .hero-slide .hero-slide-content {
    padding: 100px 0 60px;
  }
  .hero-slide h1 {
    font-size: 26px;
  }
  .hero-slide p {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-slide .btn {
    padding: 12px 24px;
    font-size: 13px;
  }
  .hero-slide .btn-group-custom {
    gap: 10px;
  }
  .hero-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
    top: auto;
    bottom: 80px;
    transform: none;
  }
  .hero-slider-prev { left: 20px; }
  .hero-slider-next { right: 20px; }
  .hero-slider-dots {
    bottom: 24px;
  }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 400px) {
  body {
    padding-top: 60px;
  }

  .main-header .navbar-brand img {
    height: 42px;
  }

  .main-header .navbar-brand {
    gap: 6px;
  }

  .main-header .navbar-brand .brand-text {
    font-size: 11px;
    letter-spacing: 0.8px;
  }

  .main-header .navbar {
    padding: 8px 0;
  }

  .navbar-toggler {
    width: 34px;
    height: 28px;
    gap: 4px;
  }

  .navbar-toggler .hamburger-bar {
    width: 20px;
    height: 2px;
  }

  .navbar-toggler[aria-expanded="true"] .hamburger-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .hamburger-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-slide h1 {
    font-size: 22px;
  }

  .hero-slide p {
    font-size: 13px;
  }

  .hero-slide .btn {
    padding: 11px 20px;
    font-size: 12px;
  }
  .hero-slide .btn-group-custom {
    gap: 8px;
  }

  .section-title h2 {
    font-size: 20px;
  }

  .page-header h1 {
    font-size: 22px;
  }

  .page-header {
    padding: 100px 0 40px;
  }

  .school-hero h1 {
    font-size: 22px;
  }

  .cta-section h2 {
    font-size: 22px;
  }

  .main-footer {
    padding: 40px 0 0;
  }

  .main-footer h5 {
    font-size: 14px;
  }

  .main-footer p,
  .main-footer .footer-links a,
  .main-footer .footer-contact li {
    font-size: 12px;
  }

  .stats-section .stat-number {
    font-size: 26px;
  }

  .stats-section .stat-icon {
    font-size: 28px;
  }

  .gallery-item {
    height: 200px;
  }

  .facility-card {
    height: 200px;
  }

  .auth-card {
    padding: 24px 16px;
  }

  .auth-card .auth-title {
    font-size: 20px;
  }

  .contact-form-wrapper {
    padding: 16px;
  }

  .contact-info-card {
    padding: 20px;
  }

  .news-card .news-image {
    height: 160px;
  }

  .event-card .event-date {
    min-width: 65px;
    padding: 12px 8px;
  }

  .event-card .event-date .day {
    font-size: 22px;
  }

  .about-image div[style] {
    height: 240px !important;
  }

  .education-section .education-content h3 {
    font-size: 22px;
  }

  .journey-item .journey-content {
    padding: 16px;
  }

  .journey-item .journey-content h5 {
    font-size: 15px;
  }

  .vmv-card {
    padding: 24px 18px;
  }

  .why-card {
    padding: 20px 16px;
  }

  .school-card {
    padding: 24px 18px;
  }

  .programme-card {
    padding: 16px 16px;
  }

  .testimonial-card {
    padding: 22px;
    margin: 8px 4px;
  }

  .cookie-consent {
    padding: 12px 0;
  }

  .scroll-top {
    width: 36px;
    height: 36px;
    font-size: 14px;
    bottom: 16px;
    right: 16px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .value-card {
    padding: 14px 8px;
  }

  .value-card .value-icon-wrap {
    width: 36px;
    height: 36px;
    font-size: 14px;
    margin-bottom: 6px;
  }

  .value-card h6 {
    font-size: 11px;
  }

  .programme-card {
    padding: 14px 12px;
  }

  .programme-card h5 {
    font-size: 13px;
  }

  .programme-card .programme-meta {
    font-size: 11px;
  }

  .programme-card .programme-fee {
    font-size: 13px;
    margin-top: 8px;
    padding-top: 8px;
  }

  .btn-primary-custom {
    padding: 10px 22px !important;
    font-size: 12px !important;
  }

  .cta-section .btn-cta {
    padding: 12px 24px;
    font-size: 13px;
  }

  .education-section .education-content h3 {
    font-size: 20px;
  }

  .education-section .education-points li {
    padding: 8px 0;
    font-size: 12px;
  }

  .gallery-preview-item {
    height: 140px;
  }

  .gallery-preview-item i {
    font-size: 28px;
  }

  .gallery-preview-item span {
    font-size: 11px;
    padding: 20px 10px 10px;
  }

  .newsletter-wrapper h3 {
    font-size: 20px;
  }

  .about-features .feature-item {
    padding: 8px 12px;
  }

  .about-features .feature-item i {
    font-size: 13px;
  }

  .about-features .feature-item span {
    font-size: 12px;
  }
}

/* ===== SECTION STYLES ===== */
.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title .subtitle {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  position: relative;
}

.section-title .subtitle::before,
.section-title .subtitle::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 10px;
  opacity: 0.4;
}

.section-title h2 {
  font-size: 38px;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto;
}

.section-title .title-line {
  width: 50px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 14px auto 0;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 35px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title .subtitle {
    font-size: 11px;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--bg-light);
}

.about-section .about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-section .about-image .about-image-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section .about-image:hover .about-image-img {
  transform: scale(1.04);
}

@media (max-width: 991px) {
  .about-section .about-image .about-image-img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .about-section .about-image .about-image-img {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .about-section .about-image .about-image-img {
    height: 240px;
  }
}

@media (max-width: 400px) {
  .about-section .about-image .about-image-img {
    height: 200px;
  }
}

.about-section .about-text h3 {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 18px;
}

.about-section .about-text p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-section .about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.about-section .about-features .feature-item i {
  color: var(--gold);
  font-size: 15px;
}

.about-section .about-features .feature-item span {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

/* ===== VMV CARDS ===== */
.vmv-card {
  background: var(--bg-white);
  border: 1px solid rgba(200, 163, 77, 0.15);
  border-radius: 16px;
  padding: 38px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-xs);
}

.vmv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 163, 77, 0.3);
}

.vmv-card .vmv-icon {
  width: 65px;
  height: 65px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.vmv-card h4 {
  color: var(--green);
  font-size: 20px;
  margin-bottom: 12px;
}

.vmv-card p {
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.7;
}

.vmv-card .motto-text {
  color: var(--gold-dark);
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
  background: var(--bg-section-alt);
}

.why-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 163, 77, 0.15);
}

.why-card .why-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--black);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: rotateY(180deg) scale(1.05);
}

.why-card h5 {
  font-size: 16px;
  color: var(--green);
  margin-bottom: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
}

.why-card p {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== SCHOOLS SECTION ===== */
.schools-section {
  background: var(--gradient-green);
  position: relative;
}

.schools-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0F0F0F 0%, #0B3D2E 50%, #1a1a1a 100%) center/cover no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.schools-section .section-title h2 {
  color: #ffffff;
}

.schools-section .section-title p {
  color: rgba(255,255,255,0.7);
}

.school-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200, 163, 77, 0.12);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.school-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.school-card:hover::before {
  transform: scaleX(1);
}

.school-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 163, 77, 0.25);
}

.school-card .school-icon {
  width: 65px;
  height: 65px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.school-card h4 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 10px;
}

.school-card p {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.school-card .btn-school {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 7px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.school-card .btn-school:hover {
  background: var(--gradient-gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ===== PROGRAMMES SECTION ===== */
.programmes-section {
  background: var(--bg-light);
}

.programme-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  border-left: 3px solid var(--gold);
  height: 100%;
  position: relative;
}

.programme-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--gold-light);
}

.programme-card h5 {
  font-size: 14px;
  color: var(--green);
  margin-bottom: 5px;
  font-family: var(--font-primary);
  font-weight: 600;
}

.programme-card .programme-meta {
  font-size: 12px;
  color: var(--text-dark);
}

.programme-card .programme-meta i {
  color: var(--gold);
  margin-right: 4px;
}

/* ===== EXECUTIVE PROGRAMMES ===== */
.executive-section {
  background: var(--gradient-black-green);
  position: relative;
}

.executive-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0B3D2E 0%, #0F0F0F 50%, #1a1a1a 100%) center/cover no-repeat;
  opacity: 0.03;
  pointer-events: none;
}

.executive-section .section-title h2 {
  color: #ffffff;
}

.executive-section .section-title p {
  color: rgba(255,255,255,0.7);
}

.executive-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200, 163, 77, 0.1);
  border-radius: 12px;
  padding: 22px 18px;
  transition: var(--transition);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(4px);
}

.executive-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 163, 77, 0.2);
}

.executive-card .exec-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
}

.executive-card .exec-content h5 {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 3px;
}

.executive-card .exec-content .exec-duration {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.executive-card .exec-content .exec-duration i {
  margin-right: 4px;
  color: var(--gold);
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0F0F0F 0%, #0B3D2E 50%, #0a0a0a 100%) center/cover no-repeat;
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.stats-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(200,163,77,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.stats-section .stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 18px;
}

.stats-section .stat-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.9;
}

.stats-section .stat-number {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.stats-section .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
}

/* ===== SPORTS EDUCATION SECTION ===== */
.education-section {
  background: var(--bg-light);
}

.education-section .education-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.education-section .education-image .education-image-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.education-section .education-image:hover .education-image-img {
  transform: scale(1.04);
}

@media (max-width: 991px) {
  .education-section .education-image .education-image-img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .education-section .education-image .education-image-img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .education-section .education-image .education-image-img {
    height: 250px;
  }
}

@media (max-width: 400px) {
  .education-section .education-image .education-image-img {
    height: 200px;
  }
}

.education-section .education-content h3 {
  font-size: 30px;
  color: var(--green);
  margin-bottom: 18px;
}

.education-section .education-content p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 14px;
}

.education-section .education-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.education-section .education-points li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.education-section .education-points li:last-child {
  border-bottom: none;
}

.education-section .education-points li i {
  color: var(--gold);
  font-size: 17px;
  margin-top: 2px;
}

.education-section .education-points li strong {
  display: block;
  color: var(--green);
  margin-bottom: 2px;
  font-size: 14px;
}

.education-section .education-points li span {
  font-size: 13px;
  color: var(--text-dark);
}

/* ===== STUDENT JOURNEY ===== */
.journey-section {
  background: var(--bg-white);
}

.journey-timeline {
  position: relative;
  padding: 20px 0;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--green), var(--gold));
}

.journey-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.journey-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.journey-item .journey-content {
  width: 45%;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 22px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.journey-item .journey-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(200, 163, 77, 0.2);
}

.journey-item .journey-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 18px;
  z-index: 2;
  border: 4px solid var(--bg-white);
  box-shadow: var(--shadow-gold);
}

.journey-item .journey-content h5 {
  color: var(--green);
  font-size: 17px;
  margin-bottom: 6px;
}

.journey-item .journey-content p {
  color: var(--text-dark);
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .journey-timeline::before {
    left: 20px;
  }

  .journey-item,
  .journey-item:nth-child(odd) {
    flex-direction: row;
    padding-left: 50px;
  }

  .journey-item .journey-content {
    width: 100%;
  }

  .journey-item .journey-marker {
    left: 20px;
    width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

/* ===== FACILITIES SECTION ===== */
.facilities-section {
  background: var(--bg-section-alt);
}

.facility-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  border: 1px solid rgba(200, 163, 77, 0.08);
}

.facility-card .facility-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.facility-card:hover .facility-image {
  transform: scale(1.08);
}

.facility-card .facility-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(11,61,46,0.95) 0%, transparent 100%);
  color: var(--text-white);
}

.facility-card .facility-overlay h5 {
  color: var(--gold);
  font-size: 17px;
  margin-bottom: 4px;
}

.facility-card .facility-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

.facility-card .facility-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  background: rgba(200, 163, 77, 0.9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
  z-index: 2;
  backdrop-filter: blur(4px);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--gradient-green);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0B3D2E 0%, #0F0F0F 50%, #145A42 100%) center/cover no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.testimonials-section .section-title h2 {
  color: #ffffff;
}

.testimonials-section .section-title p {
  color: rgba(255,255,255,0.7);
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200, 163, 77, 0.12);
  border-radius: 16px;
  padding: 28px;
  margin: 12px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 163, 77, 0.25);
}

.testimonial-card .testimonial-stars {
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-card .testimonial-author .ta-info strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
}

.testimonial-card .testimonial-author .ta-info span {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
}

/* ===== NEWS CARDS ===== */
.news-section {
  background: var(--bg-light);
}

.news-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 163, 77, 0.15);
}

.news-card .news-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.news-card .news-body {
  padding: 18px;
}

.news-card .news-body .news-date {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.news-card .news-body h5 {
  font-size: 15px;
  color: var(--green);
  margin-bottom: 8px;
  line-height: 1.4;
  font-family: var(--font-primary);
  font-weight: 600;
}

.news-card .news-body p {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.6;
}

.news-card .news-body .btn-news {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.news-card .news-body .btn-news:hover {
  color: var(--green);
  gap: 8px;
}

/* ===== EVENTS SECTION ===== */
.events-section {
  background: var(--bg-white);
}

.event-card {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 18px;
  transition: var(--transition);
  gap: 18px;
  border: 1px solid transparent;
}

.event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  border-color: rgba(200, 163, 77, 0.2);
}

.event-card .event-date {
  min-width: 75px;
  text-align: center;
  background: var(--gradient-green);
  border-radius: 12px;
  padding: 14px 10px;
  color: var(--text-white);
  border: 1px solid rgba(200, 163, 77, 0.15);
}

.event-card .event-date .day {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
  color: var(--gold);
}

.event-card .event-date .month {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  color: rgba(255,255,255,0.7);
}

.event-card .event-details {
  flex: 1;
}

.event-card .event-details h5 {
  font-size: 15px;
  color: var(--green);
  margin-bottom: 5px;
}

.event-card .event-details p {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 0;
}

.event-card .event-details .event-meta {
  font-size: 12px;
  color: var(--text-dark);
  margin-top: 5px;
}

.event-card .event-details .event-meta i {
  color: var(--gold);
  margin-right: 4px;
}

.event-card .btn-event {
  background: var(--green);
  color: #ffffff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  font-weight: 500;
}

.event-card .btn-event:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ===== PARTNERS CAROUSEL ===== */
.partners-section {
  background: var(--bg-white);
  overflow: hidden;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 15px;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: var(--transition);
}

.partner-item:hover {
  filter: grayscale(0);
  opacity: 1;
}

.partner-item .partner-placeholder {
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--bg-light);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 2px solid rgba(200, 163, 77, 0.15);
  transition: var(--transition);
}

.partner-item:hover .partner-placeholder {
  border-color: var(--gold);
  background: rgba(200,163,77,0.08);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.partner-item .partner-placeholder i {
  color: var(--gold);
  font-size: 15px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #C8A34D 0%, #B8892D 50%, #D4AF37 100%) center/cover no-repeat;
  opacity: 0.06;
  mix-blend-mode: overlay;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(200,163,77,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-cta {
  background: var(--gradient-gold);
  color: var(--black);
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.cta-section .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--black);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: var(--gradient-green);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #C8A34D 0%, #B8892D 50%, #D4AF37 100%) center/cover no-repeat;
  opacity: 0.04;
  mix-blend-mode: overlay;
}

.newsletter-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.newsletter-wrapper h3 {
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 10px;
}

.newsletter-wrapper p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  font-size: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form .form-control {
  flex: 1;
  border-radius: 50px;
  padding: 14px 20px;
  border: none;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

.newsletter-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(200,163,77,0.3);
  outline: none;
}

.newsletter-form .btn-subscribe {
  background: var(--gradient-gold);
  color: var(--black);
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
}

.newsletter-form .btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.newsletter-form .btn-subscribe:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.newsletter-response {
  margin-top: 14px;
  font-size: 14px;
}

@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-wrapper h3 {
    font-size: 22px;
  }
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
}

.main-footer h5 {
  color: var(--gold);
  font-size: 17px;
  margin-bottom: 22px;
  font-family: var(--font-heading);
  position: relative;
  padding-bottom: 10px;
}

.main-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 1px;
}

.main-footer p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.75);
}

.main-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-footer .footer-links li {
  margin-bottom: 8px;
}

.main-footer .footer-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-footer .footer-links a i {
  font-size: 10px;
  color: var(--gold);
  transition: var(--transition);
}

.main-footer .footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.main-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.main-footer .footer-contact li i {
  color: var(--gold);
  margin-top: 4px;
  min-width: 16px;
}

.main-footer .footer-social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.main-footer .footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}

.main-footer .footer-social a:hover {
  background: var(--gradient-gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.main-footer .footer-logo {
  height: 40px;
  width: auto;
}

.main-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  margin-top: 45px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.main-footer .footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.main-footer .footer-bottom a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.footer-newsletter p {
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65) !important;
}

.footer-newsletter .input-group {
  display: flex;
  gap: 0;
}

.footer-newsletter .input-group input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(200, 163, 77, 0.15);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85);
  border-radius: 8px 0 0 8px;
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}

.footer-newsletter .input-group input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.footer-newsletter .input-group input::placeholder {
  color: rgba(255,255,255,0.35);
}

.footer-newsletter .input-group button {
  background: var(--gradient-gold);
  color: var(--black);
  border: none;
  padding: 10px 16px;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter .input-group button:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
}

/* ===== PAGE HEADER / BREADCRUMB ===== */
.page-header {
  background: var(--gradient-black-green);
  padding: 120px 0 55px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0F0F0F 0%, #0B3D2E 50%, #1a1a1a 100%) center/cover no-repeat;
  opacity: 0.06;
  mix-blend-mode: overlay;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0.5;
}

.page-header .page-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 8px;
}

.page-header .breadcrumb {
  background: transparent;
  justify-content: center;
  margin-bottom: 0;
}

.page-header .breadcrumb .breadcrumb-item {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.page-header .breadcrumb .breadcrumb-item a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.page-header .breadcrumb .breadcrumb-item a:hover {
  color: var(--gold-light);
}

.page-header .breadcrumb .breadcrumb-item.active {
  color: rgba(255,255,255,0.85);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.3);
  content: '\203A';
  font-size: 16px;
}

/* ===== ABOUT PAGE ===== */
.about-page .motto-highlight {
  background: var(--gradient-green);
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
  margin: 48px 0;
  border: 1px solid rgba(200, 163, 77, 0.15);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-page .motto-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
}

.about-page .motto-highlight::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(200,163,77,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.about-page .motto-highlight .motto-text {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 28px;
  font-style: italic;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

.about-page .motto-highlight .motto-label {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* ===== ABOUT PAGE REFINEMENTS ===== */
.about-page .abt-image-wrap {
  height: 450px;
  background: linear-gradient(135deg, #0B3D2E, #0E4A38);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-page .abt-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(200,163,77,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-page .abt-image-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-page .abt-image-icon {
  font-size: 80px;
  color: rgba(200,163,77,0.3);
  display: block;
  margin-bottom: 15px;
  transition: var(--transition);
}

.about-page .abt-image-wrap:hover .abt-image-icon {
  transform: scale(1.05);
  color: rgba(200,163,77,0.4);
}

.about-page .abt-image-heading {
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.about-page .abt-subtitle {
  display: inline-block;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.about-page .abt-heading {
  font-size: 36px;
  color: var(--primary);
  margin: 0 0 15px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.about-page .abt-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-page .vmv-card {
  background: var(--bg-light);
  border-color: #e0e0e0;
}

.about-page .vmv-card h4 {
  color: var(--primary);
}

.about-page .vmv-card p {
  color: var(--text-light);
}

/* ===== OBJECTIVES / GOALS ===== */
.objectives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.objective-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 28px;
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.objective-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,163,77,0.03) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 16px;
}

.objective-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: rgba(200, 163, 77, 0.35);
  border-left-color: var(--gold-light);
}

.objective-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gradient-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--black);
  box-shadow: 0 4px 14px rgba(200,163,77,0.3);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  position: relative;
  z-index: 1;
}

.objective-card:hover .objective-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 28px rgba(200,163,77,0.45);
}

.objective-text {
  font-size: 14.5px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.75;
  padding-top: 6px;
  position: relative;
  z-index: 1;
}

/* ===== CORE VALUES ===== */
.core-values-wrapper {
  margin-top: 60px;
  padding: 50px 40px;
  background: var(--bg-light);
  border-radius: 20px;
  box-shadow: var(--shadow-xs);
}

@media (max-width: 768px) {
  .core-values-wrapper {
    margin-top: 40px;
    padding: 36px 24px;
    border-radius: 16px;
  }
}

@media (max-width: 576px) {
  .core-values-wrapper {
    margin-top: 32px;
    padding: 28px 16px;
    border-radius: 14px;
  }
}

@media (max-width: 400px) {
  .core-values-wrapper {
    margin-top: 24px;
    padding: 24px 12px;
    border-radius: 12px;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: 30px 16px 24px;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left;
}

.value-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(200,163,77,0.04) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 50%;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: rgba(200, 163, 77, 0.25);
}

.value-card .value-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--black);
  box-shadow: 0 4px 16px rgba(200,163,77,0.25), inset 0 -2px 4px rgba(0,0,0,0.06);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
  position: relative;
  z-index: 1;
}

.value-card:hover .value-icon-wrap {
  transform: scale(1.15) rotate(-6deg);
  box-shadow: 0 8px 32px rgba(200,163,77,0.4), inset 0 -2px 4px rgba(0,0,0,0.06);
}

.value-card h6 {
  font-size: 16px;
  color: var(--green);
  margin-bottom: 0;
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: 0.4px;
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}

.value-card:hover h6 {
  color: var(--gold-dark);
}

@media (max-width: 768px) {
  .objectives-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .objective-card {
    padding: 20px 22px;
  }

  .objective-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 17px;
  }

  .objective-text {
    font-size: 13px;
  }

  .about-page .abt-image-wrap {
    height: 300px;
    border-radius: 14px;
  }

  .about-page .abt-image-icon {
    font-size: 56px;
  }

  .about-page .abt-image-heading {
    font-size: 20px;
  }

  .about-page .abt-heading {
    font-size: 28px;
  }

  .about-page .abt-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .about-page .motto-highlight {
    padding: 30px 24px;
    margin: 32px 0;
  }

  .about-page .motto-highlight .motto-text {
    font-size: 22px;
  }

  .value-card {
    padding: 22px 12px;
  }
}

@media (max-width: 576px) {
  .about-page .abt-image-wrap {
    height: 250px;
    border-radius: 12px;
  }

  .about-page .abt-image-icon {
    font-size: 46px;
    margin-bottom: 12px;
  }

  .about-page .abt-image-heading {
    font-size: 18px;
  }

  .about-page .abt-heading {
    font-size: 24px;
  }

  .about-page .abt-text {
    font-size: 14px;
  }

  .about-page .abt-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .about-page .motto-highlight {
    padding: 24px 18px;
    margin: 28px 0;
    border-radius: 12px;
  }

  .about-page .motto-highlight .motto-text {
    font-size: 18px;
  }

  .about-page .motto-highlight .motto-label {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .objectives-grid {
    gap: 12px;
  }

  .objective-card {
    padding: 18px 18px;
  }

  .objective-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }

  .objective-text {
    font-size: 13px;
  }

  .value-card {
    padding: 22px 14px;
    border-radius: 14px;
  }

  .value-card .value-icon-wrap {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .value-card h6 {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .about-page .abt-image-wrap {
    height: 220px;
    border-radius: 10px;
  }

  .about-page .abt-image-icon {
    font-size: 38px;
    margin-bottom: 10px;
  }

  .about-page .abt-image-heading {
    font-size: 16px;
  }

  .about-page .abt-heading {
    font-size: 20px;
  }

  .about-page .abt-text {
    font-size: 13px;
    line-height: 1.7;
  }

  .about-page .motto-highlight .motto-text {
    font-size: 16px;
  }

  .values-grid {
    gap: 10px;
  }

  .value-card {
    padding: 16px 8px;
  }

  .value-card .value-icon-wrap {
    width: 44px;
    height: 44px;
    font-size: 17px;
    margin-bottom: 10px;
  }

  .value-card h6 {
    font-size: 13px;
  }

  .objectives-grid {
    gap: 10px;
  }

  .objective-card {
    padding: 16px 16px;
    gap: 14px;
  }

  .objective-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 14px;
  }

  .objective-text {
    font-size: 12px;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  background: var(--bg-light);
}

.contact-info-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-xs);
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(200, 163, 77, 0.15);
}

.contact-info-card .cic-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 14px;
}

.contact-info-card h5 {
  font-size: 15px;
  color: var(--green);
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
}

.contact-form-wrapper .form-control {
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  font-size: 14px;
  transition: var(--transition);
  color: var(--text-dark);
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 163, 77, 0.12);
}

.contact-form-wrapper .form-control.is-invalid {
  border-color: #dc3545;
}

.contact-form-wrapper .form-label {
  font-weight: 500;
  color: var(--green);
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-form-wrapper .btn-submit {
  background: var(--gradient-gold);
  color: var(--black);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  width: 100%;
  box-shadow: var(--shadow-gold);
}

.contact-form-wrapper .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.map-placeholder {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  background: var(--bg-section-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 16px;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(200,163,77,0.1);
}

.map-placeholder i {
  font-size: 44px;
  color: var(--gold);
  opacity: 0.6;
}

/* ===== ADMISSIONS PAGE ===== */
.admissions-section .card {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.admissions-section .card:hover {
  box-shadow: var(--shadow-md);
}

.admissions-section .card-header {
  background: var(--gradient-green);
  color: var(--gold);
  font-weight: 600;
  border-radius: 12px 12px 0 0 !important;
  padding: 15px 20px;
  border-bottom: 2px solid var(--gold);
}

.admissions-section .card-body {
  color: var(--text-dark);
}

.admissions-section .process-step {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.admissions-section .process-step:last-child {
  border-bottom: none;
}

.admissions-section .process-step .step-number {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.admissions-section .process-step .step-content h6 {
  color: var(--green);
  margin-bottom: 3px;
  font-family: var(--font-primary);
  font-weight: 600;
}

.admissions-section .process-step .step-content p {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .admissions-section .process-step {
    gap: 12px;
    padding: 14px 0;
  }
  .admissions-section .process-step .step-number {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 15px;
  }
  .admissions-section .process-step .step-content h6 {
    font-size: 13px;
  }
  .admissions-section .process-step .step-content p {
    font-size: 12px;
  }
}

/* ===== FAQ PAGE ===== */
.accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0,0,0,0.04);
}

.accordion-button {
  font-weight: 600;
  color: var(--green);
  padding: 16px 18px;
  font-size: 14px;
  font-family: var(--font-primary);
  background: var(--bg-white);
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-green);
  color: var(--gold);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--gold);
}

.accordion-button::after {
  transition: var(--transition);
}

.accordion-body {
  padding: 18px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.7;
}

@media (max-width: 576px) {
  .accordion-button {
    padding: 14px 14px;
    font-size: 13px;
  }
  .accordion-body {
    padding: 14px;
    font-size: 13px;
  }
}

/* ===== GALLERY PAGE ===== */
.gallery-filters {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-filters .btn-filter {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  margin: 0 4px 8px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
  font-weight: 500;
}

.gallery-filters .btn-filter.active,
.gallery-filters .btn-filter:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
  height: 250px;
  cursor: pointer;
  border: 1px solid rgba(200, 163, 77, 0.08);
}

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 61, 46, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item .gallery-overlay i {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 8px;
}

.gallery-item .gallery-overlay span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

/* ===== NEWS PAGE ===== */
.news-page .news-featured {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 400px;
  margin-bottom: 30px;
  border: 1px solid rgba(200,163,77,0.1);
}

.news-page .news-featured .featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px 25px;
  background: linear-gradient(to top, rgba(11,61,46,0.95), transparent);
  color: var(--text-white);
}

.news-page .news-featured .featured-overlay .badge {
  background: var(--gold);
  color: var(--black);
  margin-bottom: 8px;
  padding: 5px 12px;
  font-weight: 600;
}

.news-page .news-featured .featured-overlay h3 {
  color: #ffffff;
  font-size: 26px;
}

.news-page .news-featured .featured-overlay p {
  color: rgba(255,255,255,0.75);
}

.news-page .paginations {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 40px;
}

.news-page .paginations a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
  font-weight: 500;
}

.news-page .paginations a.active,
.news-page .paginations a:hover {
  background: var(--gradient-green);
  color: var(--gold);
  border-color: var(--green);
}

/* ===== PROGRAMME FILTER ===== */
.programme-filter {
  text-align: center;
  margin-bottom: 30px;
}

.programme-filter .btn-filter {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  margin: 0 3px 8px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
  font-weight: 500;
}

.programme-filter .btn-filter.active,
.programme-filter .btn-filter:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

@media (max-width: 576px) {
  .programme-filter .btn-filter {
    font-size: 11px;
    padding: 6px 14px;
    margin: 0 2px 6px;
  }
}

.programme-category-title {
  font-family: var(--font-heading);
  color: var(--green);
  font-size: 26px;
  margin: 36px 0 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--gold);
}

.programme-category-title i {
  color: var(--gold);
}

/* ===== SIDEBAR ===== */
.sidebar-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow-xs);
  margin-bottom: 22px;
  border: 1px solid rgba(0,0,0,0.04);
}

.sidebar-card h5 {
  font-size: 15px;
  color: var(--green);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card ul li {
  margin-bottom: 8px;
}

.sidebar-card ul li a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card ul li a i {
  font-size: 10px;
  color: var(--gold);
}

.sidebar-card ul li a:hover {
  color: var(--green);
  padding-left: 5px;
}

.sidebar-card p {
  color: var(--text-dark);
}

.sidebar-link-btn {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 6px;
}

.sidebar-link-btn:hover {
  background: var(--bg-light);
  border-color: rgba(200, 163, 77, 0.25);
  color: var(--green);
  padding-left: 18px;
}

.sidebar-link-btn:last-child {
  margin-bottom: 0;
}

.sidebar-btn-gold {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--gradient-gold);
  color: var(--black);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: var(--shadow-gold);
}

.sidebar-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--black);
}

.sidebar-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,163,77,0.2), transparent);
  margin: 12px 0;
}

.sidebar-info-row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}

.sidebar-info-row:last-child {
  border-bottom: none;
}

.sidebar-info-row strong {
  color: var(--green);
  min-width: 80px;
}

/* ===== AUTH PAGES (Login / Register) ===== */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-section-alt);
  padding: 100px 0 60px;
}

.auth-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200, 163, 77, 0.1);
}

.auth-card .auth-title {
  font-family: var(--font-heading);
  color: var(--green);
  text-align: center;
  margin-bottom: 28px;
  font-size: 32px;
}

.auth-card .form-label {
  font-weight: 500;
  color: var(--green);
  font-size: 14px;
  margin-bottom: 6px;
}

.auth-card .form-control {
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  font-size: 14px;
  transition: var(--transition);
  color: var(--text-dark);
}

.auth-card .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 163, 77, 0.12);
}

.auth-card .btn-primary {
  background: var(--gradient-gold);
  border: none;
  color: var(--black);
  font-weight: 600;
  padding: 12px;
  border-radius: 10px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.auth-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.auth-card .auth-footer {
  color: var(--text-dark);
  font-size: 14px;
}

.auth-card .auth-footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.auth-card .auth-footer a:hover {
  color: var(--green);
}

.auth-card .form-check-label,
.auth-card .form-check-label a {
  color: var(--text-dark);
  font-size: 14px;
}

.auth-card .form-check-label a {
  color: var(--gold);
}

.auth-card a.float-end {
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.auth-card a.float-end:hover {
  color: var(--green);
}

/* ===== APPLY NOW PAGE ===== */
.apply-section {
  background: var(--bg-light);
}

.apply-section .card {
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0,0,0,0.04);
}

.apply-section .card-header {
  background: var(--gradient-green);
  color: var(--gold);
  font-weight: 600;
  border-radius: 16px 16px 0 0 !important;
  padding: 18px 24px;
  font-size: 16px;
  border-bottom: 2px solid var(--gold);
}

.apply-section .card-body {
  color: var(--text-dark);
}

.apply-section .form-control,
.apply-section .form-select {
  border-radius: 10px;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  font-size: 14px;
  transition: var(--transition);
  color: var(--text-dark);
}

.apply-section .form-control:focus,
.apply-section .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 163, 77, 0.12);
}

.apply-section .form-label {
  font-weight: 500;
  color: var(--green);
  font-size: 14px;
  margin-bottom: 6px;
}

.apply-section .btn-submit-application {
  background: var(--gradient-gold);
  color: var(--black);
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-gold);
}

.apply-section .btn-submit-application:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

/* ===== SCHOOL DETAIL PAGES ===== */
.school-hero {
  background: var(--gradient-black-green);
  padding: 100px 0 55px;
  position: relative;
  overflow: hidden;
}

.school-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0.4;
}

.school-hero .school-hero-content {
  position: relative;
  z-index: 2;
}

.school-hero .school-badge {
  display: inline-block;
  background: rgba(200, 163, 77, 0.12);
  border: 1px solid rgba(200, 163, 77, 0.25);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.school-hero h1 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 14px;
}

.school-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  max-width: 700px;
  line-height: 1.8;
}

.school-hero .school-hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.school-hero .school-hero-image .icon-wrap {
  width: 150px;
  height: 150px;
  background: rgba(200, 163, 77, 0.08);
  border: 2px solid rgba(200, 163, 77, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: var(--gold);
}

.school-intro {
  background: var(--bg-light);
}

.school-intro .intro-text h3 {
  font-size: 28px;
  color: var(--green);
  margin-bottom: 16px;
}

.school-intro .intro-text p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 14px;
}

.school-objectives {
  background: var(--bg-white);
}

.objective-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 22px;
  height: 100%;
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}

.objective-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.objective-card .obj-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--black);
  margin-bottom: 10px;
}

.objective-card h6 {
  color: var(--green);
  font-size: 14px;
  margin-bottom: 5px;
  font-family: var(--font-primary);
  font-weight: 600;
}

.objective-card p {
  color: var(--text-dark);
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.6;
}

.school-benefits {
  background: var(--bg-section-alt);
}

.benefit-card {
  display: flex;
  gap: 14px;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow-xs);
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 163, 77, 0.15);
}

.benefit-card .ben-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
}

.benefit-card .ben-content h6 {
  color: var(--green);
  font-size: 14px;
  margin-bottom: 5px;
  font-family: var(--font-primary);
  font-weight: 600;
}

.benefit-card .ben-content p {
  color: var(--text-dark);
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.6;
}

.school-careers {
  background: var(--bg-white);
}

.career-card {
  text-align: center;
  background: var(--bg-light);
  border-radius: 12px;
  padding: 28px 18px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 163, 77, 0.15);
}

.career-card .car-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.career-card h6 {
  color: var(--green);
  font-size: 14px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  font-weight: 600;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  color: var(--text-dark);
}

.legal-content h2 {
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 8px;
}

.legal-content .last-updated {
  color: var(--text-dark);
  font-size: 14px;
  margin-bottom: 28px;
}

.legal-content h5 {
  color: var(--green);
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 17px;
}

.legal-content p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  color: var(--text-dark);
  line-height: 1.8;
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-content ul li {
  margin-bottom: 6px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--gradient-gold);
  border: none;
  border-radius: 50%;
  color: var(--black);
  font-size: 17px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-lg);
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--black);
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
  border-top: 2px solid rgba(200, 163, 77, 0.15);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent .cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-consent p {
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.cookie-consent p a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-consent .cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent .btn-accept {
  background: var(--gradient-gold);
  color: var(--black);
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-consent .btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.cookie-consent .btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-consent .btn-decline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 768px) {
  .cookie-consent .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== TOUCH STATES ===== */
.navbar .nav-link.touch-active {
  color: var(--gold) !important;
}

.navbar .nav-link.touch-active::after {
  transform: scaleX(1);
}

/* ===== RESPONSIVE GALLERY PREVIEW ===== */
.gallery-preview-item {
  border-radius: 12px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(200,163,77,0.1);
  text-align: center;
  padding: 20px;
}

.gallery-preview-item i {
  font-size: 40px;
  color: rgba(200,163,77,0.5);
  margin-bottom: 12px;
  transition: var(--transition);
}

.gallery-preview-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-preview-item:hover i {
  color: var(--gold);
  transform: scale(1.1);
}

@media (max-width: 576px) {
  .gallery-preview-item {
    height: 160px;
    font-size: 12px;
  }
  .gallery-preview-item i {
    font-size: 32px;
  }
}

/* ===== EXPERIENCE BADGE ===== */
.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-gold);
  color: var(--black);
  padding: 16px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(200,163,77,0.3);
  z-index: 2;
}

.experience-badge span {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-heading);
}

.experience-badge small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  opacity: 0.8;
}

@media (max-width: 576px) {
  .experience-badge {
    right: 10px;
    padding: 12px 18px;
  }
  .experience-badge span {
    font-size: 22px;
  }
}

/* ===== TESTIMONIAL AUTHOR ===== */
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .testimonial-author .ta-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}

/* ===== WILL-CHANGE OPTIMIZATION ===== */
.school-card,
.why-card,
.programme-card,
.news-card,
.event-card {
  will-change: transform;
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===== OWL CAROUSEL DOTS ===== */
.owl-theme .owl-dots .owl-dot span {
  background: rgba(255,255,255,0.2) !important;
  transition: var(--transition);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--gold) !important;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 991px) {
  .school-hero h1 {
    font-size: 30px;
  }
  .school-hero .school-hero-image .icon-wrap {
    width: 110px;
    height: 110px;
    font-size: 44px;
    margin-top: 28px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .school-hero {
    padding: 80px 0 40px;
    text-align: center;
  }
  .school-hero p {
    font-size: 14px;
    max-width: 100%;
  }
  .school-hero .school-hero-image .icon-wrap {
    width: 90px;
    height: 90px;
    font-size: 36px;
  }
  .school-intro .intro-text h3 {
    font-size: 22px;
  }
  .programme-category-title {
    font-size: 20px;
  }
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-section .section-title h2 {
    font-size: 24px !important;
  }
  .contact-form-wrapper h4 {
    font-size: 20px;
  }
  .about-image {
    margin-bottom: 20px;
  }
  .partners-section .owl-carousel .partner-item {
    height: 70px;
  }
  .partner-item .partner-placeholder {
    font-size: 11px;
  }
}

@media (max-width: 576px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .school-hero h1 {
    font-size: 24px;
  }
  .school-hero p {
    font-size: 13px;
  }
  .school-hero .school-hero-image .icon-wrap {
    width: 80px;
    height: 80px;
    font-size: 30px;
  }
  .programme-category-title {
    font-size: 18px;
  }
  .contact-form-wrapper {
    padding: 20px;
  }
  .teacher-card {
    padding: 16px;
  }
  .teacher-card .teacher-info h5 {
    font-size: 15px;
  }
  .programme-detail-hero h1 {
    font-size: 24px;
  }
  .admissions-section .card-body {
    padding: 16px;
  }
  .faq-section .accordion-button {
    font-size: 13px;
    padding: 12px 14px;
  }
  .about-image div[style] {
    height: 240px !important;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 28px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 15px;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .auth-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .hero-slide h1 {
    font-size: 26px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .page-header h1 {
    font-size: 24px;
  }

  .school-hero h1 {
    font-size: 24px;
  }

  .objective-card,
  .benefit-card {
    padding: 16px;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .top-bar,
  .main-header,
  .main-footer,
  .scroll-top,
  .cookie-consent,
  #preloader,
  .newsletter-section,
  .cta-section {
    display: none !important;
  }
  body {
    padding-top: 0 !important;
  }
}

/* ===== AUTH PAGES (Login, Register, Forgot Password) ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.auth-page::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(200,163,77,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.auth-page::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,163,77,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.auth-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 60px;
}

.auth-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  border: 1px solid rgba(200,163,77,0.15);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--gradient-gold);
}

.auth-card .auth-logo {
  text-align: center;
  margin-bottom: 24px;
}

.auth-card .auth-logo img {
  height: 48px;
}

.auth-card .auth-title {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--green);
  text-align: center;
  margin-bottom: 6px;
  font-weight: 700;
}

.auth-card .auth-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.auth-card .form-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.auth-card .form-control {
  border-radius: 10px;
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.08);
  font-size: 14px;
  transition: var(--transition);
  background: var(--bg-white);
}

.auth-card .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,163,77,0.15);
  outline: none;
}

.auth-card .form-control.is-invalid {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}

.auth-card .invalid-feedback {
  font-size: 12px;
  color: var(--accent);
}

.btn-resend {
  display: inline-block; color: #fff; background: #0d6efd;
  padding: 5px 10px; border-radius: 6px; text-decoration: none;
  font-size: 13px; font-weight: 600;
}
.btn-resend:hover { background: #0b5ed7; color: #fff; }

.auth-card .password-wrapper {
  position: relative;
}

.auth-card .password-wrapper input {
  padding-right: 46px;
}

.auth-card .password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  padding: 6px;
  font-size: 16px;
  transition: var(--transition);
}

.auth-card .password-toggle:hover {
  color: var(--gold-dark);
}

.auth-card .btn-auth {
  width: 100%;
  background: var(--gradient-gold);
  color: var(--black);
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.auth-card .btn-auth:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
}

.auth-card .btn-auth:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.auth-card .auth-footer {
  text-align: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
  color: var(--text-light);
}

.auth-card .auth-footer a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.auth-card .auth-footer a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.auth-card .auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
  color: var(--text-light);
  font-size: 12px;
}

.auth-card .auth-divider::before,
.auth-card .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.06);
}

.auth-card .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-card .form-check-input {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0,0,0,0.12);
  border-radius: 4px;
  cursor: pointer;
  margin: 0;
}

.auth-card .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.auth-card .form-check-label {
  font-size: 13px;
  color: var(--text-dark);
  cursor: pointer;
  margin: 0;
}

.auth-card .form-check-label a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
}

.auth-card .form-check-label a:hover {
  text-decoration: underline;
}

.auth-card .forgot-link {
  font-size: 13px;
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.auth-card .forgot-link:hover {
  color: var(--gold);
  text-decoration: underline;
}

.auth-card .alert {
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 18px;
}

.auth-card .alert-success {
  background: rgba(11,61,46,0.1);
  color: var(--green-dark);
  border-left: 3px solid var(--green);
}

.auth-card .alert-danger {
  background: rgba(192,57,43,0.1);
  color: var(--accent);
  border-left: 3px solid var(--accent);
}

.auth-card .g-recaptcha {
  display: flex;
  justify-content: center;
}

@media (max-width: 576px) {
  .auth-container {
    padding: 100px 16px 40px;
  }
  .auth-card {
    padding: 28px 20px;
  }
  .auth-card .auth-title {
    font-size: 22px;
  }
  .auth-card .btn-auth {
    padding: 12px;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .auth-container {
    padding: 90px 12px 30px;
  }
  .auth-card {
    padding: 22px 14px;
    border-radius: 14px;
  }
  .auth-card .auth-logo img {
    height: 38px;
  }
  .auth-card .auth-title {
    font-size: 20px;
  }
  .auth-card .auth-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .auth-card .btn-auth {
    padding: 10px;
    font-size: 13px;
    border-radius: 10px;
  }
  .auth-card .form-control {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* ==================================================================
   PREMIUM UI/UX ENHANCEMENTS — LEKKI SPORTS ACADEMY v2.0
   Enhanced typography, spacing, animations, responsiveness
   ================================================================== */

/* ── Improved Body Typography ── */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ── Smooth Section Dividers ── */
.section-divider-top {
  position: relative;
}

.section-divider-top::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,163,77,0.2), transparent);
}

/* ── Premium Card Refinements ── */
.school-card,
.why-card,
.programme-card,
.news-card,
.vmv-card,
.event-card,
.testimonial-card,
.facility-card,
.executive-card,
.gallery-preview-item {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease,
              background 0.3s ease;
}

/* ── Enhanced Button Styles ── */
.btn-primary-custom,
.btn-cta,
.navbar .btn-apply,
.newsletter-form .btn-subscribe,
.contact-form-wrapper .btn-submit,
.apply-section .btn-submit-application,
.auth-card .btn-auth,
.event-card .btn-event,
.school-card .btn-school {
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::after,
.btn-cta::after,
.navbar .btn-apply::after,
.newsletter-form .btn-subscribe::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.btn-primary-custom:hover::after,
.btn-cta:hover::after,
.navbar .btn-apply:hover::after,
.newsletter-form .btn-subscribe:hover::after {
  width: 300px;
  height: 300px;
}

/* ── Subtle Gradient Dividers Between Sections ── */
.about-section + .why-choose-section,
.why-choose-section + .schools-section,
.schools-section + .programmes-section,
.programmes-section + .executive-section,
.executive-section + .stats-section,
.stats-section + .education-section,
.education-section + .facilities-section,
.facilities-section + .testimonials-section,
.testimonials-section + .news-section,
.news-section + .events-section,
.events-section + section,
section + .partners-section {
  position: relative;
}

.about-section + .why-choose-section::before,
.why-choose-section + .schools-section::before,
.schools-section + .programmes-section::before,
.programmes-section + .executive-section::before,
.executive-section + .stats-section::before,
.stats-section + .education-section::before,
.education-section + .facilities-section::before,
.facilities-section + .testimonials-section::before,
.testimonials-section + .news-section::before,
.news-section + .events-section::before,
.events-section + section::before,
section + .partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,163,77,0.12), transparent);
  pointer-events: none;
}

/* ── Refined Focus & Active States ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Enhanced Loading States ── */
.loading-shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(200,163,77,0.06) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ── Image Aspect Ratio & Object-Fit Utilities ── */
.img-ratio-16-9 {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.img-ratio-4-3 {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.img-ratio-1-1 {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ── Smooth Scrollbar (Webkit) ── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: rgba(200, 163, 77, 0.3);
  border-radius: 6px;
  border: 2px solid var(--bg-light);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 163, 77, 0.5);
}

/* ── Featured Badge Pulse ── */
.featured-pulse {
  animation: featuredPulse 2s ease-in-out infinite;
}

@keyframes featuredPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 163, 77, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(200, 163, 77, 0); }
}

/* ── Hero Slide Content Refinements ── */
.hero-slide .hero-badge {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-slide .btn-group-custom .btn {
  letter-spacing: 0.5px;
}

.hero-slide .btn-outline-custom {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ── Mobile Hero Improvements ── */
@media (max-width: 576px) {
  .hero-slide .hero-slide-content {
    padding: 100px 0 60px;
  }

  .hero-slide .btn-group-custom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-slide .btn-group-custom .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-slide .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
    letter-spacing: 1.5px;
  }

  .hero-slider-dots {
    bottom: 20px;
    gap: 8px;
  }

  .hero-slider-dots .dot {
    width: 10px;
    height: 10px;
  }

  .hero-slider-dots .dot.active {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 400px) {
  .hero-slide .hero-slide-content {
    padding: 80px 0 50px;
  }

  .hero-slide h1 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .hero-slide p {
    font-size: 12px;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .hero-slide .btn {
    padding: 10px 18px;
    font-size: 11px;
  }

  .hero-slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 11px;
    bottom: 60px;
  }

  .hero-slider-prev { left: 14px; }
  .hero-slider-next { right: 14px; }
}

/* ── Section Spacing Optimizations ── */
@media (max-width: 576px) {
  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .section-title h2 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .section-title p {
    font-size: 13px;
  }

  .section-title .title-line {
    width: 40px;
    height: 2px;
    margin-top: 10px;
  }

  .section-title .subtitle {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }

  .section-title .subtitle::before,
  .section-title .subtitle::after {
    width: 16px;
    margin: 0 6px;
  }
}

/* ── Card Responsive Refinements ── */
@media (max-width: 576px) {
  .vmv-card {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .vmv-card .vmv-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .vmv-card h4 {
    font-size: 16px;
  }

  .why-card {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .why-card .why-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .why-card h5 {
    font-size: 14px;
  }

  .why-card p {
    font-size: 12px;
  }

  .school-card {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .school-card .school-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
    margin-bottom: 12px;
  }

  .school-card h4 {
    font-size: 16px;
  }

  .school-card p {
    font-size: 12px;
  }

  .school-card .btn-school {
    padding: 6px 18px;
    font-size: 12px;
  }

  .programme-card {
    padding: 14px 14px;
    border-radius: 10px;
  }

  .programme-card h5 {
    font-size: 13px;
  }

  .programme-card .programme-meta {
    font-size: 11px;
  }

  .executive-card {
    padding: 16px 14px;
    border-radius: 10px;
    gap: 12px;
  }

  .executive-card .exec-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 15px;
    border-radius: 10px;
  }

  .executive-card .exec-content h5 {
    font-size: 13px;
  }

  .executive-card .exec-content .exec-duration {
    font-size: 11px;
  }

  .news-card {
    border-radius: 14px;
  }

  .news-card .news-image {
    height: 160px;
  }

  .news-card .news-body {
    padding: 14px;
  }

  .news-card .news-body h5 {
    font-size: 14px;
  }

  .news-card .news-body p {
    font-size: 12px;
  }

  .news-card .news-body .btn-news {
    font-size: 12px;
  }

  .event-card {
    padding: 16px;
    border-radius: 14px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .event-card .event-date {
    min-width: 60px;
    padding: 10px 8px;
    border-radius: 10px;
  }

  .event-card .event-date .day {
    font-size: 20px;
  }

  .event-card .event-date .month {
    font-size: 10px;
  }

  .event-card .event-details h5 {
    font-size: 14px;
  }

  .event-card .event-details p {
    font-size: 12px;
  }

  .event-card .btn-event {
    font-size: 12px;
    padding: 6px 16px;
  }

  .facility-card {
    height: 220px;
    border-radius: 14px;
  }

  .facility-card .facility-overlay h5 {
    font-size: 15px;
  }

  .facility-card .facility-overlay p {
    font-size: 12px;
  }

  .facility-card .facility-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
    top: 12px;
    right: 12px;
    border-radius: 10px;
  }

  .testimonial-card {
    padding: 20px;
    border-radius: 14px;
    margin: 6px 2px;
  }

  .testimonial-card p {
    font-size: 13px;
  }

  .testimonial-card .testimonial-stars {
    font-size: 12px;
  }

  .testimonial-card .testimonial-author .ta-avatar {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .testimonial-card .testimonial-author .ta-info strong {
    font-size: 13px;
  }

  .testimonial-card .testimonial-author .ta-info span {
    font-size: 11px;
  }

  .gallery-preview-item {
    height: 140px;
    border-radius: 10px;
    font-size: 11px;
    padding: 14px;
  }

  .gallery-preview-item i {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .gallery-item {
    height: 200px;
    border-radius: 10px;
    margin-bottom: 16px;
  }

  .gallery-item .gallery-overlay i {
    font-size: 28px;
  }

  .gallery-item .gallery-overlay span {
    font-size: 12px;
  }

  .gallery-filters .btn-filter {
    padding: 6px 14px;
    font-size: 11px;
    margin: 0 3px 6px;
  }

  .programme-filter .btn-filter {
    padding: 5px 12px;
    font-size: 10px;
    margin: 0 2px 4px;
  }

  .programme-category-title {
    font-size: 18px;
    margin: 24px 0 12px;
  }
}

/* ── Stats Section Mobile ── */
@media (max-width: 576px) {
  .stats-section .stat-item {
    padding: 12px 8px;
  }

  .stats-section .stat-icon {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .stats-section .stat-number {
    font-size: 30px;
  }

  .stats-section .stat-label {
    font-size: 10px;
    letter-spacing: 1px;
  }
}

/* ── Education Section Mobile ── */
@media (max-width: 576px) {
  .education-section .education-content h3 {
    font-size: 22px;
  }

  .education-section .education-content p {
    font-size: 13px;
  }

  .education-section .education-points li {
    padding: 8px 0;
    gap: 10px;
  }

  .education-section .education-points li i {
    font-size: 14px;
  }

  .education-section .education-points li strong {
    font-size: 13px;
  }

  .education-section .education-points li span {
    font-size: 12px;
  }

  .education-section .education-image .education-image-img {
    height: 220px;
  }
}

/* ── About Section Mobile ── */
@media (max-width: 576px) {
  .about-section .about-text h3 {
    font-size: 22px;
  }

  .about-section .about-text p {
    font-size: 13px;
    line-height: 1.7;
  }

  .about-section .about-features {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-section .about-features .feature-item {
    padding: 6px 10px;
  }

  .about-section .about-features .feature-item span {
    font-size: 12px;
  }

  .about-section .about-features .feature-item i {
    font-size: 12px;
  }

  .experience-badge {
    padding: 10px 14px;
    border-radius: 10px;
  }

  .experience-badge span {
    font-size: 18px;
  }

  .experience-badge small {
    font-size: 8px;
  }
}

/* ── Newsletter Section Mobile ── */
@media (max-width: 576px) {
  .newsletter-wrapper h3 {
    font-size: 20px;
  }

  .newsletter-wrapper p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .newsletter-form .form-control {
    padding: 12px 16px;
    font-size: 13px;
  }

  .newsletter-form .btn-subscribe {
    padding: 12px 20px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
}

/* ── CTA Section Mobile ── */
@media (max-width: 576px) {
  .cta-section h2 {
    font-size: 24px;
  }

  .cta-section p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .cta-section .btn-cta {
    padding: 12px 24px;
    font-size: 13px;
  }
}

/* ── Footer Mobile Refinements ── */
@media (max-width: 576px) {
  .main-footer {
    padding: 50px 0 0;
  }

  .main-footer h5 {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .main-footer p {
    font-size: 13px;
  }

  .main-footer .footer-links a {
    font-size: 13px;
  }

  .main-footer .footer-contact li {
    font-size: 13px;
    gap: 10px;
  }

  .main-footer .footer-social {
    gap: 6px;
  }

  .main-footer .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .main-footer .footer-bottom {
    font-size: 11px;
    padding: 14px 0;
    margin-top: 30px;
  }

  .footer-newsletter .input-group input {
    padding: 8px 12px;
    font-size: 12px;
  }

  .footer-newsletter .input-group button {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .main-footer {
    padding: 40px 0 0;
  }

  .main-footer h5 {
    font-size: 14px;
  }

  .main-footer p,
  .main-footer .footer-links a,
  .main-footer .footer-contact li {
    font-size: 12px;
  }

  .main-footer .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

/* ── Partner Carousel Mobile ── */
@media (max-width: 576px) {
  .partner-item {
    height: 64px;
    padding: 10px;
  }

  .partner-item .partner-placeholder {
    font-size: 11px;
    border-radius: 10px;
  }
}

/* ── Cookie Consent Mobile Refinements ── */
@media (max-width: 576px) {
  .cookie-consent {
    padding: 10px 0;
  }

  .cookie-consent p {
    font-size: 12px;
  }

  .cookie-consent .cookie-buttons {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .cookie-consent .btn-accept,
  .cookie-consent .btn-decline {
    padding: 7px 16px;
    font-size: 12px;
  }
}

/* ── Scroll To Top Mobile ── */
@media (max-width: 576px) {
  .scroll-top {
    width: 38px;
    height: 38px;
    font-size: 15px;
    bottom: 20px;
    right: 20px;
  }
}

/* ── Auth Pages Mobile Refinements ── */
@media (max-width: 576px) {
  .auth-card .auth-title {
    font-size: 24px;
  }

  .auth-card .auth-subtitle {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .auth-card .form-label {
    font-size: 12px;
  }

  .auth-card .form-control {
    padding: 10px 14px;
    font-size: 13px;
  }

  .auth-card .btn-auth {
    padding: 12px;
    font-size: 14px;
    border-radius: 10px;
  }

  .auth-card .auth-footer {
    font-size: 13px;
  }
}

/* ── Contact Page Mobile ── */
@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .contact-form-wrapper .form-label {
    font-size: 13px;
  }

  .contact-form-wrapper .form-control {
    padding: 10px 14px;
    font-size: 13px;
  }

  .contact-form-wrapper .btn-submit {
    padding: 12px 24px;
    font-size: 13px;
  }

  .contact-info-card {
    padding: 20px;
    border-radius: 14px;
  }

  .contact-info-card .cic-icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
    border-radius: 10px;
  }

  .contact-info-card h5 {
    font-size: 14px;
  }

  .contact-info-card p {
    font-size: 13px;
  }

  .map-placeholder {
    height: 250px;
    border-radius: 14px;
  }

  .map-placeholder i {
    font-size: 32px;
  }
}

/* ── Apply Page Mobile ── */
@media (max-width: 576px) {
  .apply-section .card-header {
    padding: 14px 18px;
    font-size: 14px;
  }

  .apply-section .form-label {
    font-size: 13px;
  }

  .apply-section .form-control,
  .apply-section .form-select {
    padding: 10px 14px;
    font-size: 13px;
  }

  .apply-section .btn-submit-application {
    padding: 12px 28px;
    font-size: 13px;
  }
}

/* ── School Pages Mobile ── */
@media (max-width: 576px) {
  .school-hero {
    padding: 80px 0 35px;
  }

  .school-hero .school-badge {
    font-size: 10px;
    padding: 5px 12px;
    letter-spacing: 1px;
  }

  .school-hero h1 {
    font-size: 22px;
  }

  .school-hero p {
    font-size: 13px;
  }

  .school-intro .intro-text h3 {
    font-size: 20px;
  }

  .school-intro .intro-text p {
    font-size: 13px;
  }

  .objective-card {
    padding: 16px;
    border-radius: 10px;
  }

  .objective-card .obj-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 8px;
  }

  .objective-card h6 {
    font-size: 13px;
  }

  .objective-card p {
    font-size: 12px;
  }

  .benefit-card {
    padding: 16px;
    border-radius: 10px;
    gap: 12px;
  }

  .benefit-card .ben-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 15px;
    border-radius: 10px;
  }

  .benefit-card .ben-content h6 {
    font-size: 13px;
  }

  .benefit-card .ben-content p {
    font-size: 12px;
  }

  .career-card {
    padding: 20px 14px;
    border-radius: 10px;
  }

  .career-card .car-icon {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .career-card h6 {
    font-size: 13px;
  }
}

/* ── Facility Detail Page ── */
@media (max-width: 576px) {
  .facility-detail-hero h1 {
    font-size: 24px;
  }

  .facility-detail-hero p {
    font-size: 13px;
  }
}

/* ── Programme Detail Page ── */
@media (max-width: 576px) {
  .programme-detail-hero h1 {
    font-size: 22px;
  }

  .programme-detail-hero p {
    font-size: 13px;
  }

  .programme-detail-content h3 {
    font-size: 18px;
  }

  .programme-detail-content p {
    font-size: 13px;
  }
}

/* ── News Detail Page ── */
@media (max-width: 576px) {
  .news-detail-hero h1 {
    font-size: 22px;
  }

  .news-detail-content h3 {
    font-size: 18px;
  }

  .news-detail-content p {
    font-size: 13px;
  }
}

/* ── Legal Pages Mobile ── */
@media (max-width: 576px) {
  .legal-content h2 {
    font-size: 22px;
  }

  .legal-content h5 {
    font-size: 15px;
  }

  .legal-content p,
  .legal-content ul li {
    font-size: 13px;
  }
}

/* ── FAQ Page Mobile ── */
@media (max-width: 576px) {
  .accordion-button {
    font-size: 13px;
    padding: 12px 14px;
  }

  .accordion-body {
    font-size: 13px;
    padding: 14px;
  }
}

/* ── Preloader Enhancement ── */
@media (max-width: 576px) {
  .loader {
    width: 60px;
    height: 60px;
  }

  .loader-ring {
    border-width: 2px;
  }

  .loader img {
    height: 34px !important;
  }
}

/* ── Dashboard Mobile ── */
@media (max-width: 768px) {
  .dash-sidebar {
    transform: translateX(-100%);
    width: 280px;
  }

  .dash-sidebar.open {
    transform: translateX(0);
  }

  .dash-main {
    margin-left: 0;
  }

  .dash-topbar-left .dash-toggle-btn {
    display: block;
  }

  .dash-topbar-right .dash-search input {
    width: 140px;
  }

  .dash-topbar-right .dash-search input:focus {
    width: 180px;
  }
}

@media (max-width: 576px) {
  .dashboard-header {
    padding: 80px 0 24px;
  }

  .dashboard-header .dash-welcome h1 {
    font-size: 20px;
  }

  .dashboard-header .dash-welcome p {
    font-size: 13px;
  }

  .dashboard-header .dash-avatar {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .dashboard-body {
    padding: 20px 0 30px;
  }

  .dash-card {
    padding: 18px;
    border-radius: 14px;
  }

  .dash-card .dash-card-title {
    font-size: 16px;
  }

  .dash-stat-card {
    padding: 18px;
    border-radius: 14px;
  }

  .dash-stat-card .dash-stat-number {
    font-size: 22px;
  }

  .dash-stat-card .dash-stat-label {
    font-size: 10px;
  }

  .dash-actions .btn-dash {
    padding: 8px 16px;
    font-size: 12px;
  }

  .dash-topbar {
    padding: 0 16px;
    height: 56px;
  }

  .dash-topbar-right .dash-search {
    display: none;
  }

  .dash-info-row {
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
  }

  .dash-info-row .dash-label {
    min-width: auto;
    font-size: 12px;
  }

  .dash-info-row .dash-value {
    font-size: 13px;
  }
}

/* ── Admin Overlay for Mobile Menu ── */
.dash-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

.dash-overlay.show {
  display: block;
}

@media (max-width: 768px) {
  .dash-overlay.show {
    display: block;
  }
}

/* ── Reduced Motion Preference ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-slide.active .hero-badge,
  .hero-slide.active h1,
  .hero-slide.active p,
  .hero-slide.active .btn-group-custom,
  .hero-slide.active .hero-slide-icon {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right,
  .fade-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Fade Scale Animation ── */
.fade-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Slide Up Variant ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Button Loading Spinner ── */
.btn-loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(0,0,0,0.15);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: btnSpin 0.6s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* ── Tooltip Enhancement ── */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--black);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 100;
}

[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ── Generic Badge / Label ── */
.badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gradient-gold);
  color: var(--black);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ── Skip to main content (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--black);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* ── Card Image Zoom Effect ── */
.card-img-zoom {
  overflow: hidden;
  border-radius: inherit;
}

.card-img-zoom img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-img-zoom:hover img {
  transform: scale(1.06);
}

/* ── Text Gradient Utility ── */
.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Owl Carousel Dot Theming (Homepage) ── */
.testimonials-section .owl-theme .owl-dots .owl-dot span {
  background: rgba(255,255,255,0.15) !important;
}

.testimonials-section .owl-theme .owl-dots .owl-dot.active span,
.testimonials-section .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--gold) !important;
}

/* ── Print Refinements ── */
@media print {
  .section-divider-top::before,
  .about-section + .why-choose-section::before,
  .why-choose-section + .schools-section::before,
  .schools-section + .programmes-section::before,
  .programmes-section + .executive-section::before,
  .executive-section + .stats-section::before,
  .stats-section + .education-section::before,
  .education-section + .facilities-section::before,
  .facilities-section + .testimonials-section::before,
  .testimonials-section + .news-section::before,
  .news-section + .events-section::before,
  .events-section + section::before,
  section + .partners-section::before {
    display: none !important;
  }
}

/* ===== USER DASHBOARD ===== */
.dashboard-page {
  background: var(--bg-light);
  min-height: 100vh;
}

.dashboard-header {
  background: var(--black);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

.dashboard-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,163,77,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.dashboard-header .dash-welcome h1 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 4px;
}

.dashboard-header .dash-welcome p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin: 0;
}

.dashboard-header .dash-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.dashboard-body {
  padding: 40px 0 60px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.dash-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0,0,0,0.04);
  height: 100%;
  transition: var(--transition);
}

.dash-card:hover {
  box-shadow: var(--shadow-md);
}

.dash-card .dash-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--green);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-card .dash-card-title i {
  color: var(--gold);
  font-size: 20px;
}

.dash-info-row {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  gap: 12px;
}

.dash-info-row:last-child {
  border-bottom: none;
}

.dash-info-row .dash-label {
  font-size: 13px;
  color: var(--text-light);
  min-width: 110px;
  font-weight: 500;
}

.dash-info-row .dash-value {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.dash-stat-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0,0,0,0.04);
  height: 100%;
  text-align: center;
  transition: var(--transition);
}

.dash-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.dash-stat-card .dash-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 12px;
}

.dash-stat-card .dash-stat-icon.gold {
  background: rgba(200,163,77,0.15);
  color: var(--gold);
}

.dash-stat-card .dash-stat-icon.green {
  background: rgba(11,61,46,0.12);
  color: var(--green);
}

.dash-stat-card .dash-stat-icon.dark {
  background: rgba(15,15,15,0.08);
  color: var(--black);
}

.dash-stat-card .dash-stat-number {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--green);
  line-height: 1.2;
}

.dash-stat-card .dash-stat-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

.dash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dash-actions .btn-dash {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.dash-actions .btn-dash-gold {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.dash-actions .btn-dash-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--black);
}

.dash-actions .btn-dash-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid rgba(0,0,0,0.1);
}

.dash-actions .btn-dash-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.dash-actions .btn-dash-danger {
  background: rgba(192,57,43,0.1);
  color: var(--accent);
}

.dash-actions .btn-dash-danger:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .dashboard-header {
    padding: 90px 0 30px;
  }
  .dashboard-header .dash-welcome h1 {
    font-size: 22px;
  }
  .dashboard-body {
    padding: 24px 0 40px;
  }
  .dash-card {
    padding: 20px;
  }
  .dash-info-row {
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
  }
  .dash-info-row .dash-label {
    min-width: auto;
  }
}

/* ===== DASHBOARD LAYOUT ===== */
.dash-layout {
  display: flex;
  min-height: 100vh;
  background: var(--bg-light);
}

.dash-sidebar {
  width: 260px;
  background: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 999;
  overflow-y: auto;
  transition: transform 0.3s ease, width 0.3s ease;
  border-right: 1px solid rgba(200,163,77,0.08);
}

.dash-sidebar::-webkit-scrollbar { width: 4px; }
.dash-sidebar::-webkit-scrollbar-thumb { background: rgba(200,163,77,0.3); border-radius: 4px; }

.dash-sidebar-brand {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(200,163,77,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.dash-sidebar-brand img {
  height: 36px;
}

.dash-sidebar-brand span {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.dash-sidebar-brand span small {
  display: block;
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.dash-sidebar-nav {
  padding: 12px 0;
}

.dash-sidebar-nav .nav-section {
  padding: 8px 20px 4px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.dash-sidebar-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
  position: relative;
}

.dash-sidebar-nav .nav-item i {
  width: 20px;
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}

.dash-sidebar-nav .nav-item:hover,
.dash-sidebar-nav .nav-item.active {
  color: #ffffff;
  background: rgba(200,163,77,0.06);
  border-left-color: var(--gold);
}

.dash-sidebar-nav .nav-item:hover i,
.dash-sidebar-nav .nav-item.active i {
  color: var(--gold);
}

.dash-sidebar-nav .nav-item .nav-badge {
  margin-left: auto;
  background: var(--gradient-gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 20px;
  min-width: 20px;
  text-align: center;
}

.dash-sidebar-nav .nav-item .nav-badge.green {
  background: var(--green);
  color: #ffffff;
}

.dash-main {
  flex: 1;
  margin-left: 260px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.dash-topbar {
  background: #ffffff;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200,163,77,0.08);
}

.dash-topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dash-topbar-left .dash-toggle-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-dark);
  cursor: pointer;
  padding: 4px;
  display: none;
}

.dash-topbar-left .dash-breadcrumb {
  font-size: 13px;
  color: var(--text-light);
}

.dash-topbar-left .dash-breadcrumb span {
  color: var(--text-dark);
  font-weight: 600;
}

.dash-topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-topbar-right .dash-search {
  position: relative;
}

.dash-topbar-right .dash-search input {
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 8px 14px 8px 38px;
  font-size: 13px;
  width: 220px;
  transition: var(--transition);
  background: var(--bg-light);
  outline: none;
}

.dash-topbar-right .dash-search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,163,77,0.1);
  width: 280px;
}

.dash-topbar-right .dash-search i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 14px;
}

.dash-topbar-right .dash-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--text-dark);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-topbar-right .dash-icon-btn:hover {
  background: var(--bg-light);
  color: var(--gold);
}

.dash-topbar-right .dash-icon-btn .notif-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.dash-topbar-right .dash-user-dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 10px 4px 4px;
  border-radius: 10px;
  transition: var(--transition);
  text-decoration: none;
}

.dash-topbar-right .dash-user-dropdown:hover {
  background: var(--bg-light);
}

.dash-topbar-right .dash-user-dropdown .dash-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}

.dash-topbar-right .dash-user-dropdown .dash-user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.dash-content {
  flex: 1;
  padding: 28px;
}

.dash-content-header {
  margin-bottom: 24px;
}

.dash-content-header h2 {
  font-size: 24px;
  color: var(--green);
  margin-bottom: 4px;
}

.dash-content-header p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

/* Dashboard Stats Row */
.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.dash-stat-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.dash-stat-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.dash-stat-box .stat-box-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.dash-stat-box .stat-box-icon.gold-bg { background: rgba(200,163,77,0.12); color: var(--gold); }
.dash-stat-box .stat-box-icon.green-bg { background: rgba(11,61,46,0.1); color: var(--green); }
.dash-stat-box .stat-box-icon.dark-bg { background: rgba(15,15,15,0.06); color: var(--black); }
.dash-stat-box .stat-box-icon.red-bg { background: rgba(192,57,43,0.1); color: var(--accent); }

.dash-stat-box .stat-box-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  margin: 0;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.dash-stat-box .stat-box-info p {
  font-size: 12px;
  color: var(--text-light);
  margin: 2px 0 0;
  font-weight: 500;
}

/* Dashboard Tables */
.dash-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.dash-table th {
  text-align: left;
  padding: 12px 14px;
  font-weight: 600;
  color: var(--text-light);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--gold);
  white-space: nowrap;
}

.dash-table td {
  padding: 12px 14px;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  vertical-align: middle;
}

.dash-table tbody tr:hover {
  background: rgba(200,163,77,0.03);
}

.dash-table .status-badge {
  display: inline-flex;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.dash-table .status-badge.pending { background: rgba(200,163,77,0.12); color: var(--gold-dark); }
.dash-table .status-badge.active { background: rgba(11,61,46,0.1); color: var(--green-dark); }
.dash-table .status-badge.completed { background: rgba(11,61,46,0.12); color: var(--green); }
.dash-table .status-badge.rejected { background: rgba(192,57,43,0.1); color: var(--accent); }
.dash-table .status-badge.submitted { background: rgba(200,163,77,0.08); color: var(--gold-dark); }
.dash-table .status-badge.draft { background: rgba(0,0,0,0.04); color: var(--text-light); }

.dash-table .btn-table {
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: none;
  cursor: pointer;
}

.dash-table .btn-table-gold { background: rgba(200,163,77,0.12); color: var(--gold-dark); }
.dash-table .btn-table-gold:hover { background: var(--gold); color: var(--black); }
.dash-table .btn-table-green { background: rgba(11,61,46,0.1); color: var(--green); }
.dash-table .btn-table-green:hover { background: var(--green); color: #ffffff; }
.dash-table .btn-table-outline { border: 1px solid rgba(0,0,0,0.1); color: var(--text-dark); }
.dash-table .btn-table-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Dashboard Forms */
.dash-form-group {
  margin-bottom: 20px;
}

.dash-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.dash-form-group .form-control {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  font-size: 13px;
  transition: var(--transition);
  background: var(--bg-white);
  outline: none;
}

.dash-form-group .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,163,77,0.1);
}

.dash-form-group .form-control.is-invalid {
  border-color: var(--accent);
}

.dash-form-group textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.dash-form-group select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8a9a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.dash-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 576px) {
  .dash-form-row {
    grid-template-columns: 1fr;
  }
}

/* Programme Cards */
.prog-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  height: 100%;
}

.prog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.prog-card .prog-card-body {
  padding: 22px;
}

.prog-card .prog-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(200,163,77,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 14px;
}

.prog-card h5 {
  font-size: 15px;
  color: var(--green);
  margin-bottom: 6px;
  font-family: var(--font-primary);
  font-weight: 600;
}

.prog-card .prog-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.prog-card .prog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.prog-card .prog-meta i {
  color: var(--gold);
  font-size: 11px;
}

.prog-card .prog-desc {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 14px;
}

.prog-card .prog-footer {
  padding: 14px 22px;
  border-top: 1px solid rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prog-card .prog-footer .prog-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  font-family: var(--font-heading);
}

/* Notification Items */
.notif-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.notif-item:last-child { border-bottom: none; }
.notif-item:hover { padding-left: 6px; }

.notif-item .notif-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.notif-item .notif-icon.gold-n { background: rgba(200,163,77,0.1); color: var(--gold); }
.notif-item .notif-icon.green-n { background: rgba(11,61,46,0.08); color: var(--green); }
.notif-item .notif-icon.red-n { background: rgba(192,57,43,0.08); color: var(--accent); }
.notif-item .notif-icon.blue-n { background: rgba(200,163,77,0.06); color: var(--gold-dark); }

.notif-item .notif-content h6 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.notif-item .notif-content p {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}

.notif-item .notif-content .notif-time {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}

.notif-item.unread {
  background: rgba(200,163,77,0.03);
  margin: 0 -14px;
  padding: 14px;
  border-radius: 10px;
}

/* Event List Items */
.event-list-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  align-items: center;
}

.event-list-item:last-child { border-bottom: none; }

.event-list-item .event-date-box {
  min-width: 60px;
  text-align: center;
  background: rgba(11,61,46,0.06);
  border-radius: 10px;
  padding: 10px 8px;
}

.event-list-item .event-date-box .day {
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  font-family: var(--font-heading);
  line-height: 1;
}

.event-list-item .event-date-box .month {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-top: 2px;
  display: block;
}

.event-list-item .event-info { flex: 1; }
.event-list-item .event-info h6 { font-size: 14px; color: var(--text-dark); margin-bottom: 2px; font-weight: 600; }
.event-list-item .event-info p { font-size: 12px; color: var(--text-light); margin: 0; }
.event-list-item .event-info .event-meta { font-size: 12px; color: var(--text-light); margin-top: 4px; display: flex; gap: 12px; }
.event-list-item .event-info .event-meta i { color: var(--gold); margin-right: 3px; }

/* Resource Cards */
.resource-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.resource-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.resource-card .resource-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.resource-card .resource-icon.pdf { background: rgba(192,57,43,0.08); color: var(--accent); }
.resource-card .resource-icon.doc { background: rgba(200,163,77,0.1); color: var(--gold-dark); }
.resource-card .resource-icon.video { background: rgba(11,61,46,0.08); color: var(--green); }
.resource-card .resource-icon.image { background: rgba(200,163,77,0.08); color: var(--gold); }

.resource-card .resource-info { flex: 1; }
.resource-card .resource-info h6 { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.resource-card .resource-info p { font-size: 11px; color: var(--text-light); margin: 0; }

.resource-card .resource-dl {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: none;
  background: var(--bg-light);
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-card .resource-dl:hover { background: var(--gold); color: var(--black); }

/* Gallery Grid */
.dash-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.dash-gallery-grid .gallery-thumb {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.dash-gallery-grid .gallery-thumb:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

.dash-gallery-grid .gallery-thumb i {
  font-size: 32px;
  color: rgba(200,163,77,0.2);
}

.dash-gallery-grid .gallery-thumb .gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
}

/* Activity Timeline */
.activity-timeline { position: relative; padding-left: 24px; }
.activity-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: rgba(200,163,77,0.15);
}

.activity-item { position: relative; padding-bottom: 18px; }
.activity-item:last-child { padding-bottom: 0; }

.activity-item .activity-dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--bg-light);
}

.activity-item .activity-dot.green-dot { background: var(--green); }

.activity-item .activity-text {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.5;
}

.activity-item .activity-time {
  font-size: 11px;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}

/* Settings Tabs */
.settings-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 16px;
}

.settings-tabs .st-btn {
  padding: 8px 20px;
  border-radius: 10px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--text-light);
}

.settings-tabs .st-btn:hover { background: rgba(200,163,77,0.06); color: var(--gold); }
.settings-tabs .st-btn.active { background: rgba(200,163,77,0.1); color: var(--gold-dark); }

/* Help Cards */
.help-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  height: 100%;
  cursor: pointer;
}

.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.help-card .help-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(200,163,77,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
  color: var(--gold);
}

.help-card h5 { font-size: 15px; color: var(--green); margin-bottom: 6px; }
.help-card p { font-size: 13px; color: var(--text-light); margin: 0; line-height: 1.6; }

/* Calendar Grid */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar-grid .cal-header {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  padding: 8px 4px;
  text-transform: uppercase;
}

.calendar-grid .cal-day {
  padding: 10px 4px;
  font-size: 13px;
  border-radius: 8px;
  color: var(--text-dark);
  transition: var(--transition);
  cursor: pointer;
  min-height: 50px;
}

.calendar-grid .cal-day:hover { background: rgba(200,163,77,0.06); }
.calendar-grid .cal-day.today { background: var(--gold); color: var(--black); font-weight: 700; }
.calendar-grid .cal-day.other-month { color: rgba(0,0,0,0.12); }
.calendar-grid .cal-day.has-event { font-weight: 600; position: relative; }
.calendar-grid .cal-day.has-event::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

/* Search Results Dropdown */
.dash-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  margin-top: 4px;
  overflow: hidden;
  display: none;
  z-index: 200;
  border: 1px solid rgba(200,163,77,0.1);
}

.dash-search-results.show { display: block; }

.dash-search-results .sr-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 13px;
  transition: var(--transition);
}

.dash-search-results .sr-item:hover { background: rgba(200,163,77,0.05); }
.dash-search-results .sr-item i { color: var(--gold); width: 18px; font-size: 14px; }

/* Dashboard Footer */
.dash-footer {
  background: #ffffff;
  padding: 16px 28px;
  border-top: 1px solid rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
}

.dash-footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.dash-footer a:hover { color: var(--gold); }

/* Responsive Dashboard */
@media (max-width: 991px) {
  .dash-sidebar {
    transform: translateX(-100%);
  }
  .dash-sidebar.open {
    transform: translateX(0);
  }
  .dash-sidebar-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
  }
  .dash-sidebar-overlay.show { display: block; }
  .dash-main { margin-left: 0; }
  .dash-topbar-left .dash-toggle-btn { display: block; }
  .dash-topbar-right .dash-search input { width: 160px; }
  .dash-topbar-right .dash-search input:focus { width: 200px; }
}

@media (max-width: 768px) {
  .dash-content { padding: 20px 16px; }
  .dash-topbar { padding: 0 16px; }
  .dash-stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dash-stat-box { padding: 16px; }
  .dash-stat-box .stat-box-info h3 { font-size: 20px; }
  .dash-topbar-right .dash-search input { width: 120px; }
  .dash-topbar-right .dash-search input:focus { width: 160px; }
  .dash-topbar-right .dash-user-dropdown .dash-user-name { display: none; }
  .dash-footer { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 576px) {
  .dash-stats-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .dash-stat-box { flex-direction: column; text-align: center; padding: 14px; }
  .dash-content-header h2 { font-size: 20px; }
  .dash-topbar-right .dash-search { display: none; }
}

/* ===== ALERT / MESSAGE STYLES ===== */
.alert-success {
  background: var(--green);
  color: #ffffff;
  border: none;
  border-radius: 10px;
}

.alert-danger {
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 10px;
}

.alert-dismissible .btn-close {
  filter: brightness(0) invert(1);
}

/* =============================================================
   PREMIUM USER DASHBOARD v2
   Complete Redesign - LEKKI SPORTS ACADEMY
   ============================================================= */

.dash-layout {
  display: flex;
  min-height: 100vh;
  background: #F4F2ED;
}

/* ── Sidebar ── */
.dash-sidebar {
  width: 270px;
  background: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), width 0.35s ease;
  border-right: 1px solid rgba(200,163,77,0.08);
  display: flex;
  flex-direction: column;
}

.dash-sidebar::-webkit-scrollbar { width: 3px; }
.dash-sidebar::-webkit-scrollbar-thumb { background: rgba(200,163,77,0.25); border-radius: 4px; }

.dash-sidebar-brand {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(200,163,77,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.02);
}

.dash-sidebar-brand .brand-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--black);
  font-weight: 800;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.dash-sidebar-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.dash-sidebar-brand .brand-text small {
  display: block;
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.dash-sidebar-nav {
  padding: 8px 0;
  flex: 1;
}

.dash-sidebar-nav .nav-section {
  padding: 16px 22px 6px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.dash-sidebar-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
  position: relative;
}

.dash-sidebar-nav .nav-item i {
  width: 20px;
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.25);
  transition: all 0.25s ease;
}

.dash-sidebar-nav .nav-item .nav-label { flex: 1; }

.dash-sidebar-nav .nav-item .nav-badge {
  background: var(--gradient-gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 20px;
  min-width: 18px;
  text-align: center;
  line-height: 1.5;
}

.dash-sidebar-nav .nav-item:hover,
.dash-sidebar-nav .nav-item.active {
  color: #ffffff;
  background: rgba(200,163,77,0.07);
  border-left-color: var(--gold);
}

.dash-sidebar-nav .nav-item:hover i,
.dash-sidebar-nav .nav-item.active i {
  color: var(--gold);
}

.dash-sidebar-nav .nav-item.logout-item {
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 14px;
}

.dash-sidebar-nav .nav-item.logout-item:hover {
  background: rgba(192,57,43,0.08);
  border-left-color: var(--accent);
}

.dash-sidebar-nav .nav-item.logout-item:hover i {
  color: var(--accent);
}

/* ── Sidebar Overlay ── */
.dash-sidebar-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 998;
  display: none;
  backdrop-filter: blur(4px);
}
.dash-sidebar-overlay.show { display: block; }

/* ── Main Content ── */
.dash-main {
  flex: 1;
  margin-left: 270px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Topbar ── */
.dash-topbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200,163,77,0.06);
}

.dash-topbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dash-topbar-left .dash-toggle-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-dark);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: none;
}

.dash-topbar-left .dash-toggle-btn:hover { background: var(--bg-light); color: var(--gold); }

.dash-topbar-left .dash-breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-topbar-left .dash-breadcrumb i { color: var(--gold); font-size: 12px; }

.dash-topbar-left .dash-breadcrumb span {
  color: var(--text-dark);
  font-weight: 600;
}

.dash-topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-topbar-right .dash-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.dash-topbar-right .dash-icon-btn:hover {
  background: var(--bg-light);
  color: var(--gold);
}

.dash-topbar-right .dash-icon-btn .notif-dot {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid #fff;
}

.dash-topbar-right .dash-user-dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 5px 12px 5px 6px;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
  margin-left: 6px;
}

.dash-topbar-right .dash-user-dropdown:hover { background: var(--bg-light); }

.dash-topbar-right .dash-user-dropdown .dash-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}

.dash-topbar-right .dash-user-dropdown .dash-user-info { line-height: 1.2; }

.dash-topbar-right .dash-user-dropdown .dash-user-info .dash-user-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.dash-topbar-right .dash-user-dropdown .dash-user-info .dash-user-role {
  display: block;
  font-size: 10px;
  color: var(--text-light);
  font-weight: 500;
}

/* ── Content Area ── */
.dash-content {
  flex: 1;
  padding: 28px 32px;
}

.dash-content-header {
  margin-bottom: 28px;
}

.dash-content-header .dch-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.dash-content-header h2 {
  font-size: 24px;
  color: var(--green);
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.dash-content-header p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

/* ── Stats Cards ── */
.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.dash-stat-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dash-stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
}

.dash-stat-box.gold-border::before { background: var(--gradient-gold); }
.dash-stat-box.green-border::before { background: var(--green); }
.dash-stat-box.dark-border::before { background: var(--black); }
.dash-stat-box.red-border::before { background: var(--accent); }

.dash-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.dash-stat-box .stat-box-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.dash-stat-box .stat-box-icon.gold-bg { background: rgba(200,163,77,0.12); color: var(--gold); }
.dash-stat-box .stat-box-icon.green-bg { background: rgba(11,61,46,0.1); color: var(--green); }
.dash-stat-box .stat-box-icon.dark-bg { background: rgba(15,15,15,0.06); color: var(--black); }
.dash-stat-box .stat-box-icon.red-bg { background: rgba(192,57,43,0.1); color: var(--accent); }

.dash-stat-box .stat-box-info h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  margin: 0;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.dash-stat-box .stat-box-info p {
  font-size: 12px;
  color: var(--text-light);
  margin: 2px 0 0;
  font-weight: 500;
}

/* ── Dashboard Card ── */
.dash-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  height: 100%;
  transition: all 0.3s ease;
}

.dash-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }

.dash-card .dash-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--green);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-card .dash-card-title i {
  color: var(--gold);
  font-size: 18px;
}

.dash-card .dash-card-title .card-title-action {
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  font-family: var(--font-primary);
  transition: all 0.2s ease;
}

.dash-card .dash-card-title .card-title-action:hover { color: var(--green); }

/* ── Tables ── */
.dash-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.dash-table th {
  text-align: left;
  padding: 13px 16px;
  font-weight: 600;
  color: var(--text-light);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--gold);
  white-space: nowrap;
  background: rgba(200,163,77,0.03);
}

.dash-table td {
  padding: 13px 16px;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  vertical-align: middle;
}

.dash-table tbody tr:hover { background: rgba(200,163,77,0.03); }

.dash-table .status-badge {
  display: inline-flex;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.dash-table .status-badge.submitted { background: rgba(200,163,77,0.12); color: var(--gold-dark); }
.dash-table .status-badge.under_review { background: rgba(200,163,77,0.12); color: var(--gold-dark); }
.dash-table .status-badge.accepted { background: rgba(11,61,46,0.1); color: var(--green-dark); }
.dash-table .status-badge.enrolled { background: rgba(11,61,46,0.12); color: var(--green); }
.dash-table .status-badge.rejected { background: rgba(192,57,43,0.1); color: var(--accent); }
.dash-table .status-badge.draft { background: rgba(0,0,0,0.04); color: var(--text-light); }
.dash-table .status-badge.waitlisted { background: rgba(200,163,77,0.08); color: var(--gold-dark); }

.dash-table .btn-table {
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: none;
  cursor: pointer;
}
.dash-table .btn-table-gold { background: rgba(200,163,77,0.12); color: var(--gold-dark); }
.dash-table .btn-table-gold:hover { background: var(--gold); color: var(--black); }
.dash-table .btn-table-green { background: rgba(11,61,46,0.1); color: var(--green); }
.dash-table .btn-table-green:hover { background: var(--green); color: #fff; }
.dash-table .btn-table-outline { border: 1px solid rgba(0,0,0,0.1); color: var(--text-dark); }
.dash-table .btn-table-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── Forms ── */
.dash-form-group { margin-bottom: 20px; }

.dash-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.dash-form-group .form-control {
  width: 100%;
  padding: 11px 16px;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  font-size: 13px;
  transition: all 0.25s ease;
  background: var(--bg-white);
  outline: none;
}

.dash-form-group .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,163,77,0.1);
}

.dash-form-group textarea.form-control { min-height: 100px; resize: vertical; }

.dash-form-group select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8a9a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.dash-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ── Buttons ── */
.btn-dash {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  line-height: 1.4;
}

.btn-dash-gold {
  background: var(--gradient-gold);
  color: var(--black) !important;
  box-shadow: 0 4px 14px rgba(200,163,77,0.3);
}
.btn-dash-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,163,77,0.4);
}

.btn-dash-green {
  background: var(--green);
  color: #fff !important;
}
.btn-dash-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  color: #fff !important;
}

.btn-dash-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid rgba(0,0,0,0.1);
}
.btn-dash-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-dash-danger {
  background: rgba(192,57,43,0.1);
  color: var(--accent);
}
.btn-dash-danger:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Programme Cards ── */
.prog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.prog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.prog-card .prog-card-header {
  padding: 20px 22px 0;
}

.prog-card .prog-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(200,163,77,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 14px;
}

.prog-card .prog-card-body {
  padding: 0 22px 14px;
  flex: 1;
}

.prog-card h5 {
  font-size: 16px;
  color: var(--green);
  margin-bottom: 4px;
  font-family: var(--font-primary);
  font-weight: 700;
}

.prog-card .prog-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.prog-card .prog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.prog-card .prog-meta i { color: var(--gold); font-size: 11px; }

.prog-card .prog-desc {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.7;
}

.prog-card .prog-footer {
  padding: 14px 22px;
  border-top: 1px solid rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(200,163,77,0.02);
}

.prog-card .prog-footer .prog-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  font-family: var(--font-heading);
}

/* ── Info Rows ── */
.dash-info-row {
  display: flex;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  gap: 14px;
}
.dash-info-row:last-child { border-bottom: none; }

.dash-info-row .dash-label {
  font-size: 13px;
  color: var(--text-light);
  min-width: 120px;
  font-weight: 500;
}

.dash-info-row .dash-value {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

/* ── Notification Items ── */
.notif-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover { padding-left: 6px; background: rgba(200,163,77,0.02); border-radius: 8px; }

.notif-item .notif-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.notif-item .notif-icon.gold-n { background: rgba(200,163,77,0.1); color: var(--gold); }
.notif-item .notif-icon.green-n { background: rgba(11,61,46,0.08); color: var(--green); }
.notif-item .notif-icon.red-n { background: rgba(192,57,43,0.08); color: var(--accent); }
.notif-item .notif-icon.blue-n { background: rgba(200,163,77,0.06); color: var(--gold-dark); }

.notif-item .notif-content { flex: 1; }
.notif-item .notif-content h6 { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.notif-item .notif-content p { font-size: 12px; color: var(--text-light); margin: 0; line-height: 1.5; }
.notif-item .notif-content .notif-time { font-size: 11px; color: var(--text-light); margin-top: 4px; display: block; }

.notif-item.unread {
  background: rgba(200,163,77,0.04);
  margin: 0 -14px;
  padding: 14px 20px;
  border-radius: 10px;
}

/* ── Event List Items ── */
.event-list-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  align-items: center;
}
.event-list-item:last-child { border-bottom: none; }

.event-list-item .event-date-box {
  min-width: 62px;
  text-align: center;
  background: rgba(11,61,46,0.06);
  border-radius: 12px;
  padding: 10px 8px;
  border: 1px solid rgba(200,163,77,0.08);
}

.event-list-item .event-date-box .day {
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  font-family: var(--font-heading);
  line-height: 1;
}

.event-list-item .event-date-box .month {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-top: 2px;
  display: block;
}

.event-list-item .event-info { flex: 1; }
.event-list-item .event-info h6 { font-size: 14px; color: var(--text-dark); margin-bottom: 3px; font-weight: 600; }
.event-list-item .event-info p { font-size: 12px; color: var(--text-light); margin: 0; line-height: 1.5; }
.event-list-item .event-info .event-meta { font-size: 12px; color: var(--text-light); margin-top: 5px; display: flex; gap: 14px; flex-wrap: wrap; }
.event-list-item .event-info .event-meta i { color: var(--gold); margin-right: 4px; }

/* ── Resource Cards ── */
.resource-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.resource-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); transform: translateY(-2px); }

.resource-card .resource-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.resource-card .resource-icon.pdf { background: rgba(192,57,43,0.08); color: var(--accent); }
.resource-card .resource-icon.doc { background: rgba(200,163,77,0.1); color: var(--gold-dark); }
.resource-card .resource-icon.video { background: rgba(11,61,46,0.08); color: var(--green); }
.resource-card .resource-icon.image { background: rgba(200,163,77,0.08); color: var(--gold); }

.resource-card .resource-info { flex: 1; }
.resource-card .resource-info h6 { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.resource-card .resource-info p { font-size: 12px; color: var(--text-light); margin: 0; }

.resource-card .resource-dl {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: none;
  background: var(--bg-light);
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.resource-card .resource-dl:hover { background: var(--gold); color: var(--black); }

/* ── Gallery Grid ── */
.dash-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.dash-gallery-grid .gallery-thumb {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.dash-gallery-grid .gallery-thumb:hover { transform: scale(1.04); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }

.dash-gallery-grid .gallery-thumb i { font-size: 36px; color: rgba(200,163,77,0.2); }

.dash-gallery-grid .gallery-thumb .gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 12px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

/* ── Activity Timeline ── */
.activity-timeline { position: relative; padding-left: 26px; }
.activity-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(200,163,77,0.15);
}

.activity-item { position: relative; padding-bottom: 18px; }
.activity-item:last-child { padding-bottom: 0; }

.activity-item .activity-dot {
  position: absolute;
  left: -26px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px rgba(200,163,77,0.2);
}

.activity-item .activity-text {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.6;
}

.activity-item .activity-time {
  font-size: 11px;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}

/* ── Quick Actions ── */
.dash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── Settings Tabs ── */
.settings-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 16px;
}

.settings-tabs .st-btn {
  padding: 9px 22px;
  border-radius: 10px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
  color: var(--text-light);
}

.settings-tabs .st-btn:hover { background: rgba(200,163,77,0.06); color: var(--gold); }
.settings-tabs .st-btn.active { background: rgba(200,163,77,0.1); color: var(--gold-dark); }

/* ── Help Cards ── */
.help-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  height: 100%;
  cursor: pointer;
}
.help-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); }

.help-card .help-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(200,163,77,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: var(--gold);
}

.help-card h5 { font-size: 16px; color: var(--green); margin-bottom: 8px; }
.help-card p { font-size: 13px; color: var(--text-light); margin: 0; line-height: 1.7; }

/* ── Calendar Grid ── */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar-grid .cal-header {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  padding: 10px 4px;
  text-transform: uppercase;
}

.calendar-grid .cal-day {
  padding: 12px 4px;
  font-size: 14px;
  border-radius: 10px;
  color: var(--text-dark);
  transition: all 0.2s ease;
  cursor: pointer;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.calendar-grid .cal-day:hover { background: rgba(200,163,77,0.06); }
.calendar-grid .cal-day.today { background: var(--gold); color: var(--black); font-weight: 700; box-shadow: 0 2px 8px rgba(200,163,77,0.3); }
.calendar-grid .cal-day.other-month { color: rgba(0,0,0,0.12); }
.calendar-grid .cal-day.has-event { font-weight: 700; position: relative; }
.calendar-grid .cal-day.has-event::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.calendar-grid .cal-day.today.has-event::after { background: var(--black); }

/* ── Footer ── */
.dash-footer {
  background: #ffffff;
  padding: 18px 32px;
  border-top: 1px solid rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
}

.dash-footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dash-footer a:hover { color: var(--gold); }

/* ── Welcome Widget ── */
.welcome-widget {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 16px;
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.welcome-widget::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(200,163,77,0.06);
  pointer-events: none;
}

.welcome-widget::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: 20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.welcome-widget h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 22px;
  margin-bottom: 6px;
}

.welcome-widget p {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  margin-bottom: 18px;
  max-width: 500px;
}

.welcome-widget .welcome-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.welcome-widget .welcome-stats .ws-item {
  text-align: center;
}

.welcome-widget .welcome-stats .ws-item .ws-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  display: block;
}

.welcome-widget .welcome-stats .ws-item .ws-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Alert Styles ── */
.alert-premium {
  border-radius: 12px;
  border: none;
  padding: 14px 18px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-premium.alert-success { background: rgba(11,61,46,0.08); color: var(--green); border-left: 4px solid var(--green); }
.alert-premium.alert-danger { background: rgba(192,57,43,0.08); color: var(--accent); border-left: 4px solid var(--accent); }

.alert-premium .btn-close { font-size: 12px; }

/* ── Empty State ── */
.empty-state {
  text-align: center;
  padding: 40px 20px;
}

.empty-state i {
  font-size: 56px;
  color: rgba(200,163,77,0.12);
  margin-bottom: 16px;
}

.empty-state h5 {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 6px;
  font-family: var(--font-primary);
}

.empty-state p {
  font-size: 13px;
  color: var(--text-light);
  max-width: 380px;
  margin: 0 auto;
}

/* ── Certificate Card ── */
.cert-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(200,163,77,0.15);
  transition: all 0.3s ease;
  height: 100%;
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  border-color: var(--gold);
}

.cert-card .cert-top {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 30px;
  text-align: center;
  position: relative;
}

.cert-card .cert-top i {
  font-size: 48px;
  color: var(--gold);
  opacity: 0.9;
}

.cert-card .cert-body {
  padding: 22px;
  text-align: center;
}

.cert-card .cert-body h5 {
  font-size: 15px;
  color: var(--green);
  margin-bottom: 4px;
}

.cert-card .cert-body p {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 14px;
}

/* ── Search ── */
.dash-search-wrap {
  position: relative;
}

.dash-search-wrap input {
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 9px 14px 9px 40px;
  font-size: 13px;
  width: 220px;
  transition: all 0.25s ease;
  background: var(--bg-light);
  outline: none;
}

.dash-search-wrap input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,163,77,0.1);
  width: 280px;
}

.dash-search-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 14px;
}

/* ── News Card ── */
.news-card-dash {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  height: 100%;
}

.news-card-dash:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.news-card-dash .news-img-placeholder {
  height: 170px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.news-card-dash .news-img-placeholder i {
  font-size: 42px;
  color: rgba(200,163,77,0.15);
}

.news-card-dash .news-body {
  padding: 18px 20px;
}

.news-card-dash .news-body .news-date {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.news-card-dash .news-body h6 {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 600;
}

.news-card-dash .news-body p {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ── Profile page ── */
.profile-avatar-section {
  text-align: center;
  padding: 30px 20px;
}

.profile-avatar-section .profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  box-shadow: 0 8px 25px rgba(200,163,77,0.3);
  border: 4px solid rgba(200,163,77,0.2);
}

.profile-avatar-section h5 {
  font-size: 18px;
  color: var(--green);
  margin-bottom: 2px;
}

.profile-avatar-section p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ── Responsive ── */
@media (max-width: 1199px) {
  .dash-content { padding: 24px; }
  .dash-topbar { padding: 0 24px; }
}

@media (max-width: 991px) {
  .dash-sidebar {
    transform: translateX(-100%);
    width: 280px;
  }
  .dash-sidebar.open { transform: translateX(0); }
  .dash-main { margin-left: 0; }
  .dash-topbar-left .dash-toggle-btn { display: flex; }
  .dash-topbar-right .dash-search-wrap input { width: 160px; }
  .dash-topbar-right .dash-search-wrap input:focus { width: 200px; }
  .dash-footer { padding: 16px 24px; }
  .dash-content { padding: 20px 20px; }
}

@media (max-width: 768px) {
  .dash-content { padding: 18px 16px; }
  .dash-topbar { padding: 0 16px; height: 60px; }
  .dash-stats-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .dash-stat-box { padding: 16px 18px; }
  .dash-stat-box .stat-box-info h3 { font-size: 22px; }
  .dash-topbar-right .dash-search-wrap { display: none; }
  .dash-topbar-right .dash-user-dropdown .dash-user-info { display: none; }
  .dash-footer { flex-direction: column; gap: 8px; text-align: center; }
  .dash-form-row { grid-template-columns: 1fr; }
  .dash-content-header .dch-top { flex-direction: column; }
  .dash-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .welcome-widget .welcome-stats { gap: 16px; }
  .dash-card { padding: 20px; }
}

@media (max-width: 576px) {
  .dash-stats-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dash-stat-box { padding: 14px; gap: 12px; }
  .dash-stat-box .stat-box-icon { width: 42px; height: 42px; font-size: 18px; }
  .dash-stat-box .stat-box-info h3 { font-size: 20px; }
  .dash-content-header h2 { font-size: 20px; }
  .dash-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dash-sidebar { width: 260px; }
}

/* =============================================================
   PREMIUM HOMEPAGE ENHANCEMENTS
   LEKKI SPORTS ACADEMY - World-Class Redesign
   ============================================================= */

/* ── Scroll Reveal Animations ── */
.fade-in { opacity: 0; transform: translateY(35px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.fade-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-scale.visible { opacity: 1; transform: scale(1); }

/* ── Glassmorphism Nav ── */
.main-header {
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(200,163,77,0.1) !important;
}

.main-header.scrolled {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1) !important;
}

/* ── Hero Enhancements ── */
.hero-slider {
  min-height: 95vh;
}

.hero-slides-wrapper, .hero-slide {
  min-height: 95vh;
}

.hero-slide-bg {
  background-size: cover !important;
  background-position: center !important;
}

.hero-slide-overlay {
  background: linear-gradient(135deg, rgba(15,15,15,0.75) 0%, rgba(11,61,46,0.55) 50%, rgba(15,15,15,0.8) 100%);
}

.hero-slide-pattern {
  background-image: radial-gradient(rgba(200,163,77,0.08) 1px, transparent 1px);
  background-size: 35px 35px;
}

.hero-slide h1 {
  font-size: 54px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-slide p {
  font-size: 17px;
  max-width: 600px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

.hero-slide .hero-badge {
  background: rgba(200,163,77,0.18);
  border: 1px solid rgba(200,163,77,0.35);
  backdrop-filter: blur(8px);
  font-size: 12px;
  padding: 10px 24px;
}

.hero-slide-icon {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(200,163,77,0.25) 0%, transparent 70%);
  border: 2px solid rgba(200,163,77,0.15);
}

.hero-slide-icon i { font-size: 110px; }

.hero-slider-arrow {
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.35s ease;
}
.hero-slider-arrow:hover {
  background: var(--gradient-gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(200,163,77,0.35);
}

/* ── Enhanced Section Titles ── */
.section-title .subtitle {
  font-size: 12px;
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.section-title .subtitle::before,
.section-title .subtitle::after {
  width: 30px;
  height: 2px;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 14px;
}

.section-title p {
  font-size: 16px;
  max-width: 600px;
}

.section-title .title-line {
  width: 60px;
  height: 3px;
  margin-top: 16px;
}

/* ── About Section ── */
.about-section .about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-section .about-image .experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-gold);
  color: var(--black);
  border-radius: 14px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(200,163,77,0.3);
  backdrop-filter: blur(8px);
}

.about-section .about-image .experience-badge span {
  display: block;
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.about-section .about-image .experience-badge small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.about-section .about-text h3 { font-size: 30px; margin-bottom: 18px; }
.about-section .about-text p { font-size: 15px; line-height: 1.8; }

.about-section .about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.about-section .about-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(200,163,77,0.04);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about-section .about-features .feature-item:hover {
  background: rgba(200,163,77,0.08);
  transform: translateX(4px);
}

.about-section .about-features .feature-item i {
  color: var(--green);
  font-size: 16px;
}

.about-section .about-features .feature-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

/* ── VMV Cards ── */
.vmv-card {
  background: #fff;
  border: 1px solid rgba(200,163,77,0.12);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.vmv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.vmv-card:hover::before { transform: scaleX(1); }

.vmv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: rgba(200,163,77,0.25);
}

.vmv-card .vmv-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--black);
  box-shadow: 0 8px 25px rgba(200,163,77,0.3);
  transition: all 0.4s ease;
}

.vmv-card:hover .vmv-icon { transform: scale(1.1) rotate(-5deg); }

.vmv-card h4 { font-size: 20px; margin-bottom: 14px; }
.vmv-card p { font-size: 14px; color: var(--text-dark); line-height: 1.7; }
.vmv-card .motto-text { font-size: 16px; }

/* ── Why Choose Cards ── */
.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.why-card:hover::before { transform: scaleX(1); }

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: rgba(200,163,77,0.12);
}

.why-card .why-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: var(--black);
  transition: all 0.5s ease;
}

.why-card:hover .why-icon {
  transform: rotateY(180deg) scale(1.08);
  box-shadow: 0 8px 25px rgba(200,163,77,0.3);
}

.why-card h5 {
  font-size: 16px;
  color: var(--green);
  margin-bottom: 10px;
  font-family: var(--font-primary);
  font-weight: 700;
}

.why-card p {
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ── Schools Section ── */
.schools-section {
  background: linear-gradient(135deg, var(--black) 0%, var(--green) 100%);
  position: relative;
}

.schools-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,163,77,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.school-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,163,77,0.1);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.school-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.school-card:hover::before { transform: scaleX(1); }

.school-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  border-color: rgba(200,163,77,0.25);
}

.school-card .school-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 30px;
  color: var(--black);
  box-shadow: 0 8px 25px rgba(200,163,77,0.3);
  transition: all 0.4s ease;
}

.school-card:hover .school-icon { transform: scale(1.08); }

.school-card h4 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.school-card p {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  margin-bottom: 18px;
  line-height: 1.8;
}

.school-card .btn-school {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.school-card .btn-school:hover {
  background: var(--gradient-gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200,163,77,0.35);
}

/* ── Programme Cards ── */
.programme-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
  border-left: 4px solid var(--gold);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.programme-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(200,163,77,0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.programme-card:hover {
  transform: translateX(8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-left-color: var(--gold-light);
}

.programme-card h5 {
  font-size: 14px;
  color: var(--green);
  margin-bottom: 8px;
  font-family: var(--font-primary);
  font-weight: 700;
}

.programme-card .programme-meta {
  font-size: 12px;
  color: var(--text-light);
}

.programme-card .programme-meta i {
  color: var(--gold);
  margin-right: 5px;
}

.programme-card .programme-fee {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.programme-card .programme-fee i {
  font-size: 13px;
  color: var(--gold);
}

.programme-card .programme-fee-contact {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
}

.programme-card .programme-fee-contact i {
  font-size: 11px;
}

.btn-apply-sm {
  display: inline-block;
  padding: 6px 18px;
  background: var(--primary, #e63946);
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: all .2s;
  text-decoration: none;
}
.btn-apply-sm:hover {
  background: var(--primary-dark, #c1121f);
  color: #fff;
}

/* ── Executive Cards ── */
.executive-section {
  position: relative;
}

.executive-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(200,163,77,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.executive-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,163,77,0.08);
  border-radius: 14px;
  padding: 24px 20px;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(4px);
}

.executive-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border-color: rgba(200,163,77,0.2);
}

.executive-card .exec-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--gradient-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--black);
  transition: all 0.4s ease;
}

.executive-card:hover .exec-icon { transform: scale(1.08); }

.executive-card .exec-content h5 {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 4px;
}

.executive-card .exec-content .exec-duration {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.executive-card .exec-content .exec-duration i { color: var(--gold); margin-right: 4px; }

/* ── Stats Section ── */
.stats-section {
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,163,77,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.stats-section .stat-item {
  padding: 24px 16px;
  transition: all 0.3s ease;
}

.stats-section .stat-item:hover { transform: translateY(-4px); }

.stats-section .stat-icon { font-size: 40px; margin-bottom: 14px; }

.stats-section .stat-number {
  font-size: 48px;
}

.stats-section .stat-label {
  font-size: 12px;
  letter-spacing: 2px;
}

/* ── Education Section ── */
.education-section .education-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.education-section .education-content p {
  font-size: 15px;
  line-height: 1.8;
}

.education-section .education-points li {
  padding: 12px 0;
  gap: 14px;
}

.education-section .education-points li i { font-size: 18px; }

/* ── Journey Timeline ── */
.journey-item .journey-content {
  border-radius: 16px;
  padding: 24px;
  border: 1px solid transparent;
  transition: all 0.4s ease;
}

.journey-item .journey-content:hover {
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  transform: translateY(-6px);
  border-color: rgba(200,163,77,0.2);
}

.journey-item .journey-marker {
  width: 50px;
  height: 50px;
  font-size: 20px;
  border: 4px solid #fff;
  box-shadow: 0 8px 25px rgba(200,163,77,0.35);
  transition: all 0.4s ease;
}

.journey-item:hover .journey-marker { transform: scale(1.15); }

.journey-item .journey-content h5 { font-size: 18px; }
.journey-item .journey-content p { font-size: 13px; line-height: 1.7; }

/* ── Facility Cards ── */
.facility-card {
  border-radius: 18px;
  height: 300px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.facility-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,0.12); }

.facility-card .facility-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(200,163,77,0.9);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--black);
  z-index: 2;
  backdrop-filter: blur(8px);
}

.facility-card .facility-overlay {
  padding: 35px 22px 22px;
}

.facility-card .facility-overlay h5 { font-size: 18px; margin-bottom: 6px; }
.facility-card .facility-overlay p { font-size: 13px; }

/* ── Testimonials ── */
.testimonials-section {
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 30%, rgba(200,163,77,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.testimonial-card {
  border-radius: 20px;
  padding: 32px;
  margin: 12px 8px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.testimonial-card .testimonial-stars { font-size: 15px; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-card p { font-size: 14px; line-height: 1.9; }
.testimonial-card .testimonial-author .ta-info strong { font-size: 15px; }

/* ── News Cards ── */
.news-card {
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.news-card .news-image { height: 210px; }

.news-card .news-body { padding: 22px; }

.news-card .news-body .news-date { font-size: 12px; margin-bottom: 8px; }

.news-card .news-body h5 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.5;
  font-family: var(--font-primary);
  font-weight: 700;
}

.news-card .news-body p { font-size: 13px; line-height: 1.7; }

.news-card .news-body .btn-news {
  font-size: 13px;
  font-weight: 700;
}

/* ── Event Cards ── */
.event-card {
  border-radius: 18px;
  padding: 24px;
  gap: 20px;
  transition: all 0.4s ease;
}

.event-card:hover {
  box-shadow: 0 15px 45px rgba(0,0,0,0.08);
  transform: translateX(8px);
  border-color: rgba(200,163,77,0.2);
}

.event-card .event-date {
  min-width: 80px;
  border-radius: 14px;
  padding: 16px 12px;
}

.event-card .event-date .day { font-size: 30px; }
.event-card .event-date .month { font-size: 11px; }

.event-card .event-details h5 { font-size: 16px; margin-bottom: 6px; }
.event-card .event-details p { font-size: 13px; line-height: 1.6; }

.event-card .btn-event {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.event-card .btn-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,163,77,0.3);
}

/* ── Gallery Preview ── */
.gallery-preview-item {
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.gallery-preview-item:hover { transform: scale(1.05); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

.gallery-preview-item i { font-size: 44px; color: rgba(200,163,77,0.2); transition: all 0.4s ease; }
.gallery-preview-item:hover i { transform: scale(1.15); color: rgba(200,163,77,0.35); }

.gallery-preview-item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

/* ── Partners ── */
.partner-item { height: 90px; }

.partner-item .partner-placeholder {
  font-size: 13px;
  letter-spacing: 2px;
  border-radius: 14px;
  border: 2px solid rgba(200,163,77,0.1);
}

.partner-item:hover .partner-placeholder {
  border-color: var(--gold);
  background: rgba(200,163,77,0.08);
  color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(200,163,77,0.15);
}

/* ── CTA Section ── */
.cta-section {
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,163,77,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 { font-size: 42px; }

.cta-section p { font-size: 17px; max-width: 650px; }

.cta-section .btn-cta {
  padding: 16px 42px;
  font-size: 16px;
  border-radius: 50px;
}

.cta-section .btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200,163,77,0.4);
}

/* ── Newsletter ── */
.newsletter-section {
  position: relative;
}

.newsletter-wrapper h3 { color: #fff; font-size: 28px; margin-bottom: 14px; }
.newsletter-wrapper p { color: rgba(255,255,255,0.7); font-size: 15px; max-width: 550px; margin: 0 auto 24px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  justify-content: center;
}

.newsletter-form .form-control {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 14px;
}

.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,163,77,0.1);
  background: rgba(255,255,255,0.08);
}

.newsletter-form .btn-subscribe {
  background: var(--gradient-gold);
  color: var(--black);
  border: none;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form .btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,163,77,0.35);
}

/* ── Footer Enhancements ── */
.main-footer { padding: 70px 0 0; }
.main-footer p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); }

.main-footer .footer-social { display: flex; gap: 10px; }
.main-footer .footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.main-footer .footer-social a:hover {
  background: var(--gradient-gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200,163,77,0.3);
}

.footer-newsletter p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.footer-newsletter .input-group { display: flex; gap: 8px; max-width: 380px; }
.footer-newsletter .input-group input {
  flex: 1;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 13px;
  outline: none;
}
.footer-newsletter .input-group input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter .input-group input:focus { border-color: var(--gold); }
.footer-newsletter .input-group button {
  padding: 11px 18px;
  border-radius: 10px;
  border: none;
  background: var(--gradient-gold);
  color: var(--black);
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-newsletter .input-group button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,163,77,0.3); }

.main-footer h5 {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 18px;
  font-family: var(--font-primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.main-footer .footer-links li { margin-bottom: 10px; }
.main-footer .footer-links li a {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-footer .footer-links li a i { font-size: 10px; color: var(--gold); transition: all 0.3s ease; }
.main-footer .footer-links li a:hover { color: var(--gold); transform: translateX(4px); }
.main-footer .footer-links li a:hover i { transform: translateX(2px); }

.main-footer .footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.6;
}
.main-footer .footer-contact li i { color: var(--gold); font-size: 15px; margin-top: 3px; width: 18px; }

.main-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 50px;
  padding: 24px 0;
  text-align: center;
}

.main-footer .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.main-footer .footer-bottom p a { color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.3s ease; }
.main-footer .footer-bottom p a:hover { color: var(--gold); }

/* ── Scroll to Top ── */
.scroll-top {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gradient-gold);
  color: var(--black);
  border: none;
  font-size: 18px;
  cursor: pointer;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(200,163,77,0.3);
}

.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(200,163,77,0.4); }

/* ── Cookie Consent ── */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  z-index: 9998;
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid rgba(200,163,77,0.08);
}

.cookie-consent.show { transform: translateY(0); }
.cookie-consent .cookie-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-consent .cookie-content p { color: rgba(255,255,255,0.7); font-size: 13px; margin: 0; flex: 1; }
.cookie-consent .cookie-content p a { color: var(--gold); text-decoration: none; }
.cookie-consent .cookie-content p a:hover { text-decoration: underline; }
.cookie-consent .cookie-buttons { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-consent .cookie-buttons button {
  padding: 8px 20px;
  border-radius: 10px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-consent .cookie-buttons .btn-accept { background: var(--gradient-gold); color: var(--black); }
.cookie-consent .cookie-buttons .btn-accept:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,163,77,0.3); }
.cookie-consent .cookie-buttons .btn-decline { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); }
.cookie-consent .cookie-buttons .btn-decline:hover { background: rgba(255,255,255,0.1); }

/* ── Responsive Homepage ── */
@media (max-width: 1199px) {
  .hero-slide h1 { font-size: 42px; }
  .hero-slide-icon { width: 220px; height: 220px; }
  .hero-slide-icon i { font-size: 80px; }
  .section-title h2 { font-size: 32px; }
  .about-section .about-text h3 { font-size: 26px; }
  .cta-section h2 { font-size: 34px; }
}

@media (max-width: 991px) {
  .hero-slider, .hero-slides-wrapper, .hero-slide { min-height: 85vh; }
  .hero-slide h1 { font-size: 34px; }
  .hero-slide p { font-size: 15px; max-width: 100%; }
  .hero-slide .hero-slide-content { padding: 100px 0 60px; }
  .hero-slide .btn { padding: 13px 28px; font-size: 13px; }
  .section-title h2 { font-size: 28px; }
  .about-section .about-text h3 { font-size: 24px; }
  .about-section .about-features { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 30px; }
  .cta-section p { font-size: 15px; }
  .stats-section .stat-number { font-size: 36px; }
  .facility-card { height: 250px; }
  .gallery-preview-item { height: 180px; }
  .main-footer { padding: 50px 0 0; }
}

@media (max-width: 768px) {
  .hero-slider, .hero-slides-wrapper, .hero-slide { min-height: 80vh; }
  .hero-slide h1 { font-size: 28px; }
  .hero-slide p { font-size: 14px; }
  .hero-slide .hero-slide-content { padding: 90px 0 50px; }
  .hero-slide .hero-badge { font-size: 10px; padding: 8px 16px; }
  .hero-slide .btn-group-custom { gap: 10px; }
  .hero-slide .btn-group-custom .btn { width: 100%; justify-content: center; }
  .hero-slide .btn { padding: 12px 24px; font-size: 13px; }
  .section-padding { padding: 60px 0; }
  .section-title { margin-bottom: 35px; }
  .section-title h2 { font-size: 24px; }
  .section-title .subtitle { font-size: 10px; letter-spacing: 3px; }
  .about-section .about-text h3 { font-size: 22px; }
  .vmv-card { padding: 28px 22px; }
  .why-card { padding: 24px 18px; }
  .school-card { padding: 28px 20px; }
  .cta-section h2 { font-size: 26px; }
  .cta-section .btn-cta { padding: 14px 32px; font-size: 14px; }
  .newsletter-form { flex-direction: column; max-width: 100%; }
  .newsletter-form .btn-subscribe { width: 100%; }
  .stats-section .stat-item { padding: 16px 10px; }
  .stats-section .stat-number { font-size: 30px; }
  .stats-section .stat-icon { font-size: 32px; }
  .footer-newsletter .input-group { max-width: 100%; }
  .scroll-top { width: 40px; height: 40px; font-size: 15px; bottom: 20px; right: 20px; }
}

@media (max-width: 576px) {
  .hero-slider, .hero-slides-wrapper, .hero-slide { min-height: 75vh; }
  .hero-slide h1 { font-size: 24px; }
  .hero-slide p { font-size: 13px; }
  .hero-slide .hero-slide-content { padding: 80px 0 40px; }
  .hero-slide .btn { padding: 12px 22px; font-size: 12px; }
  .hero-slide .btn-group-custom { gap: 10px; }
  .section-title h2 { font-size: 22px; }
  .about-section .about-text h3 { font-size: 20px; }
  .about-section .about-image div[style] { height: 280px !important; }
  .about-section .about-image .experience-badge { padding: 12px 18px; }
  .about-section .about-image .experience-badge span { font-size: 22px; }
  .facility-card { height: 220px; }
  .event-card { flex-direction: column; text-align: center; }
  .event-card .event-date { margin: 0 auto; }
  .gallery-preview-item { height: 160px; }
  .journey-item .journey-content { width: 100%; }
  .cookie-consent .cookie-content { flex-direction: column; text-align: center; }
  .cookie-consent .cookie-buttons { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .hero-slide h1 { font-size: 20px; }
  .hero-slide p { font-size: 12px; }
  .hero-slide .hero-slide-content { padding: 70px 0 30px; }
  .hero-slide .btn { padding: 11px 20px; font-size: 11px; }
  .hero-slide .btn-group-custom { gap: 8px; }
  .section-title h2 { font-size: 18px; }
  .facility-card { height: 200px; }
  .gallery-preview-item { height: 140px; }
  .stats-section .stat-number { font-size: 26px; }
  .stats-section .stat-icon { font-size: 28px; }
  .stats-section .stat-item { padding: 12px 8px; }
  .about-section .about-text h3 { font-size: 18px; }
  .about-section .about-features { grid-template-columns: 1fr; gap: 8px; }
}

/* ── Programmes Page ── */
.programme-category { margin-bottom: 40px; }
.programme-category:last-child { margin-bottom: 0; }

/* ── Programme Detail ── */
.programme-detail-section { padding-top: 20px; }
.detail-header { margin-bottom: 0; }
.detail-header h1 { font-size: 34px; color: var(--black); margin-bottom: 16px; }
.detail-description { font-size: 15px; color: var(--text-dark); line-height: 1.8; }
.detail-meta { margin-top: 16px; font-size: 14px; color: var(--text-dark); }
.detail-meta i { color: var(--gold); margin-right: 8px; }
.detail-badge-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.detail-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 50px; font-size: 12px; font-weight: 600;
}
.detail-badge-school {
  background: rgba(200,163,77,0.12); color: var(--gold); border: 1px solid rgba(200,163,77,0.2);
}
.detail-badge-type {
  background: rgba(11,61,46,0.1); color: var(--green); border: 1px solid rgba(11,61,46,0.2);
}
.detail-section { margin-top: 40px; }
.detail-section h3 { font-size: 22px; color: var(--green); margin-bottom: 16px; }
.detail-section h3 i { color: var(--gold); margin-right: 10px; }
.detail-list { list-style: none; padding: 0; }
.detail-list li {
  padding: 8px 0; display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-dark); line-height: 1.6;
}
.detail-list li i { margin-top: 3px; flex-shrink: 0; }
.detail-list .icon-green { color: var(--green); }
.detail-list .icon-gold { color: var(--gold); }
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.detail-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 16px; border-radius: 50px; font-size: 13px;
}
.detail-tag-gold {
  background: rgba(200,163,77,0.08); color: var(--text-dark); border: 1px solid rgba(200,163,77,0.15);
}
.detail-tag-green {
  background: rgba(11,61,46,0.06); color: var(--text-dark); border: 1px solid rgba(11,61,46,0.12);
}
.detail-tag i { color: var(--gold); }
.detail-tag-green i { color: var(--green); }
.detail-cta {
  text-align: center; margin-top: 48px;
}
.detail-cta .btn-apply {
  display: inline-block; padding: 14px 40px; font-size: 15px; font-weight: 700;
  border-radius: 50px; background: var(--gradient-gold); color: var(--black);
  text-decoration: none; transition: all 0.3s ease;
}
.detail-cta .btn-apply:hover {
  transform: translateY(-3px); box-shadow: 0 12px 35px rgba(200,163,77,0.4);
}
.sidebar-card h5 { margin-bottom: 16px; }
.sidebar-info { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.sidebar-info li { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.sidebar-info li:last-child { border-bottom: none; }
.sidebar-info li strong { color: var(--green); display: block; margin-bottom: 2px; }
.sidebar-info .sidebar-fee { color: var(--gold); font-weight: 700; font-size: 18px; }
.sidebar-info .sidebar-fee-muted { color: var(--text-light); }
.sidebar-actions { display: flex; flex-direction: column; gap: 8px; }
.sidebar-action {
  display: block; width: 100%; padding: 12px; border-radius: 12px;
  text-decoration: none; font-weight: 600; text-align: center; transition: all 0.3s ease;
}
.sidebar-action-primary { background: var(--gradient-gold); color: var(--black); }
.sidebar-action-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,163,77,0.3); }
.sidebar-action-outline { border: 1.5px solid var(--gold); color: var(--gold); }
.sidebar-action-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.sidebar-action-light { border: 1.5px solid rgba(0,0,0,0.1); color: var(--text-dark); }
.sidebar-action-light:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.sidebar-related { list-style: none; padding: 0; }
.sidebar-related li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.sidebar-related li:last-child { border-bottom: none; }
.sidebar-related a {
  color: var(--text-dark); text-decoration: none; font-size: 14px;
  display: flex; align-items: center; gap: 8px; transition: color 0.3s ease;
}
.sidebar-related a:hover { color: var(--gold); }
.sidebar-related a i { color: var(--gold); font-size: 10px; }

@media (max-width: 768px) {
  .detail-header h1 { font-size: 26px; }
  .detail-section h3 { font-size: 20px; }
  .detail-cta .btn-apply { padding: 12px 32px; font-size: 14px; }
}

@media (max-width: 576px) {
  .detail-header h1 { font-size: 22px; }
  .detail-description { font-size: 14px; }
  .detail-section h3 { font-size: 18px; }
  .detail-list li { font-size: 13px; padding: 6px 0; }
  .detail-tag { font-size: 12px; padding: 5px 12px; }
  .detail-cta .btn-apply { padding: 11px 28px; font-size: 13px; }
  .sidebar-card { padding: 20px !important; }
  .sidebar-info .sidebar-fee { font-size: 16px; }
}

/* ── Event Detail ── */
.event-detail-header { margin-bottom: 0; }
.event-detail-header h1 { font-size: 28px; margin-bottom: 8px; }

/* ── News Detail ── */
.news-detail-article { margin-bottom: 0; }

/* ── Footer Brand ── */
.main-footer .footer-brand { margin-bottom: 16px; }

/* ── Owl Carousel Override for Testimonials ── */
.testimonial-carousel .owl-dots { margin-top: 20px; }
.testimonial-carousel .owl-dots .owl-dot span {
  width: 10px; height: 10px; margin: 0 5px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.testimonial-carousel .owl-dots .owl-dot.active span,
.testimonial-carousel .owl-dots .owl-dot:hover span {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(200,163,77,0.5);
  transform: scale(1.2);
}

/* ── Responsive: Admissions + Contact ── */
@media (max-width: 768px) {
  .admissions-card .card-body { padding: 16px; }
  .process-step { padding: 14px 14px; gap: 12px; }
  .process-step .step-number { width: 32px; height: 32px; min-width: 32px; font-size: 12px; }
  .process-step .step-content p { font-size: 12px; }
  .contact-section-title { font-size: 26px; }
}
@media (max-width: 576px) {
  .process-step { flex-direction: column; align-items: flex-start; gap: 8px; }
  .contact-section-title { font-size: 22px; }
  .contact-form-wrapper { padding: 20px 16px !important; }
  .contact-info-card { padding: 18px 16px !important; }
}

/* ── Responsive: Auth Pages ── */
@media (max-width: 768px) {
  .auth-card { margin: 10px; }
}
@media (max-width: 400px) {
  .auth-card .auth-title { font-size: 22px; }
}

/* ── Responsive: Programme Page ── */
@media (max-width: 576px) {
  .programme-filter { gap: 6px; }
  .programme-filter .btn-filter { padding: 6px 14px; font-size: 11px; }
  .programme-category-title { font-size: 18px; }
}

/* ── Programmes Section (homepage) CTA btn ── */
.programmes-section .btn-primary-custom {
  padding: 13px 34px;
  font-size: 14px;
}
.programmes-section .btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200,163,77,0.4);
}

/* ── Admissions Page ── */
.admissions-card { margin-bottom: 24px; }
.admissions-card .card-header {
  background: var(--gradient-green); color: #fff; padding: 16px 20px;
  font-weight: 600; border-radius: 14px 14px 0 0; border: none;
}
.admissions-card .card-body { padding: 24px; }
.admissions-card .programme-card { padding: 15px; }
.admissions-card .programme-card h5 { font-size: 14px; }
.process-step {
  display: flex; gap: 16px; padding: 16px 18px;
  background: var(--bg-light); border-radius: 12px;
  border-left: 3px solid var(--gold); margin-bottom: 12px;
  align-items: flex-start; transition: all 0.3s ease;
}
.process-step:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.process-step .step-number {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--gradient-gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--black);
}
.process-step .step-content h6 { margin-bottom: 4px; color: var(--green); }
.process-step .step-content p { font-size: 13px; color: var(--text-dark); margin: 0; }
.requirements-list { list-style: none; padding: 0; }
.requirements-list li {
  padding: 10px 0; display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.04); font-size: 14px; color: var(--text-dark);
}
.requirements-list li:last-child { border-bottom: none; }
.requirements-list li i { color: var(--green); margin-top: 3px; }

/* ── Contact Page ── */
.contact-section-title { font-size: 32px; }
.contact-section-title + .title-line { margin-left: 0; }
.contact-form-wrapper h4 {
  color: var(--green); margin-bottom: 20px; font-family: var(--font-heading);
}

/* ── Facility Detail Page ── */
.facility-detail-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
}
.facility-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}
.facility-detail-header {
  margin-bottom: 30px;
}
.facility-description p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 14px;
}
.detail-section h3 {
  font-size: 22px;
  color: var(--green);
  margin-bottom: 16px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-light);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.5;
  transition: all 0.3s ease;
}
.feature-item:hover {
  background: rgba(200,163,77,0.08);
  transform: translateX(4px);
}
.facility-detail-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.facility-detail-info li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.facility-detail-info li:last-child {
  border-bottom: none;
}
.facility-detail-info .info-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.facility-detail-info .info-value {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}
@media (max-width: 991px) {
  .facility-detail-image,
  .facility-detail-image img {
    height: 300px;
  }
  .facility-detail-header h1 {
    font-size: 24px !important;
  }
}
@media (max-width: 576px) {
  .facility-detail-image,
  .facility-detail-image img {
    height: 220px;
  }
  .facility-detail-header h1 {
    font-size: 20px !important;
  }
  .detail-section h3 {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .facility-detail-image,
  .facility-detail-image img {
    height: 180px;
  }
}
