/* ========================================
   Professional Component Styles
   Clean & Minimal Design
   ======================================== */

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  background: linear-gradient(to bottom, rgb(0 0 0 / 65%) 0%, rgb(0 0 0 / 0%) 100%);
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: 1rem 0;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
}

.site-header.scrolled .nav-link {
  color: var(--text-primary);
}

.site-header.scrolled .logo-light {
  display: none;
}

.site-header.scrolled .logo-dark {
  display: block;
}

.logo-dark {
  display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
  transition: height 0.3s ease;
}

.site-header.scrolled .logo img {
  height: 38px;
}

/* Text Logo */
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}

.site-header.scrolled .logo-text {
  color: var(--color-navy);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header {
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-header-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-header-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.site-header.scrolled .btn-header-outline {
  color: var(--text-primary);
  border-color: var(--color-gray);
}

.site-header.scrolled .btn-header-outline:hover {
  background: var(--color-light-gray);
}

.btn-header-primary {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-header-primary:hover {
  background: var(--color-navy-light);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 24px;
  position: relative;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

.site-header.scrolled .menu-toggle span {
  background: var(--text-primary);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-charcoal);
  background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center;
}

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

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(2 2 2 / 0%) 0%, rgb(255, 255, 255) 100%);
    z-index: 2;
}

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

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-white);
  opacity: 0.7;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  color: var(--color-red);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-white);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 0 1.25rem;
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-navy-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

.btn-dark {
  background: var(--color-charcoal);
  color: var(--color-white);
}

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

.btn-light {
  background: var(--color-white);
  color: var(--text-primary);
}

.btn-light:hover {
  background: var(--color-off-white);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

/* ========== SECTIONS ========== */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-sm {
  padding: 6rem 0;
}

.section-lg {
  padding: 10rem 0;
}

/* More breathing space for sections */
.section {
  padding: 8rem 0;
}

/* Section Header */
.section-header {
  max-width: 800px;
  margin-bottom: 4rem;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-navy);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-title .accent {
  color: var(--color-red);
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Section responsive spacing */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  .section-sm {
    padding: 3rem 0;
  }
  .section-lg {
    padding: 5rem 0;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }
  .section-desc {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }
  .section-sm {
    padding: 2rem 0;
  }
  .section-lg {
    padding: 4rem 0;
  }
  .section-header {
    margin-bottom: 2rem;
  }
}

/* ========== CARDS ========== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

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

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Feature Card - Clean Minimal Style */
.feature-card {
  padding: 3rem 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  text-align: center;
}

.feature-card:hover {
  border-color: var(--color-navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--color-navy) 0%, #2a4a7a 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--color-red) 0%, #e63946 100%);
  transform: scale(1.1);
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: white;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .feature-card {
    padding: 2rem 1.5rem;
  }
  .feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
  }
  .feature-icon i {
    font-size: 1.5rem;
  }
}

/* Image Card */
.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.image-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.image-card-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.image-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
}

.image-card-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

/* ========== STATS ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 640px) {
  .stat-number {
    font-size: 2.5rem;
  }
  .stat-item {
    padding: 1.5rem 0.75rem;
  }
}

/* ========== TESTIMONIALS - Clean Style ========== */
.testimonial {
  max-width: 800px;
  text-align: center;
  padding: 3rem;
}

.testimonial-quote-icon {
  margin-bottom: 2rem;
}

.testimonial-quote-icon i {
  font-size: 3rem;
  color: var(--color-gold);
  opacity: 0.5;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 3rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-gold);
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.125rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--color-navy);
  font-weight: 500;
}

@media (max-width: 640px) {
  .testimonial {
    padding: 2rem 1.25rem;
  }
  .testimonial-quote {
    margin-bottom: 2rem;
  }
  .testimonial-avatar {
    width: 56px;
    height: 56px;
  }
}

/* ========== GALLERY ========== */
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 54, 94, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
}

.gallery-item-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

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

@media (max-width: 640px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
  .footer-grid {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 1.5rem;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9375rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--color-white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-white);
  color: var(--color-charcoal);
}

/* ========== MODAL ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s ease;
}

.modal.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-light-gray);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--color-gray);
}

/* ========== GRIDS ========== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.py-section { padding-top: 8rem; padding-bottom: 8rem; }
.px-container { padding-left: 2rem; padding-right: 2rem; }

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

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

/* ========== IMAGINE SECTION (NIS Style) ========== */
.imagine-section {
  background: #F5A623;
  position: relative;
  overflow: hidden;
}

.imagine-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 600px;
}

@media (max-width: 1024px) {
  .imagine-container {
    grid-template-columns: 1fr;
  }
}

