/* ============================================
   Project 0078 - Academic Institution Theme
   HHpoker Scholarly Landing Page
   Color Palette:
   - Navy: #0f1d36, #162544, #1a3050, #1f3a60
   - Copper: #c77d3e, #e8924f, #d4894a, #b56e2f
   - Cream/Paper: #fdfaf3, #f8f3e8
   - Text: #e8e2d5 (warm white), #b8ae9e (muted)
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,500;0,8..60,600;0,8..60,700;1,8..60,400;1,8..60,500&family=Noto+Sans+SC:wght@300;400;500;600;700;900&display=swap');

/* --- CSS Variables --- */
:root {
  --navy-900: #0a1526;
  --navy-800: #0f1d36;
  --navy-700: #162544;
  --navy-600: #1a3050;
  --navy-500: #1f3a60;
  --navy-400: #254a7a;
  --copper-600: #8b5522;
  --copper-500: #b56e2f;
  --copper-400: #c77d3e;
  --copper-300: #d4894a;
  --copper-200: #e8924f;
  --copper-100: #f0a865;
  --cream: #fdfaf3;
  --cream-dark: #f8f3e8;
  --paper: #ede4d3;
  --text-warm: #e8e2d5;
  --text-muted: #b8ae9e;
  --text-navy: #8a9bb5;
  --gold-light: #d4a853;
}

/* --- Base & Typography --- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', 'Source Serif 4', 'Georgia', serif;
  background-color: var(--navy-800);
  color: var(--text-warm);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Serif heading accent */
.font-serif-accent {
  font-family: 'Playfair Display', 'Source Serif 4', 'Georgia', 'Times New Roman', serif;
}

.font-body-cn {
  font-family: 'Noto Sans SC', sans-serif;
}

/* --- Ruled Line Pattern --- */
.ruled-pattern {
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(199, 125, 62, 0.06) 28px,
      rgba(199, 125, 62, 0.06) 29px
    );
}

/* Subtle paper texture overlay */
.paper-texture {
  position: relative;
}
.paper-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.008) 2px,
      rgba(255, 255, 255, 0.008) 4px
    );
  pointer-events: none;
  z-index: 1;
}

/* --- Academic Crest / Badge (CSS Only) --- */
.academic-crest {
  width: 80px;
  height: 80px;
  border: 2px solid var(--copper-400);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.academic-crest::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(199, 125, 62, 0.5);
  border-radius: 50%;
}
.academic-crest::after {
  content: '\f19d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 24px;
  color: var(--copper-400);
}
.academic-crest-small {
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--copper-400);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.academic-crest-small::before {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(199, 125, 62, 0.4);
  border-radius: 50%;
}
.academic-crest-small::after {
  content: '\f19d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 16px;
  color: var(--copper-400);
}

/* --- Decorative Line --- */
.decorative-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper-400), transparent);
  width: 120px;
  margin: 0 auto;
}
.decorative-line-left {
  height: 1px;
  background: linear-gradient(90deg, var(--copper-400), transparent);
  width: 80px;
}

/* --- Section Title --- */
.section-title-academic {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-warm);
  text-align: center;
  position: relative;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.section-subtitle-academic {
  font-family: 'Source Serif 4', 'Georgia', serif;
  color: var(--copper-300);
  text-align: center;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

/* --- Copper Accent Bar --- */
.copper-accent-bar {
  width: 60px;
  height: 3px;
  background-color: var(--copper-400);
  margin: 0 auto;
  border-radius: 2px;
}

/* --- Numbered Module Card --- */
.module-card {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(199, 125, 62, 0.15);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--copper-400);
  transition: height 0.4s ease;
}
.module-card:hover::before {
  height: 100%;
}
.module-card:hover {
  border-color: rgba(199, 125, 62, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(199, 125, 62, 0.1);
}
.module-card .module-number {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(199, 125, 62, 0.12);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}
.module-card .module-icon {
  width: 52px;
  height: 52px;
  background: rgba(199, 125, 62, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
  color: var(--copper-300);
  border: 1px solid rgba(199, 125, 62, 0.2);
  position: relative;
  z-index: 1;
}
.module-card .module-title {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-warm);
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}
.module-card .module-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* --- Copper Underline Link --- */
.copper-link {
  color: var(--copper-300);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.copper-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper-400);
  transition: width 0.3s;
}
.copper-link:hover {
  color: var(--copper-200);
}
.copper-link:hover::after {
  width: 100%;
}

