/* ===========================
   GLOBLEARN EDUCATION – CSS
   =========================== */

:root {
  --red: #c0392b;
  --red-bright: #e74c3c;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1c1c1c;
  --mid: #2a2a2a;
  --light: #f5f0eb;
  --light2: #ede8e2;
  --white: #ffffff;
  --text: #c8c0b8;
  --text-dim: #7a7570;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-cn: 'Noto Serif SC', serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease2: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 12px; height: 12px;
  background: var(--red-bright);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transition: transform 0.1s;
  transform: translate(-50%, -50%);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(192,57,43,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: transform 0.25s var(--ease), opacity 0.3s;
  transform: translate(-50%, -50%);
}
.cursor.hover { transform: translate(-50%,-50%) scale(2.5); background: var(--gold); }
.cursor-follower.hover { opacity: 0; }

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-char {
  font-family: var(--font-cn);
  font-size: clamp(5rem, 12vw, 9rem);
  color: var(--red);
  animation: pulse-glow 1.5s ease-in-out infinite;
  line-height: 1;
}
.loader-text {
  font-family: var(--font-display);
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin: 1rem 0 1.5rem;
}
.loader-bar {
  width: 220px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden; margin: 0 auto;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s var(--ease);
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 30px rgba(192,57,43,0.3); }
  50% { text-shadow: 0 0 60px rgba(192,57,43,0.7), 0 0 100px rgba(192,57,43,0.3); }
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 3rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
}
.logo-gl {
  background: var(--red);
  color: white;
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.logo-text { font-size: 1.15rem; font-weight: 700; letter-spacing: 0.03em; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a:hover::after { color: white; width: 100%; }
.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 0.5rem 1.4rem;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--red-bright) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--light);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu li { overflow: hidden; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--light);
  display: block; padding: 0.5rem 0;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 680px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s var(--ease);
  transform: scale(1.05);
  animation: slow-zoom 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }

@keyframes slow-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,13,13,0.85) 0%,
    rgba(13,13,13,0.4) 50%,
    rgba(192,57,43,0.2) 100%
  );
}

.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; letter-spacing: 0.15em;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  animation: fadeInDown 1s var(--ease) 1.5s both;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--red-bright);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:0.2; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.title-line { display: block; }
.line-1 { animation: fadeInUp 1s var(--ease) 1.8s both; }
.line-2 { animation: fadeInUp 1s var(--ease) 2s both; }
.hero-title em { color: var(--red-bright); font-style: italic; }

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text);
  max-width: 600px; margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 1s var(--ease) 2.2s both;
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease) 2.4s both;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease) 2.6s both;
}
.stat { text-align: center; }
.stat-n {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: white;
  display: inline;
}
.stat-plus { font-size: 1.5rem; color: var(--red); font-weight: 700; }
.stat-l { display: block; font-size: 0.75rem; letter-spacing: 0.1em; color: var(--text-dim); margin-top: 0.2rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2;
  animation: fadeIn 1s 3s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--red));
  animation: grow-line 1.5s ease-in-out infinite;
}
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--text-dim); }

@keyframes grow-line {
  0% { height: 0; opacity: 0; }
  50% { height: 50px; opacity: 1; }
  100% { height: 50px; opacity: 0; }
}

.hero-dots {
  position: absolute; right: 2.5rem; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 0.8rem;
  z-index: 2;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--red-bright); transform: scale(1.3); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--red);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: 2px solid var(--red);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192,57,43,0.4);
}
.btn-primary.full-w { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 500; font-size: 0.9rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--red);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
}
.marquee-track .sep { color: rgba(255,255,255,0.5); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.2em; font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  border: 1px solid rgba(192,57,43,0.4);
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.section-tag.light { color: var(--gold); border-color: rgba(212,160,23,0.4); }
.section-header h2, h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
}
.section-header p {
  margin-top: 1rem;
  color: var(--text);
  max-width: 500px; margin: 1rem auto 0;
  line-height: 1.7;
}
h2 em { color: var(--red); font-style: italic; }
.light-h2 { color: var(--white); }

