/* ============================================
   VEENAPEETH ACADEMY — SECTION STYLES
   ============================================ */

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-modal);
  padding: var(--space-4) 0;
  transition: all var(--duration-normal) var(--ease-default);
}

.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: var(--space-3) 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-weight: var(--weight-extrabold);
  font-size: 1.375rem;
  color: var(--color-text-inverse);
  transition: color var(--duration-normal) var(--ease-default);
  z-index: 10;
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: var(--weight-extrabold);
  font-size: 1.25rem;
}

.logo span {
  color: var(--color-accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-medium);
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-default);
  white-space: nowrap;
}

.nav-link:hover {
  color: white;
  background: rgba(255,255,255,0.1);
}

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

.header.scrolled .nav-link:hover {
  color: var(--color-secondary);
  background: var(--color-secondary-50);
}

.nav-cta {
  margin-left: var(--space-3);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 10;
  background: none;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-inverse);
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-default);
}

.header.scrolled .mobile-toggle span {
  background: var(--color-text);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-default);
}

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

.mobile-nav .nav-link {
  font-size: var(--text-h4);
  color: rgba(255,255,255,0.8);
  padding: var(--space-3) var(--space-6);
}

.mobile-nav .nav-link:hover {
  color: white;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: var(--space-24);
  padding-bottom: var(--space-16);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: var(--color-text-inverse);
}

.hero-text .text-overline {
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  display: inline-block;
}

.hero-text h1 {
  color: var(--color-text-inverse);
  margin-bottom: var(--space-6);
}

.hero-text p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-body-lg);
  max-width: 520px;
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
  animation: heroFloat 6s ease-in-out infinite;
}

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

/* Floating geometric shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.1;
  animation: shapeFloat var(--duration, 8s) var(--delay, 0s) ease-in-out infinite;
}

.hero-shape--1 {
  width: 300px; height: 300px;
  background: var(--color-secondary);
  top: 10%; left: -5%;
  --duration: 10s;
}

.hero-shape--2 {
  width: 200px; height: 200px;
  background: var(--color-accent);
  bottom: 15%; right: -3%;
  --duration: 8s;
  --delay: 1s;
}

.hero-shape--3 {
  width: 100px; height: 100px;
  background: var(--color-success);
  top: 30%; right: 20%;
  --duration: 6s;
  --delay: 2s;
  border-radius: var(--radius-xl);
}

.hero-shape--4 {
  width: 60px; height: 60px;
  background: var(--color-accent);
  bottom: 30%; left: 15%;
  --duration: 7s;
  --delay: 0.5s;
  border-radius: var(--radius-lg);
}

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -20px) rotate(5deg); }
  50% { transform: translate(-10px, -40px) rotate(-3deg); }
  75% { transform: translate(-20px, -10px) rotate(2deg); }
}

/* Stats Bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-16);
  position: relative;
  z-index: 2;
}

.hero-stat {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  transition: all var(--duration-normal) var(--ease-default);
}

.hero-stat:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-extrabold);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.hero-stat-label {
  font-size: var(--text-body-sm);
  color: rgba(255,255,255,0.7);
  font-weight: var(--weight-medium);
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-section {
  background: var(--color-surface);
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--color-border-light);
  overflow: hidden;
}

.trust-track {
  display: flex;
  gap: var(--space-16);
  animation: scrollTrust 30s linear infinite;
  width: max-content;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-6);
  background: var(--color-bg);
  border-radius: var(--radius-full);
  white-space: nowrap;
  font-weight: var(--weight-semibold);
  color: var(--color-text-secondary);
  font-size: var(--text-body-sm);
  border: 1px solid var(--color-border-light);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

@keyframes scrollTrust {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(15, 23, 42, 0.3));
  border-radius: var(--radius-2xl);
}

.about-content h2 {
  margin-bottom: var(--space-6);
}

.about-content > p {
  margin-bottom: var(--space-8);
}

/* About Tabs */
.about-tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.about-tab {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-border);
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-default);
}

.about-tab.active {
  background: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary);
}

.about-tab-content {
  display: none;
  animation: fadeInUp 0.4s var(--ease-out);
}

.about-tab-content.active {
  display: block;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.about-value-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--color-secondary-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.about-value h4 {
  font-size: var(--text-body);
  margin-bottom: var(--space-1);
}

.about-value p {
  font-size: var(--text-body-sm);
}

/* Founder Message */
.founder-message {
  margin-top: var(--space-10);
  padding: var(--space-8);
  background: var(--color-secondary-50);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-secondary);
  position: relative;
}