/* --- Syllabus FAQ Accordion --- */
.syllabus-item {
  border-bottom: 1px solid rgba(199, 125, 62, 0.15);
  background: transparent;
  transition: background 0.3s;
}
.syllabus-item:hover {
  background: rgba(199, 125, 62, 0.03);
}
.syllabus-question {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s;
  position: relative;
}
.syllabus-bullet {
  width: 8px;
  height: 8px;
  background: var(--copper-400);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  transition: all 0.3s;
  box-shadow: 0 0 8px rgba(199, 125, 62, 0.4);
}
.syllabus-item.active .syllabus-bullet {
  background: var(--copper-200);
  box-shadow: 0 0 14px rgba(232, 146, 79, 0.6);
  transform: scale(1.3);
}
.syllabus-q-text {
  flex: 1;
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-warm);
  letter-spacing: 0.3px;
}
.syllabus-toggle {
  color: var(--copper-400);
  font-size: 0.85rem;
  transition: transform 0.35s ease;
  margin-top: 4px;
  flex-shrink: 0;
}
.syllabus-item.active .syllabus-toggle {
  transform: rotate(180deg);
}
.syllabus-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
}
.syllabus-item.active .syllabus-answer {
  max-height: 300px;
}
.syllabus-a-inner {
  padding: 0 1.5rem 1.5rem 2.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  position: relative;
}
.syllabus-a-inner::before {
  content: '';
  position: absolute;
  left: 1.45rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(199, 125, 62, 0.4), transparent);
}

/* --- Stats Achievement Card --- */
.achievement-stat {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.achievement-stat .stat-number {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--copper-400);
  line-height: 1;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.achievement-stat .stat-number::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: rgba(199, 125, 62, 0.5);
  border-radius: 1px;
}
.achievement-stat .stat-label {
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 0.95rem;
  color: var(--text-navy);
  letter-spacing: 0.5px;
}
.achievement-stat .stat-latin {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(184, 174, 158, 0.5);
  margin-top: 0.3rem;
}

/* --- Testimonial Alumni Card --- */
.alumni-card {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(199, 125, 62, 0.12);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: all 0.35s ease;
}
.alumni-card::before {
  content: '\201C';
  font-family: 'Playfair Display', 'Georgia', serif;
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  font-size: 4rem;
  color: rgba(199, 125, 62, 0.15);
  line-height: 1;
  pointer-events: none;
}
.alumni-card:hover {
  border-color: rgba(199, 125, 62, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}
.alumni-card .alumni-stars {
  color: var(--copper-300);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.alumni-card .alumni-text {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
  margin: 1rem 0 1.25rem;
  font-style: italic;
}
.alumni-card .alumni-name {
  font-family: 'Source Serif 4', 'Georgia', serif;
  color: var(--text-warm);
  font-weight: 600;
  font-size: 0.95rem;
}
.alumni-card .alumni-role {
  color: var(--copper-400);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* --- CTA Section --- */
.cta-academic {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-800) 40%, #1a2a40 100%);
  position: relative;
  overflow: hidden;
}
.cta-academic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 38px,
      rgba(199, 125, 62, 0.04) 38px,
      rgba(199, 125, 62, 0.04) 39px
    );
  pointer-events: none;
}

