/* Redesign V2 - Premium & Modern UI */
:root {
  /* Core Palette */
  --primary-color: #0c4a99;
  --primary-light: #6ca7ff;
  --primary-dark: #083266;
  --accent-color: #ffd700; /* Gold for premium touches */

  /* Neutral Palette */
  --text-main: #212529;
  --text-muted: #6c757d;
  --text-light: #ffffff;
  --bg-body: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1e21;

  /* Modern UI Tokens */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 20px 40px rgba(12, 74, 153, 0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* General Improvements */
body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-title::after {
  /* content: ""; */
  display: none; /* Removing the underline as requested/inferred */
}

/* Reset legacy specific underlines from main.css */
h2::after,
h2:after {
  content: none !important;
  display: none !important;
}

.section-subtitle {
  display: block;
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

/* Section Spacing */
.section-padding {
  padding: 100px 0;
}

/* News Section Redesign */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.news-card-v2 {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.news-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.news-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 60%; /* 16:9 aspect ratio */
}

.news-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card-v2:hover .news-img-wrapper img {
  transform: scale(1.05);
}

.news-date-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.news-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.news-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}

.btn-read-more:hover {
  gap: 8px;
  color: var(--primary-light);
}

/* Courses Section Redesign - Vibrant & Premium */
.courses-section-v2 {
  background: linear-gradient(180deg, #0c4a99 0%, #062b5b 100%);
  position: relative;
  color: white; /* Ensure text is readable on dark background */
  padding: 20px 0; /* Aggressively reduced padding */
}

/* Adjust section title color and spacing for dark background */
.courses-section-v2 .section-title {
  margin-bottom: 1.5rem; /* Further reduced */
}

.courses-section-v2 .section-title h2 {
  color: white;
}

.courses-section-v2 .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* .courses-section-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  clip-path: ellipse(150% 100% at 50% 0%);
  opacity: 0.05;
  z-index: 0;
} */

.course-card-v2 {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Softer, deeper shadow */
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0; /* Removing padding to allow for full-width header */
}

/* Colored Header Background for Card */
.course-card-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px; /* Banner height */
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary-color) 100%
  );
  z-index: 0;
}

.course-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(12, 74, 153, 0.15);
}

.course-tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 15px; /* Spacing from top */
  margin-bottom: 0;
  display: inline-block;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.course-img-v2 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 15px; /* Overlap banner */
  margin-bottom: 1rem;
  border: 4px solid #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  background: white;
}

.course-title-v2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  color: var(--primary-dark);
}

.course-prof-v2 {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0 1.5rem;
}

.btn-course-v2 {
  margin-top: auto;
  margin-bottom: 1.5rem; /* Reduced from 2rem */
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  cursor: pointer;
  text-decoration: none !important;
}

.btn-course-v2:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 5px 15px rgba(12, 74, 153, 0.3);
  transform: scale(1.05);
}

/* Old Scroll Controls removed - Replaced by Swiper.js */

/* School Section Redesign */
.school-section-v2 {
  padding: 100px 0;
  background: white;
  position: relative;
}