/* ── ABOUT ── */
.about { padding: 8rem 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.about-visual {
  position: relative;
  height: 500px;
}
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 80%; height: 80%;
  border-radius: 4px;
  overflow: hidden;
}
.about-img-float {
  position: absolute; bottom: 0; right: 0;
  width: 50%; height: 55%;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid var(--dark);
}
.img-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--red);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
}
.about-floater {
  position: absolute; top: 10%; right: -2rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
}
.floater-num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 900;
  line-height: 1;
}
.floater-text { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; margin-top: 0.3rem; }

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

.about-text .section-tag { margin-bottom: 0.8rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text .lead {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--light2); margin-bottom: 1rem;
}
.about-text p { color: var(--text); line-height: 1.8; margin-bottom: 2rem; }
.about-pillars { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.pillar {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 1.2rem; border-radius: 6px;
  transition: border-color 0.3s, transform 0.3s;
}
.pillar:hover { border-color: rgba(192,57,43,0.3); transform: translateX(4px); }
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; }
.pillar strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; color: var(--white); }
.pillar p { font-size: 0.8rem; color: var(--text-dim); margin: 0; }

/* ── CITIES ── */
.cities { padding: 8rem 0; background: var(--dark2); }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.city-card {
  border-radius: 8px; overflow: hidden;
  position: relative;
  background: var(--dark3);
  transition: transform 0.4s var(--ease);
  cursor: pointer;
}
.city-card:hover { transform: translateY(-6px); }
.city-img {
  height: 220px; position: relative; overflow: hidden;
}
.city-img img { transition: transform 0.6s var(--ease); }
.city-card:hover .city-img img { transform: scale(1.08); }
.city-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.city-info { padding: 1.5rem; }
.city-char {
  font-family: var(--font-cn);
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.city-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.city-info p { font-size: 0.82rem; color: var(--text); line-height: 1.6; margin-bottom: 1rem; }
.city-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.city-tags span {
  font-size: 0.7rem;
  background: rgba(192,57,43,0.15);
  color: var(--red-bright);
  border: 1px solid rgba(192,57,43,0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.03em;
}

/* ── PROGRAMS ── */
.programs { padding: 8rem 0; position: relative; overflow: hidden; }
.programs-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a08 50%, #0a0a0a 100%);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.program-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 2rem;
  position: relative;
  transition: border-color 0.3s, background 0.3s, transform 0.4s var(--ease);
}
.program-card:hover {
  border-color: rgba(192,57,43,0.4);
  background: rgba(192,57,43,0.05);
  transform: translateY(-4px);
}
.prog-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.prog-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.program-card p {
  font-size: 0.85rem; color: var(--text);
  line-height: 1.7; margin-bottom: 1.2rem;
}
.program-card ul { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
.program-card li {
  font-size: 0.8rem; color: var(--text);
  display: flex; align-items: center; gap: 0.5rem;
}
.program-card li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.prog-link {
  font-size: 0.85rem; font-weight: 600;
  color: var(--red);
  letter-spacing: 0.05em;
  transition: gap 0.2s;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.prog-link:hover { color: var(--red-bright); gap: 0.6rem; }

/* ── SCHOLARSHIP BANNER ── */
.scholarship-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
  padding: 2.5rem 0;
}
.banner-inner {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.banner-icon { font-size: 3rem; flex-shrink: 0; }
.banner-text h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--dark);
  margin-bottom: 0.3rem;
}
.banner-text p { font-size: 0.85rem; color: rgba(13,13,13,0.7); }
.banner-text { flex: 1; min-width: 200px; }

/* ── PROCESS ── */
.process { padding: 8rem 0; }
.process-timeline {
  position: relative;
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.process-line {
  position: absolute; left: 2.5rem; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--red), transparent);
}
.process-step {
  display: flex; gap: 2rem; padding: 0 0 3rem 0;
  position: relative;
}
.step-num {
  width: 5rem; height: 5rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 900;
  color: var(--red);
  background: var(--dark3);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: 50%;
  position: relative; z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}