.imagine-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.imagine-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-navy);
  line-height: 0.9;
  margin-bottom: 2rem;
}

.imagine-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.imagine-text {
  font-size: 1rem;
  color: var(--color-navy);
  opacity: 0.85;
  line-height: 1.8;
  max-width: 450px;
  margin-bottom: 2rem;
}

.imagine-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--color-navy);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  width: fit-content;
}

.imagine-btn:hover {
  background: var(--color-navy-light);
  transform: translateX(5px);
}

/* Student Testimonial Carousel */
.imagine-carousel {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2rem;
}

.student-cards {
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
}

.student-card {
  flex-shrink: 0;
  width: min(280px, 80vw);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.student-card:hover {
  transform: translateY(-10px);
}

.student-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.student-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.student-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
}

.student-grade {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.25rem;
}

/* Video Play Button */
.student-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #F5A623;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.student-play-btn::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 16px solid var(--color-navy);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

.student-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background: var(--color-navy);
  color: white;
}

.carousel-nav.prev {
  left: 1rem;
}

.carousel-nav.next {
  right: 1rem;
}

@media (max-width: 640px) {
  .imagine-carousel {
    padding: 1rem;
  }
  .student-card img {
    height: 300px;
  }
  .carousel-nav {
    width: 40px;
    height: 40px;
  }
}

/* ========== FAST FACTS SECTION (Enhanced) ========== */
.fast-facts-section {
  background: linear-gradient(135deg, var(--color-navy) 0%, #0f2744 100%);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.fast-facts-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.fast-facts-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.fast-facts-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  font-weight: 700;
  margin-top: 1rem;
}

.fast-facts-title .accent {
  color: var(--color-red, #D61F31);
}

/* New Card-Based Grid */
.fast-facts-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

@media (max-width: 1024px) {
  .fast-facts-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fast-facts-header {
    margin-bottom: 3rem;
  }
  .fast-facts-section {
    padding: 5rem 0;
  }
}

@media (max-width: 640px) {
  .fast-facts-grid-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .fast-fact-card {
    padding: 2rem 1.5rem;
  }
}

.fast-fact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.fast-fact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-red));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.fast-fact-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
}

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

.fast-fact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--color-navy), #0f2744);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fast-fact-icon i {
  font-size: 1.75rem;
  color: var(--color-navy);
}

.fast-fact-card .fast-fact-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.fast-fact-card .fast-fact-number .plus {
  color: var(--color-gold);
  font-size: 0.7em;
}

.fast-fact-card .fast-fact-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Old Grid (Keep for compatibility) */
.fast-facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

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

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

.fast-fact {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.fast-fact:hover {
  background: rgba(255, 255, 255, 0.05);
}

.fast-fact:nth-child(5n) {
  border-right: none;
}

@media (max-width: 1024px) {
  .fast-fact:nth-child(5n) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .fast-fact:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .fast-fact:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .fast-fact:nth-child(2n) {
    border-right: none;
  }
}

.fast-fact-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F5A623;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.fast-fact-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  font-weight: 500;
}

/* Question Bubble */
.question-bubble {
  position: relative;
  display: inline-block;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.question-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid white;
}

.question-text {
  font-size: 0.9375rem;
  color: var(--color-navy);
  font-weight: 500;
}

/* ========== MOBILE MENU OVERLAY ========== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 54, 94, 0.98);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255,255,255,0.2);
}

/* Site Search */
.site-search {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.search-input-wrapper {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.search-input:focus {
  outline: none;
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
}

.search-results {
  margin-top: 1rem;
  max-height: 300px;
  overflow-y: auto;
}

.search-result-item {
  display: block;
  padding: 1rem;
  color: white;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.search-result-item:hover {
  background: rgba(255,255,255,0.1);
}

.search-result-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.search-result-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* Mobile Navigation Links */
.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #F5A623;
  padding-left: 0.5rem;
}

.mobile-menu-footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ========== CHATBOT ========== */
.chatbot-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-popover);
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  background: var(--color-navy);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(26, 54, 94, 0.4);
  transition: all 0.3s ease;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(26, 54, 94, 0.5);
}

.chatbot-toggle i {
  font-size: 1.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.chatbot-toggle.active i {
  transform: rotate(180deg);
}

.chatbot-toggle .close-icon {
  display: none;
}

.chatbot-toggle.active .chat-icon {
  display: none;
}

.chatbot-toggle.active .close-icon {
  display: block;
}

/* Chat Window */
.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 2rem);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
}

