/* ============================================
   BOARDROOM AND MANAGEMENT ACADEMY LONDON
   Global Stylesheet
   ============================================ */

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

:root {
  --primary: #0f1b31;
  --primary-light: #1a2d4f;
  --secondary: #bfa05a;
  --secondary-light: #d4b76a;
  --accent: #c9a227;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #777777;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border: #e0e0e0;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 27, 49, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(191, 160, 90, 0.2);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 45px; height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--bg-white);
  line-height: 1.3;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--bg-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 28px; height: 2px;
  background: var(--bg-white);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,49,0.85) 0%, rgba(15,27,49,0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1.2;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-title .gold { color: var(--secondary); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 35px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid var(--secondary);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards 1.2s;
}

.hero-btn:hover {
  background: transparent;
  color: var(--secondary);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.8s;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-indicator .mouse {
  width: 22px; height: 35px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 6px;
  background: var(--secondary);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

.section {
  padding: 100px 0;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px; height: 1px;
  background: var(--secondary);
}

.section-label::before { right: calc(100% + 15px); }
.section-label::after { left: calc(100% + 15px); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.section-title .gold { color: var(--secondary); }

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   ABOUT PAGE — PRESIDENT WELCOME
   ============================================ */

.about-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: var(--primary);
  text-align: center;
}

.about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bg-white);
  font-weight: 700;
}

.about-hero p {
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  font-size: 1.05rem;
}

.president-welcome {
  padding: 100px 0;
  background: var(--bg-white);
}

.president-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.president-img-wrap {
  position: relative;
}

.president-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.president-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition);
}

.president-img:hover img {
  transform: scale(1.03);
}

.president-icon {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 120px;
  height: 120px;
  background: var(--bg-white);
  border-radius: 50%;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.president-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.president-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.president-content .role {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.president-content p {
  color: var(--text-medium);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   MISSION SECTION
   ============================================ */

.mission-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.mission-content p {
  color: var(--text-medium);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}

.mission-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.mission-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Gallery grid */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ============================================
   VISION SECTION
   ============================================ */

.vision-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.vision-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vision-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vision-img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 5px solid var(--bg-white);
}

.vision-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.vision-content p {
  color: var(--text-medium);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   CTA BUTTON
   ============================================ */

.cta-wrap {
  text-align: center;
  padding: 60px 0;
}

.btn-primary {
  display: inline-block;
  padding: 16px 45px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid var(--secondary);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--secondary);
}

.btn-outline {
  display: inline-block;
  padding: 14px 35px;
  background: transparent;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid var(--secondary);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--primary);
}

.btn-dark {
  display: inline-block;
  padding: 14px 35px;
  background: var(--primary);
  color: var(--bg-white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
}

.btn-dark:hover {
  background: transparent;
  color: var(--primary);
}

/* ============================================
   PROGRAMMES PAGE
   ============================================ */

.programmes-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: var(--primary);
  text-align: center;
}

.programmes-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bg-white);
  font-weight: 700;
}

.programmes-hero p {
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  font-size: 1.05rem;
}

.programmes-section {
  padding: 80px 0;
}

.programme-card {
  background: var(--bg-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 50px;
  border: 1px solid var(--border);
}

.programme-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.programme-header {
  background: var(--primary);
  padding: 30px 40px;
  position: relative;
}

.programme-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--secondary);
}

.programme-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--bg-white);
  font-weight: 700;
  margin-bottom: 8px;
}

.programme-header .programme-number {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  font-family: var(--font-heading);
  line-height: 1;
}

.programme-body {
  padding: 40px;
}

.programme-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.meta-item {
  background: var(--bg-light);
  padding: 18px;
  border-radius: 4px;
  border-left: 3px solid var(--secondary);
}

.meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}

.meta-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

.programme-details h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.programme-details p {
  color: var(--text-medium);
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.programme-details ul {
  list-style: none;
  margin-bottom: 25px;
}

.programme-details ul li {
  padding: 6px 0 6px 25px;
  position: relative;
  color: var(--text-medium);
  font-size: 0.92rem;
}

.programme-details ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.programme-price {
  background: var(--bg-light);
  padding: 20px 25px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 25px 0;
  flex-wrap: wrap;
  gap: 15px;
}

.price-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.price-value span {
  font-size: 0.85rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 400;
}

.programme-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 15px;
}

.benefits-box {
  background: var(--bg-light);
  padding: 25px 30px;
  border-radius: 4px;
  margin-top: 20px;
}

.benefits-box h5 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 15px;
}

.benefits-box ul {
  list-style: none;
}

