/* EQAIC Component Styles */

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  background: white;
  padding: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #1e264b;
  font-size: 0.9375rem;
}

.contact-icon {
  font-size: 1.125rem;
}

.contact-phone,
.contact-email {
  color: #1e264b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
  color: #1e264b;
}

.contact-divider {
  color: rgba(0, 0, 0, 0.2);
}

.site-header.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 8px 32px rgba(30, 27, 75, 0.2);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #1e264b;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo::before {
  content: '🎓';
  font-size: 1.5rem;
}

.logo:hover {
  transform: translateY(-2px);
  color: #1e264b;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle-bar {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-menu {
  padding: 0.75rem 0;
}

.nav-menu .nav-items {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: #1e264b;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  position: relative;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1e264b, #1e264b);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.nav-menu a:hover::before {
  transform: scaleX(1);
}

.nav-menu a:hover {
  color: #1e264b;
  background: rgba(30, 38, 75, 0.08);
  transform: translateY(-2px);
}

.nav-menu .btn {
  padding: 0.75rem 1.75rem;
  margin-left: var(--spacing-md);
  background: linear-gradient(135deg, #1e264b 0%, #1e264b 100%);
  border: none;
  box-shadow: 0 4px 12px rgba(30, 38, 75, 0.3);
  font-weight: 600;
}

.nav-menu .btn::before {
  display: none;
}

.nav-menu .btn:hover {
  background: linear-gradient(135deg, #1e264b 0%, #2a3357 100%);
  box-shadow: 0 6px 20px rgba(30, 38, 75, 0.4);
  transform: translateY(-3px);
}

/* Apply Button Styles */
.nav-cta {
  margin-left: auto;
}

.btn-apply {
  padding: 0.625rem 1.25rem !important;
  background: linear-gradient(135deg, #1e264b 0%, #1e264b 100%) !important;
  color: white !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  box-shadow: 0 4px 12px rgba(30, 38, 75, 0.3) !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
}

.btn-apply::before {
  display: none !important;
}

.btn-apply:hover {
  background: linear-gradient(135deg, #2d3a5f 0%, #1e264b 100%) !important;
  box-shadow: 0 6px 20px rgba(30, 38, 75, 0.4) !important;
  transform: translateY(-3px) !important;
}

/* Mega Menu Styles */
.nav-menu .has-dropdown {
  position: relative;
}

.nav-menu .has-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
  display: none;
}

.nav-menu .has-dropdown:hover::before {
  display: block;
}

.nav-menu .has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.nav-menu .has-dropdown > a::after {
  content: '▼';
  font-size: 0.625rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.nav-menu .has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.nav-menu .mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  min-width: 600px;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(30, 58, 138, 0.2), 0 0 0 1px rgba(30, 58, 138, 0.05);
  padding: 2rem;
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  z-index: 1000;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.nav-menu .has-dropdown:hover .mega-menu,
.nav-menu .mega-menu:hover {
  display: grid;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-menu .mega-menu-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-menu .mega-menu-column h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin: 0 0 0.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.nav-menu .mega-menu-column ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu .mega-menu-column li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu .mega-menu a {
  color: #1e264b;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border-radius: 10px;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1.5;
  letter-spacing: -0.01em;
  position: relative;
}

.nav-menu .mega-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(135deg, #1e264b, #1e264b);
  border-radius: 2px;
  transition: height 0.25s ease;
}

.nav-menu .mega-menu a:hover {
  background: linear-gradient(90deg, rgba(30, 38, 75, 0.1), rgba(30, 38, 75, 0.08));
  color: #1e264b;
  padding-left: 1.5rem;
}

.nav-menu .mega-menu a:hover::before {
  height: 24px;
}

.nav-menu .mega-menu .apply-link {
  color: white;
  font-weight: 600;
  background: linear-gradient(135deg, #1e264b 0%, #1e264b 100%);
  margin-top: 0.5rem;
  padding: 0.875rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  justify-content: center;
}

.nav-menu .mega-menu .apply-link:hover {
  background: linear-gradient(135deg, #1e264b 0%, #2a3357 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  padding-left: 1.5rem;
}

.nav-menu .mega-menu .apply-link::before {
  display: none;
}

/* Banner Component */
.banner {
  position: relative;
  background: linear-gradient(135deg, #1e264b 0%, #2a3357 50%, #2a3357 100%);
  color: white;
  padding: 6rem 0 11rem;
  overflow: hidden;
  min-height: 750px;
  display: flex;
  align-items: center;
}

.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1652417105798-5baf8b0374da?w=1920');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(37, 99, 235, 0.75) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.banner h1 {
  color: white;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  -webkit-text-fill-color: white;
  background: none;
  animation: slideInLeft 0.8s ease-out;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
}

.banner h1 .highlight {
  background: linear-gradient(135deg, #1e264b 0%, #1e264b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 0.5rem;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.banner .banner-line {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #1e264b 0%, transparent 100%);
  margin: var(--spacing-lg) 0;
  animation: slideInLeft 0.8s ease-out 0.3s both;
}

.banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  animation: slideInLeft 0.8s ease-out 0.4s both;
  max-width: 650px;
}

.banner-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  animation: slideInLeft 0.8s ease-out 0.6s both;
  margin-bottom: 8rem;
}

.banner-actions .btn {
  background: transparent;
  color: white;
  font-weight: 700;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  border: 2px solid #1e264b;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner-actions .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1e264b;
  transition: left 0.4s ease;
  z-index: -1;
}

.banner-actions .btn:hover::before {
  left: 0;
}

.banner-actions .btn:hover {
  color: white;
  border-color: #1e264b;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30, 38, 75, 0.4);
}

/* Banner Feature Boxes */
.banner-features {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 3;
}

.banner-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.banner-feature-box {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  transition: all 0.4s ease;
  border: 1px solid rgba(30, 38, 75, 0.1);
}

.banner-feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(30, 58, 138, 0.25);
  border-color: rgba(30, 38, 75, 0.3);
}

.banner-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e264b 0%, #1e264b 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(30, 38, 75, 0.3);
}

.banner-feature-content h3 {
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.banner-feature-content p {
  font-size: 0.9375rem;
  color: var(--color-text-gray);
  margin: 0;
  line-height: 1.6;
}

/* Stats Component - Improved Design */
.stats-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(59,130,246,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.stats-wrapper {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 0;
}

.stat-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(30, 58, 138, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  border: 1px solid rgba(30, 38, 75, 0.1);
}

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

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1e264b 0%, #1e264b 50%, #8b5cf6 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

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

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
  border-color: rgba(30, 38, 75, 0.3);
}

.stat-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(30, 38, 75, 0.08), rgba(30, 38, 75, 0.08));
  border-radius: 50%;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-decoration {
  transform: scale(1.3);
  opacity: 0.6;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #1e264b;
  animation: bounce 2s ease-in-out infinite;
}

.stat-icon svg {
  width: 48px;
  height: 48px;
  stroke: #1e264b;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-card:hover .stat-icon {
  animation: none;
  transform: scale(1.2) rotate(5deg);
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1e264b 0%, #1e264b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  transition: all 0.3s ease;
}

.stat-number.counting {
  animation: countPulse 0.6s ease-out;
}

@keyframes countPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-transform: capitalize;
}

/* Process Timeline */
.process-steps {
  position: relative;
  display: grid;
  gap: var(--spacing-2xl);
  counter-reset: step;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 60px;
  bottom: 60px;
  width: 3px;
  background: linear-gradient(180deg, #1e264b 0%, #F59E0B 100%);
  border-radius: 10px;
}

.process-step {
  position: relative;
  padding-left: 5.5rem;
  counter-increment: step;
  background: white;
  padding: var(--spacing-xl);
  padding-left: 5.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 15px rgba(15, 118, 110, 0.08);
  transition: all 0.3s ease;
}

.process-step:hover {
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.15);
  transform: translateX(10px);
}

.process-step::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #1e264b 0%, #2a3357 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
  border: 4px solid white;
  z-index: 1;
}

.process-step h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
}

.process-step p {
  margin: 0;
  font-size: 0.9375rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.benefit-item {
  text-align: center;
  padding: var(--spacing-2xl) var(--spacing-xl);
  background: linear-gradient(135deg, rgba(240, 253, 250, 0.6) 0%, white 100%);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 6px -1px rgba(15, 118, 110, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(15, 118, 110, 0.08);
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  transition: transform 0.6s ease;
  transform: scale(0);
}

.benefit-item:hover::before {
  transform: scale(1);
}

.benefit-item:hover {
  box-shadow: 0 20px 25px -5px rgba(15, 118, 110, 0.15);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(20, 184, 166, 0.3);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  background: transparent;
  border: 2px solid #1e264b;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  box-shadow: none;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(30, 38, 75, 0.15);
  border-color: #4a5d8f;
}

.benefit-item h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
}

.benefit-item p {
  font-size: 0.9375rem;
  margin: 0;
}

/* Testimonials Section - Grid Layout */
.testimonials-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f0f9ff 100%);
  padding: 5rem 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card-grid {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(30, 58, 138, 0.08);
  border: 2px solid rgba(30, 38, 75, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.testimonial-card-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1e264b, #1e264b, #8b5cf6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.testimonial-card-grid:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
  border-color: rgba(30, 38, 75, 0.3);
}

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

.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: rgba(30, 38, 75, 0.15);
  font-family: Georgia, serif;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-weight: bold;
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #1e264b;
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 1;
  font-style: italic;
  min-height: 140px;
}

.testimonial-rating {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.testimonial-author-grid {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(30, 38, 75, 0.1);
}

.testimonial-avatar-grid {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e0f2fe;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.12);
}

.testimonial-details {
  flex: 1;
  text-align: left;
}

.author-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1e264b;
  margin: 0 0 0.375rem 0;
  line-height: 1.3;
}