/* --- Academic Button Styles --- */
.btn-copper {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--copper-400), var(--copper-500));
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-copper:hover {
  background: linear-gradient(135deg, var(--copper-300), var(--copper-400));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(199, 125, 62, 0.35);
}
.btn-copper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s;
}
.btn-copper:hover::after {
  left: 100%;
}

.btn-navy-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--text-warm);
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  border: 1.5px solid rgba(232, 226, 213, 0.4);
  cursor: pointer;
  text-decoration: none;
}
.btn-navy-outline:hover {
  border-color: var(--copper-400);
  color: var(--copper-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* --- Navbar --- */
.nav-academic {
  background: rgba(15, 29, 54, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(199, 125, 62, 0.15);
  transition: all 0.3s;
  z-index: 1000;
}
.nav-academic.scrolled {
  background: rgba(10, 21, 38, 0.98);
  border-bottom-color: rgba(199, 125, 62, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.nav-link-academic {
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
  padding: 0.35rem 0;
  text-decoration: none;
  font-family: 'Source Serif 4', 'Georgia', serif;
}
.nav-link-academic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper-400);
  transition: width 0.3s;
}
.nav-link-academic:hover,
.nav-link-academic.active {
  color: var(--copper-300);
}
.nav-link-academic:hover::after,
.nav-link-academic.active::after {
  width: 100%;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-warm);
  margin: 5px 0;
  border-radius: 1px;
  transition: all 0.35s ease;
}
.hamburger-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(15, 29, 54, 0.98);
  border-bottom: 1px solid rgba(199, 125, 62, 0.2);
}
.mobile-menu.open {
  max-height: 400px;
}
.mobile-menu a {
  display: block;
  padding: 0.9rem 1.5rem;
  color: var(--text-muted);
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(199, 125, 62, 0.08);
  transition: all 0.3s;
  text-decoration: none;
}
.mobile-menu a:hover {
  color: var(--copper-300);
  background: rgba(199, 125, 62, 0.05);
  padding-left: 2rem;
}

/* --- Footer --- */
.footer-academic {
  background: var(--navy-900);
  border-top: 3px solid var(--copper-500);
}
.footer-academic .footer-heading {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-warm);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-academic .footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--copper-400);
}
.footer-academic .footer-link {
  color: var(--text-navy);
  font-size: 0.88rem;
  transition: all 0.3s;
  display: block;
  padding: 0.25rem 0;
  text-decoration: none;
}
.footer-academic .footer-link:hover {
  color: var(--copper-300);
  padding-left: 6px;
}
.footer-copyright {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(199, 125, 62, 0.12);
  padding: 1rem 0;
}
.footer-copyright p {
  color: var(--text-navy);
  font-size: 0.82rem;
  text-align: center;
}
.footer-copper-icon {
  color: var(--copper-400);
  font-size: 0.9rem;
  margin-right: 0.5rem;
  width: 16px;
  text-align: center;
}

/* --- About Page - Timeline --- */
.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2.5rem;
  border-left: 2px solid rgba(199, 125, 62, 0.2);
}
.timeline-item:last-child {
  border-left-color: transparent;
}
.timeline-dot {
  position: absolute;
  left: -8px;
  top: 0;
  width: 14px;
  height: 14px;
  background: var(--copper-400);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(199, 125, 62, 0.4);
}
.timeline-year {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--copper-400);
}

/* --- Contact Page --- */
.contact-form-input {
  width: 100%;
  background: var(--navy-700);
  border: 1px solid rgba(199, 125, 62, 0.2);
  color: var(--text-warm);
  padding: 0.85rem 1rem;
  border-radius: 3px;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.92rem;
  transition: all 0.3s;
  outline: none;
}
.contact-form-input:focus {
  border-color: var(--copper-400);
  box-shadow: 0 0 0 3px rgba(199, 125, 62, 0.1);
}
.contact-form-input::placeholder {
  color: var(--text-navy);
}
.contact-info-card {
  background: var(--navy-700);
  border: 1px solid rgba(199, 125, 62, 0.12);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s;
}
.contact-info-card:hover {
  border-color: rgba(199, 125, 62, 0.3);
}
.contact-icon-circle {
  width: 44px;
  height: 44px;
  background: rgba(199, 125, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-400);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(199, 125, 62, 0.2);
}