.benefits-box ul li {
  padding: 5px 0 5px 22px;
  position: relative;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.benefits-box ul li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 0.75rem;
}

/* ============================================
   ENROLLMENT FORM
   ============================================ */

.enroll-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: var(--primary);
  text-align: center;
}

.enroll-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bg-white);
  font-weight: 700;
}

.enroll-hero p {
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  font-size: 1.05rem;
}

.enroll-section {
  padding: 80px 0;
  background: var(--bg-light);
  min-height: 60vh;
}

.form-card {
  background: var(--bg-white);
  max-width: 600px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 8px;
  text-align: center;
}

.form-card .subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 35px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group label .optional {
  color: var(--text-light);
  font-weight: 400;
  text-transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(191, 160, 90, 0.15);
}

.form-group input::placeholder {
  color: #aaa;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--secondary);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.form-submit:hover {
  background: transparent;
  color: var(--secondary);
}

.success-message {
  display: none;
  text-align: center;
  padding: 40px;
}

.success-message.active {
  display: block;
}

.success-message .icon {
  width: 70px;
  height: 70px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
}

.success-message h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.success-message p {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: var(--primary);
  text-align: center;
}

.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bg-white);
  font-weight: 700;
}

.contact-hero p {
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  font-size: 1.05rem;
}

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-medium);
  margin-bottom: 25px;
  line-height: 1.8;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item .icon {
  width: 45px;
  height: 45px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--secondary);
}

.info-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}

.info-item p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin: 0;
}

.contact-form-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 25px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  color: var(--bg-white);
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--bg-white);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes scrollWheel {
  0% { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .president-row,
  .mission-row,
  .vision-row,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .programme-meta {
    grid-template-columns: 1fr;
  }
  .programme-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .programme-footer .btn-primary,
  .programme-footer .btn-dark {
    text-align: center;
  }
  .president-icon {
    width: 90px;
    height: 90px;
    right: -10px;
    bottom: -15px;
  }
  .vision-img {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0; right: 0;
    background: var(--primary);
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 20px;
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(191,160,90,0.2);
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 2rem;
  }
  .section {
    padding: 60px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .form-card {
    padding: 30px 20px;
  }
  .programme-body {
    padding: 25px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-btn {
    padding: 12px 28px;
    font-size: 0.75rem;
  }
}

/* ============================================
   HOME — PICTURES FROM OUR LAST PROGRAMME
   ============================================ */

.last-prog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
  margin-top: 50px;
}

.last-prog-item {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.last-prog-item:nth-child(3),
.last-prog-item:nth-child(6) {
  grid-row: span 2;
}

.last-prog-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.last-prog-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: var(--transition);
}

.last-prog-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

@media (max-width: 900px) {
  .last-prog-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .last-prog-item:nth-child(3),
  .last-prog-item:nth-child(6) {
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .last-prog-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
}

/* ============================================
   FACULTY PAGE
   ============================================ */

.faculty-intro {
  max-width: 720px;
  margin: 0 auto 20px;
  text-align: center;
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px 30px;
  margin-top: 60px;
}

.faculty-card {
  background: var(--bg-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.faculty-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--primary);
}

.faculty-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.faculty-card:hover .faculty-photo img {
  transform: scale(1.05);
}

.faculty-info {
  padding: 26px 26px 30px;
  border-top: 3px solid var(--secondary);
}

.faculty-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.faculty-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  opacity: 0.75;
}

.faculty-note {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-medium);
}

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

@media (max-width: 560px) {
  .faculty-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PROGRAMME YEAR TOGGLE
   ============================================ */

.year-toggle {
  display: inline-flex;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  margin: 0 auto 10px;
  max-width: 100%;
}

.year-toggle-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-medium);
  background: transparent;
  border: none;
  padding: 12px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.year-toggle-btn span {
  display: inline-block;
  margin-left: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
}

.year-toggle-btn.active {
  background: var(--primary);
  color: var(--bg-white);
  box-shadow: var(--shadow);
}

.year-toggle-btn.active span {
  color: var(--secondary-light);
}

.year-toggle-btn:not(.active):hover {
  color: var(--primary);
}

.year-panel {
  display: none;
}

.year-panel.active {
  display: block;
}

@media (max-width: 560px) {
  .year-toggle {
    display: flex;
    width: 100%;
  }
  .year-toggle-btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 0.72rem;
    text-align: center;
  }
  .year-toggle-btn span {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }
}

/* ============================================
   HOME — HIGHLIGHTS & FLAGSHIP GRIDS (responsive)
   ============================================ */

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.flagship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

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

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

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}