.founder-message::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--color-secondary-200);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.founder-message p {
  font-style: italic;
  font-size: var(--text-body-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}

.founder-name {
  font-weight: var(--weight-bold);
  color: var(--color-text);
  font-style: normal;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: var(--space-10);
  margin-top: var(--space-12);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-secondary-200);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-8);
}

.timeline-dot {
  position: absolute;
  left: calc(-1 * var(--space-10) + 8px);
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--color-secondary);
  border-radius: var(--radius-full);
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 3px var(--color-secondary-200);
}

.timeline-year {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--color-secondary);
  font-size: var(--text-body-sm);
  margin-bottom: var(--space-1);
}

.timeline-title {
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-1);
}

.timeline-desc {
  font-size: var(--text-body-sm);
  color: var(--color-text-secondary);
}

/* ============================================
   COURSES SECTION
   ============================================ */

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

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.course-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all var(--duration-normal) var(--ease-default);
  display: flex;
  flex-direction: column;
}

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

.course-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.course-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-default);
}

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

.course-card-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
}

.course-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-card-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-h4);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.course-card-meta {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-body-sm);
  color: var(--color-text-muted);
}

.course-meta-item svg {
  width: 16px;
  height: 16px;
}

.course-features {
  margin-bottom: var(--space-6);
  flex: 1;
}

.course-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-body-sm);
  color: var(--color-text-secondary);
  padding: var(--space-1) 0;
}

.course-feature svg {
  width: 16px;
  height: 16px;
  color: var(--color-success);
  flex-shrink: 0;
}

.course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-light);
}

.course-price {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-h4);
  color: var(--color-secondary);
}

.course-price span {
  font-size: var(--text-body-sm);
  color: var(--color-text-muted);
  font-weight: var(--weight-regular);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-section {
  background: var(--color-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.why-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--color-border-light);
  transition: all var(--duration-normal) var(--ease-default);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary-200);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  background: var(--color-secondary-50);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  transition: all var(--duration-normal) var(--ease-bounce);
}

.why-card:hover .why-icon {
  background: var(--color-secondary);
  color: white;
  transform: scale(1.1);
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-card h4 {
  margin-bottom: var(--space-3);
}

.why-card p {
  font-size: var(--text-body-sm);
}

/* ============================================
   RESULTS SECTION
   ============================================ */

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

.results-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-16);
}

.result-counter {
  text-align: center;
  padding: var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.result-counter-number {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: var(--weight-extrabold);
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
}

.result-counter-label {
  font-size: var(--text-body);
  color: var(--color-text-secondary);
  font-weight: var(--weight-medium);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.result-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-default);
  position: relative;
}

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

.result-card-photo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  margin: var(--space-6) auto var(--space-4);
  background: var(--color-secondary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-h3);
  color: var(--color-secondary);
  border: 3px solid var(--color-surface);
  box-shadow: var(--shadow-md);
}

.result-card-name {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-body-lg);
  margin-bottom: var(--space-1);
}

.result-card-school {
  font-size: var(--text-body-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.result-card-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-4) var(--space-6);
}

.result-stat {
  text-align: center;
}

.result-stat-value {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--color-secondary);
  font-size: var(--text-body-lg);
}

.result-stat-label {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
}

.result-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
}

/* ============================================
   FACULTY SECTION
   ============================================ */

.faculty-section {
  background: var(--color-bg);
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.faculty-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-default);
}

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

.faculty-photo {
  width: 100%;
  height: 240px;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-h1);
  color: rgba(255,255,255,0.3);
  position: relative;
}

.faculty-card-body {
  padding: var(--space-6);
}

.faculty-name {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-body-lg);
  margin-bottom: var(--space-1);
}

.faculty-qualification {
  font-size: var(--text-body-sm);
  color: var(--color-secondary);
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-2);
}

.faculty-meta {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.faculty-meta-item {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.faculty-social {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-light);
}

.faculty-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--duration-normal) var(--ease-default);
}

.faculty-social a:hover {
  background: var(--color-secondary);
  color: white;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

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

.gallery-grid {
  columns: 3;
  column-gap: var(--space-4);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--duration-slow) var(--ease-default);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-default);
  color: white;
}

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

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

.gallery-overlay svg {
  width: 32px;
  height: 32px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 64px;
  color: var(--color-secondary-200);
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  line-height: 1;
}

.testimonial-stars {
  margin-bottom: var(--space-4);
}