.process-step:hover .step-num {
  background: var(--red);
  color: white;
  border-color: var(--red);
}
.step-content { padding-top: 0.8rem; }
.step-content h4 {
  font-family: var(--font-display);
  font-size: 1.1rem; color: var(--white);
  margin-bottom: 0.5rem;
}
.step-content p { font-size: 0.88rem; color: var(--text); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 8rem 0; background: var(--dark2); }
.testimonials-carousel { position: relative; overflow: hidden; }
.testi-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.6s var(--ease);
}
.testi-card {
  min-width: calc(33.333% - 1rem);
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  flex-shrink: 0;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 4rem; line-height: 1;
  color: var(--red);
  opacity: 0.4;
  margin-bottom: 0.5rem;
}
.testi-card p {
  font-size: 0.9rem; color: var(--text); line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: white;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--white); }
.testi-author span { font-size: 0.75rem; color: var(--text-dim); }
.testi-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: 2rem;
}
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.2rem; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.testi-btn:hover { background: var(--red); border-color: var(--red); }
.testi-dots { display: flex; gap: 0.5rem; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer; border: none;
  transition: background 0.2s;
}
.testi-dot.active { background: var(--red); }

/* ── NUMBERS ── */
.numbers { padding: 6rem 0; position: relative; overflow: hidden; }
.numbers-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(192,57,43,0.15) 0%, transparent 70%);
}
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; position: relative;
}
.number-item {
  text-align: center; padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; background: var(--dark3);
  transition: border-color 0.3s, transform 0.3s;
}
.number-item:hover { border-color: rgba(192,57,43,0.3); transform: translateY(-4px); }
.num-icon { font-size: 2rem; margin-bottom: 1rem; }
.num-val {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 900;
  color: var(--white);
  display: inline;
}
.num-suffix {
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--red);
  font-weight: 900; display: inline;
}
.num-label {
  font-size: 0.8rem; color: var(--text-dim);
  letter-spacing: 0.05em; margin-top: 0.5rem;
}

/* ── CONTACT ── */
.contact { padding: 8rem 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 6rem; align-items: start;
}
.contact-info .section-tag { margin-bottom: 0.8rem; }
.contact-info h2 { margin-bottom: 1.2rem; line-height: 1.15; }
.contact-info > p { color: var(--text); line-height: 1.7; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.88rem;
}
.ci-icon { font-size: 1.2rem; flex-shrink: 0; }
.contact-item a { color: var(--text); transition: color 0.2s; }
.contact-item a:hover { color: var(--red-bright); }
.contact-item span { color: var(--text); }
.social-links { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.social-btn {
  font-size: 0.8rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 1rem; border-radius: 100px;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: var(--red); color: var(--red); }

.contact-form-wrap {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 2.5rem;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; color: var(--white);
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.75rem; letter-spacing: 0.08em; color: var(--text-dim); font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--light);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: rgba(192,57,43,0.05);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none; margin-top: 1rem;
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  color: #27ae60;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.88rem;
  text-align: center;
}
.form-success.show { display: block; animation: fadeInUp 0.4s var(--ease); }
.btn-text, .btn-icon { display: inline-block; }

/* ── FOOTER ── */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: flex; gap: 4rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; max-width: 260px; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.fl-col { display: flex; flex-direction: column; gap: 0.6rem; }
.fl-col h5 {
  font-size: 0.75rem; letter-spacing: 0.15em;
  color: var(--white); font-weight: 700;
  text-transform: uppercase; margin-bottom: 0.3rem;
}
.fl-col a { font-size: 0.85rem; color: var(--text-dim); transition: color 0.2s; }
.fl-col a:hover { color: var(--red-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: var(--text-dim);
  flex-wrap: wrap; gap: 0.5rem;
}

/* ── SCROLL REVEAL ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up.in, .reveal-left.in, .reveal-right.in {
  opacity: 1; transform: translate(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ── PARTICLES ── */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { gap: 3rem; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testi-card { min-width: calc(50% - 0.75rem); }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.7rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 320px; }
  .about-floater { right: 0; top: 5%; }
  .cities-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card { min-width: calc(100% - 0px); }
  .process-line { left: 2rem; }
  .step-num { width: 4rem; height: 4rem; }
  .hero-dots { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .nav { padding: 1rem 1.5rem; }
  .banner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .numbers-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}