.author-role {
  font-size: 0.9375rem;
  color: #1e264b;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.author-org {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1e264b 0%, #2a3357 100%);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(30, 38, 75, 0.15) 0%, transparent 50%);
  top: -50%;
  left: -50%;
  animation: ctaFloat 20s ease-in-out infinite;
}

@keyframes ctaFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--spacing-lg);
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xl);
  line-height: 1.8;
}

.cta-section .banner-actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.cta-section .btn {
  background: white;
  color: #1e264b;
  font-weight: 700;
  border: 2px solid white;
}

.cta-section .btn:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-3px);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #1e264b 0%, #2a3357 100%);
  color: white;
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-3xl);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,50 C150,100 350,0 600,50 C850,100 1050,0 1200,50 L1200,0 L0,0 Z" fill="rgb(240, 253, 250)"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  top: -99px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.5px;
}

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.4);
}

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

/* Filter Component */
.filters {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-xl);
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  align-items: end;
}

.filter-actions {
  display: flex;
  gap: var(--spacing-sm);
}

/* Institution Cards */
.institution-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.institution-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.institution-content {
  padding: var(--spacing-lg);
}

.institution-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.institution-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

/* Leader Cards */
.leader-card {
  text-align: center;
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.leader-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--spacing-md);
  border: 4px solid var(--color-bg-light);
}

.leader-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.leader-title {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.leader-bio {
  font-size: 0.875rem;
  color: var(--color-text-gray);
}