.testimonial-text {
  font-size: var(--text-body-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-secondary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--color-secondary);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

.testimonial-role {
  font-size: var(--text-body-sm);
  color: var(--color-text-muted);
}

/* Testimonial carousel: 3 visible */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

/* ============================================
   OUR PROCESS / JOURNEY
   ============================================ */

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--color-secondary-200);
  z-index: 0;
}

.process-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  background: var(--color-surface);
  border: 3px solid var(--color-secondary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--color-secondary);
  font-size: var(--text-body-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-default);
}

.process-card:hover .process-number {
  background: var(--color-secondary);
  color: white;
  transform: scale(1.1);
}

.process-icon {
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
}

.process-icon svg {
  width: 24px;
  height: 24px;
  margin: 0 auto;
}

.process-card h4 {
  font-size: var(--text-body);
  margin-bottom: var(--space-2);
}

.process-card p {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
}

/* ============================================
   SCHOLARSHIP SECTION
   ============================================ */

.scholarship-section {
  background: var(--gradient-scholarship);
  color: white;
  position: relative;
  overflow: hidden;
}

.scholarship-section::before,
.scholarship-section::after {
  content: '';
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.1;
  background: white;
}

.scholarship-section::before {
  width: 400px; height: 400px;
  top: -200px; right: -100px;
}

.scholarship-section::after {
  width: 250px; height: 250px;
  bottom: -100px; left: -50px;
}

.scholarship-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.scholarship-content h2 {
  color: white;
  margin-bottom: var(--space-4);
}

.scholarship-content > div > p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-body-lg);
  margin-bottom: var(--space-6);
}

.scholarship-list {
  display: grid;
  gap: var(--space-3);
}

.scholarship-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-body);
  color: rgba(255,255,255,0.9);
}

.scholarship-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.scholarship-benefits {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.scholarship-benefits h3 {
  color: white;
  margin-bottom: var(--space-6);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.benefit-text h4 {
  color: white;
  font-size: var(--text-body);
  margin-bottom: var(--space-1);
}

.benefit-text p {
  font-size: var(--text-body-sm);
  color: rgba(255,255,255,0.7);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  background: var(--color-bg);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--gradient-cta);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: var(--radius-full);
  opacity: 0.08;
  background: white;
}

.cta-section::before {
  width: 500px; height: 500px;
  top: -250px; left: -100px;
}

.cta-section::after {
  width: 300px; height: 300px;
  bottom: -150px; right: -50px;
}

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

.cta-content h2 {
  color: white;
  margin-bottom: var(--space-4);
}

.cta-content > p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-body-lg);
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
}

.cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.contact-form-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

.contact-form-card h3 {
  margin-bottom: var(--space-2);
}

.contact-form-card > p {
  margin-bottom: var(--space-8);
}

.contact-info h3 {
  margin-bottom: var(--space-6);
}

.contact-info-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--color-secondary-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-label {
  font-size: var(--text-body-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.contact-info-value {
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

.contact-info-value a {
  color: var(--color-secondary);
  transition: color var(--duration-fast) var(--ease-default);
}

.contact-info-value a:hover {
  color: var(--color-secondary-dark);
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 280px;
  margin-top: var(--space-8);
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-10);
}

.form-success.active {
  display: block;
  animation: fadeInUp 0.5s var(--ease-out);
}

.form-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  animation: successPop 0.6s var(--ease-spring);
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.form-success h3 {
  color: var(--color-success);
  margin-bottom: var(--space-3);
}

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

.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-20);
  padding-bottom: var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-about .logo {
  margin-bottom: var(--space-4);
}

.footer-about p {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-body-sm);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--duration-normal) var(--ease-default);
}

.footer-social a:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-2px);
}

.footer h4 {
  color: white;
  font-size: var(--text-body);
  margin-bottom: var(--space-5);
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  font-size: var(--text-body-sm);
  color: rgba(255,255,255,0.6);
  transition: all var(--duration-fast) var(--ease-default);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-body-sm);
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-newsletter {
  margin-top: var(--space-6);
}

.newsletter-form {
  display: flex;
  gap: var(--space-2);
}

.newsletter-input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  color: white;
  font-size: var(--text-body-sm);
  outline: none;
  transition: all var(--duration-normal) var(--ease-default);
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-input:focus {
  border-color: var(--color-secondary);
  background: rgba(255,255,255,0.12);
}

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

.footer-bottom p {
  font-size: var(--text-body-sm);
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: var(--color-secondary-light);
}

/* ============================================
   ANIMATION HELPER: fadeInUp
   ============================================ */

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