/* --- Download Page --- */
.download-card {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(199, 125, 62, 0.15);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.download-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper-400), var(--copper-200));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: center;
}
.download-card:hover::before {
  transform: scaleX(1);
}
.download-card:hover {
  border-color: rgba(199, 125, 62, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}
.download-card .dl-icon {
  font-size: 3rem;
  color: var(--copper-400);
  margin-bottom: 1rem;
}
.download-card .dl-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-warm);
  margin-bottom: 0.5rem;
}
.version-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.version-table thead th {
  background: var(--navy-700);
  color: var(--copper-300);
  font-family: 'Source Serif 4', 'Georgia', serif;
  font-weight: 600;
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 2px solid rgba(199, 125, 62, 0.3);
  letter-spacing: 0.5px;
}
.version-table tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(199, 125, 62, 0.1);
  color: var(--text-muted);
}
.version-table tbody tr:hover td {
  background: rgba(199, 125, 62, 0.03);
  color: var(--text-warm);
}
.install-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(199, 125, 62, 0.1);
}
.install-step:last-child {
  border-bottom: none;
}
.install-step-num {
  width: 48px;
  height: 48px;
  background: rgba(199, 125, 62, 0.1);
  border: 2px solid rgba(199, 125, 62, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--copper-400);
  flex-shrink: 0;
}

/* --- Hero Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce-down 2s infinite;
  cursor: pointer;
}
.scroll-indicator span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}
.scroll-indicator .scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, var(--copper-400), transparent);
}
@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-bottom: 3px solid rgba(199, 125, 62, 0.2);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--copper-400), transparent);
}

/* --- Value Card (About Page) --- */
.value-card {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  border: 1px solid rgba(199, 125, 62, 0.12);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
}
.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--copper-400);
  transition: width 0.35s ease;
}
.value-card:hover::after {
  width: 50px;
}
.value-card:hover {
  border-color: rgba(199, 125, 62, 0.35);
  transform: translateY(-3px);
}
.value-card .value-icon {
  font-size: 2.2rem;
  color: var(--copper-400);
  margin-bottom: 1.25rem;
}

/* --- Mission Statement Block --- */
.mission-block {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  border-left: 4px solid var(--copper-400);
  padding: 2rem 2.5rem;
  border-radius: 0 4px 4px 0;
  position: relative;
}
.mission-block::before {
  content: '\201C';
  font-family: 'Playfair Display', 'Georgia', serif;
  position: absolute;
  top: 0.25rem;
  left: 0.75rem;
  font-size: 5rem;
  color: rgba(199, 125, 62, 0.08);
  line-height: 1;
  pointer-events: none;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* --- Module highlighted state --- */
.module-card.highlight {
  border-color: rgba(199, 125, 62, 0.5);
  box-shadow: 0 0 30px rgba(199, 125, 62, 0.15);
}
.module-card.highlight::before {
  height: 100%;
}
.module-card.highlight .module-number {
  color: rgba(199, 125, 62, 0.2);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .section-title-academic {
    font-size: 1.8rem;
  }
  .section-subtitle-academic {
    font-size: 0.95rem;
  }
  .module-card .module-number {
    font-size: 2.8rem;
  }
  .achievement-stat .stat-number {
    font-size: 2.2rem;
  }
  .mission-block {
    padding: 1.5rem;
  }
  .page-hero {
    padding: 6rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .section-title-academic {
    font-size: 1.5rem;
  }
  .module-card {
    padding: 1.5rem 1.25rem;
  }
  .academic-crest {
    width: 60px;
    height: 60px;
  }
  .academic-crest::before {
    width: 44px;
    height: 44px;
  }
  .academic-crest::after {
    font-size: 18px;
  }
}