.school-card-v2 {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid #eaeaea;
  transition: var(--transition-normal);
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.school-card-v2:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

.school-card-v2 .btn {
  margin-top: auto;
}

.level-icon {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.level-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.level-description {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.feature-list-v2 {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.feature-list-v2 li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list-v2 li i {
  color: #6ca7ff; /* Gold touch for checkmarks */
  font-size: 1.1rem;
}

/* Activities Section Redesign */
.activities-section-v2 {
  background-color: var(--bg-light);
}

.activity-list-v2 {
  max-width: 900px;
  margin: 0 auto;
}

.activity-item-v2 {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: var(--transition-fast);
}

.activity-item-v2:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.activity-date-badge {
  text-align: center;
  min-width: 80px;
  padding: 10px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary-color);
}

.date-day-v2 {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-color);
}

.date-month-v2 {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.activity-info-v2 {
  flex-grow: 1;
}

.activity-title-v2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.activity-meta-v2 {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  gap: 15px;
}

.activity-meta-v2 span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-activity-v2 {
  padding: 8px 16px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-activity-v2:hover {
  background: var(--primary-color);
  color: white;
}

/* Testimonials Redesign */
.testimonials-section-v2 {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-color) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
}

/* Background pattern element */
/* .testimonials-section-v2::before {
  content: "\f2f6";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 400px;
  opacity: 0.05;
  right: -100px;
  bottom: -100px;
} */

.testimonials-section-v2 .section-title h2 {
  color: white;
}

.testimonials-section-v2 .section-title::after {
  background: rgba(255, 255, 255, 0.3);
}

.testimonials-section-v2 .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-card-v2 {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}

.testimonial-text-v2 {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: white;
}

.testimonial-author-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-img-v2 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid white;
}

.author-info-v2 h5 {
  color: white;
  margin: 0;
  font-size: 1.1rem;
}

.author-info-v2 span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* About Section Redesign */
.about-section-v2 {
  background: white;
  padding-bottom: 0; /* Remove bottom padding to merge with footer if needed */
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-text-content {
  padding-right: 2rem;
}

.about-text-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-highlight {
  border-left: 4px solid var(--accent-color);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--primary-dark);
  font-weight: 600;
}

.about-img-container-v2 {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  box-shadow: -20px 20px 0 rgba(7, 30, 61, 0.05);
}

.about-img-v2 {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.about-img-container-v2:hover .about-img-v2 {
  transform: scale(1.05);
}

/* Footer Improvements */
.footer-v2 {
  background: #083266;
  color: #a0aec0;
  padding: 80px 0 30px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.footer-heading {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.social-links-v2 {
  display: flex;
  gap: 10px;
}

.social-btn-v2 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
  text-decoration: none;
}

.social-btn-v2:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

.footer-bottom-v2 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-container-v2 {
    border-radius: var(--radius-lg);
    box-shadow: none;
  }

  .about-text-content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .activity-item-v2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .activity-date-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: auto;
    padding: 5px 15px;
    border-left: none;
    border: 1px solid var(--primary-light);
  }

  .date-day-v2 {
    font-size: 1.2rem;
  }

  .activity-meta-v2 {
    flex-direction: column;
    gap: 8px;
  }

  .btn-activity-v2 {
    width: 100%;
    text-align: center;
  }
}

/* Feature Cards V2 (for Quienes Somos etc) */
.feature-card-v2 {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow-sm);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card-v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card-v2:hover::before {
  transform: scaleX(1);
}

.feature-icon-v2 {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

.feature-card-v2:hover .feature-icon-v2 {
  background: var(--primary-color);
  color: white;
  transform: rotateY(180deg);
}

.feature-card-v2 h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card-v2 p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Featured News Redesign */
.featured-news-card-v2 {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
}

.featured-news-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.featured-img-wrapper {
  position: relative;
  height: 400px; /* Dominant height */
  overflow: hidden;
}

.featured-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-news-card-v2:hover .featured-img-wrapper img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 2rem;
  color: white;
  z-index: 2;
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #6ca7ff;
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.featured-content {
  position: relative;
  z-index: 3;
}

.featured-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-date {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  display: block;
  font-size: 0.9rem;
}

.featured-lead {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Sidebar Redesign */
.news-sidebar-v2 {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.sidebar-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-light);
  position: relative;
}

.sidebar-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-light);
}

.news-item-v2 {
  display: flex;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
}

.news-item-v2:last-child {
  border-bottom: none;
}

.news-item-v2:hover {
  background: var(--bg-light);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: var(--radius-sm);
  margin-left: -10px;
  margin-right: -10px;
}

.sidebar-img-wrapper {
  width: 90px;
  height: 65px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.sidebar-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-content {
  flex-grow: 1;
}

.sidebar-news-title {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 5px;
  color: var(--text-main);
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-news-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Article Detail Redesign */
.article-container-v2 {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.article-header {
  margin-bottom: 2rem;
}

.article-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--primary-dark);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.article-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  max-height: 500px;
  object-fit: contain;
  background-color: var(--bg-light);
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
}

.article-body p {
  margin-bottom: 1.5rem;
}

.share-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Event Card Redesign */
.event-card-v2 {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  height: 100%;
}

.event-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.event-date-box {
  background: var(--bg-light);
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
}

.event-date-day {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.event-date-month {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.event-content-v2 {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-title-v2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.event-meta-v2 {
  display: flex;
  gap: 15px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-desc-v2 {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.btn-event-v2 {
  align-self: flex-start;
  padding: 8px 20px;
  background: var(--bg-light);
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

/* Hero V2 Styles (from Academia) */
.hero-swiper {
  width: 100%;
  height: 100vh;
}

.hero-slide-content {
  background:
    linear-gradient(rgba(8, 50, 102, 0.85), rgba(8, 50, 102, 0.85)),
    url("https://images.pexels.com/photos/4608919/pexels-photo-4608919.jpeg"); /* Dark Blue Overlay */
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 100vh; /* Ensure it takes full viewport height */
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content-v2 {
  position: relative;
  z-index: 2;
  color: white;
  padding: 2rem;
}

.hero-title-v2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  color: white !important; /* Override global h1 color */
}

.hero-text-v2 {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
}

.hero-img-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-img-v2 {
  max-height: 450px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s ease;
}

.swiper-slide-active .hero-img-v2 {
  transform: scale(1.05);
}

/* Teacher Card V2 Styles (Reusable for Pricing) */
.teacher-card-v2 {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft shadow */
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.teacher-card-v2:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.teacher-img-v2 {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.teacher-name-v2 {
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.teacher-title-v2 {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(12, 74, 153, 0.05);
  padding: 5px 15px;
  border-radius: 50px;
}

.teacher-bio-v2 {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.teachers-section {
  background-color: #083266; /* Dark Blue from palette */
  padding: 100px 0;
}

.teachers-section .section-title h2 {
  color: #fff !important;
}

.teachers-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Contact Section V3 Styles */
.contact-section-v3 {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.contact-item-v3 {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.contact-item-v3:hover {
  transform: translateY(-5px);
}

.contact-icon-v3 {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-label-v3 {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-value-v3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
  word-wrap: break-word; /* Ensure clear wrapping */
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Responsive Adjustments for V2 components */
@media (max-width: 768px) {
  .contact-item-v3 {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .contact-icon-v3 {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .contact-value-v3 {
    font-size: 1rem; /* Smaller font on mobile */
  }
}

/* FAQ Section V2 Styling */
.faq-section-v2 {
  padding: 60px 0;
  background-color: #fff;
}

.faq-card-v2 {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  background: white;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-card-v2:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-button-v2 {
  background: white;
  padding: 1.25rem 1.5rem;
  width: 100%;
  text-align: left;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-main);
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.faq-button-v2:not(.collapsed) {
  color: var(--primary-color);
  background-color: rgba(12, 74, 153, 0.02);
}

.faq-button-v2:focus {
  box-shadow: none;
  outline: none;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--text-muted);
  font-size: 1rem;
}

.faq-button-v2:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.faq-body-v2 {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
  background-color: rgba(12, 74, 153, 0.02);
  font-size: 0.95rem;
}