.chatbot-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background: var(--color-navy);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  background: #F5A623;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-avatar i {
  color: var(--color-navy);
  font-size: 1.25rem;
}

.chatbot-info {
  flex: 1;
}

.chatbot-name {
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.chatbot-status {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chatbot-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

/* Chat Messages */
.chatbot-messages {
  height: 350px;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-light-gray);
}

.chat-message {
  max-width: 85%;
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  line-height: 1.5;
  animation: messageSlide 0.3s ease;
}

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

.chat-message.bot {
  background: white;
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.chat-message.user {
  background: var(--color-navy);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-message.typing {
  display: flex;
  gap: 4px;
  padding: 1rem 1.25rem;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: var(--color-medium-gray);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
}

/* Chat Input */
.chatbot-input {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-gray);
  background: white;
}

.chatbot-input input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.chatbot-input input:focus {
  outline: none;
  border-color: var(--color-navy);
}

.chatbot-send {
  width: 44px;
  height: 44px;
  background: var(--color-navy);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chatbot-send:hover {
  background: var(--color-navy-light);
}

.chatbot-send:disabled {
  background: var(--color-gray);
  cursor: not-allowed;
}

.chatbot-send i {
  color: white;
  font-size: 1rem;
}

/* Quick Replies */
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.quick-reply {
  padding: 0.5rem 1rem;
  background: var(--color-light-gray);
  border: 1px solid var(--color-gray);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--color-navy);
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-reply:hover {
  background: var(--color-navy);
  color: white;
  border-color: var(--color-navy);
}

/* Hamburger Menu Button */
.hamburger-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 100;
}

.hamburger-lines {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.site-header.scrolled .hamburger-lines span {
  background: var(--text-primary);
}

.hamburger-btn.active .hamburger-lines span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-lines span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .hamburger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav,
  .header-cta {
    display: none;
  }
}

@media (max-width: 640px) {
  .chatbot-window {
    width: calc(100vw - 1rem);
  }
}

@media (max-width: 480px) {
  .chatbot-window {
    width: 100%;
    bottom: 70px;
    right: -1rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 70vh;
  }

  .chatbot-messages {
    height: 280px;
  }
}

/* ========== PANEL SCROLL JOURNEY SECTION ========== */
.panel-journey-section {
  position: relative;
  background: #ffffff;
  padding: 6rem 0;
  overflow: hidden;
}

/* Same cross/plus pattern as Fast Facts section - white theme version */
.panel-journey-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A365E' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.panel-journey-wrapper {
  position: relative;
  z-index: 2;
}

.panel-journey-item {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
}

.panel-journey-container {
  position: relative;
  max-width: 550px;
  width: 100%;
}

.panel-journey-container.panel-left {
  margin-left: 5%;
  margin-right: auto;
}

.panel-journey-container.panel-right {
  margin-right: 5%;
  margin-left: auto;
}

.panel-journey-card {
  background: #ffffff;
  backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow:
    0 4px 6px rgba(26, 54, 94, 0.04),
    0 10px 20px rgba(26, 54, 94, 0.06),
    0 25px 50px rgba(26, 54, 94, 0.08);
  border: 1px solid rgba(26, 54, 94, 0.08);
  position: relative;
  transform-origin: center center;
}

.panel-journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: linear-gradient(90deg,
    var(--color-red) 0%,
    var(--color-gold) 33%,
    #26A69A 66%,
    #7C5BBF 100%);
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.panel-badge--red {
  background: linear-gradient(135deg, var(--color-red), #B91C2C);
}

.panel-badge--yellow {
  background: linear-gradient(135deg, var(--color-gold), #D97706);
}

.panel-badge--teal {
  background: linear-gradient(135deg, #26A69A, #0D9488);
}

.panel-badge--purple {
  background: linear-gradient(135deg, #7C5BBF, #6D28D9);
}

.panel-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.panel-journey-card .panel-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1A365E !important;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.panel-journey-card .panel-description {
  font-size: 0.95rem;
  color: #4B5563 !important;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.panel-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.panel-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.panel-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--color-teal);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Panel animation states */
.panel-journey-container {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.panel-journey-container.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsive */
@media (max-width: 768px) {
  .panel-journey-item {
    padding: 3rem 1.5rem;
    min-height: 80vh;
  }

  .panel-journey-container.panel-left,
  .panel-journey-container.panel-right {
    margin: 0 auto;
  }

  .panel-journey-card {
    padding: 2rem;
  }

  .panel-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .panel-journey-container {
    max-width: 100%;
  }
  .panel-journey-item {
    padding: 2rem 1rem;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .panel-journey-card {
    padding: 1.5rem;
  }

  .panel-badge {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
