/* ════════════════════════════════════════════════════
   C3S BUSINESS SCHOOL – ADMISSION APPLICATION WEBSITE
   Premium Stylesheet v1.0
   ════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  /* Brand Colors */
  --green-900:  #0a2e1a;
  --green-800:  #0f3d22;
  --green-700:  #155c30;
  --green-600:  #1a7a3e;
  --green-500:  #1e9448;   /* Primary Deep Green */
  --green-400:  #28b55a;
  --green-300:  #4fd97d;
  --green-100:  #d0f5de;
  --green-50:   #edfaf3;

  --gold-500:   #c9a227;
  --gold-400:   #dbb842;
  --gold-300:   #f0d065;

  /* Neutrals */
  --white:      #ffffff;
  --off-white:  #f8fafb;
  --gray-50:    #f3f5f7;
  --gray-100:   #e8edf2;
  --gray-200:   #d1dbe5;
  --gray-300:   #b0bfcc;
  --gray-400:   #8697aa;
  --gray-500:   #607080;
  --gray-600:   #445260;
  --gray-700:   #2e3d4a;
  --gray-800:   #1e2a34;
  --gray-900:   #111820;

  /* Semantic */
  --primary:    var(--green-500);
  --primary-dk: var(--green-700);
  --primary-lt: var(--green-300);
  --accent:     var(--gold-500);
  --text:       var(--gray-800);
  --text-muted: var(--gray-500);
  --bg:         var(--white);
  --bg-alt:     var(--off-white);
  --border:     var(--gray-200);
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.07);
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.12);
  --shadow-xl:  0 24px 80px rgba(0,0,0,0.16);

  /* Typography */
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --container:  1200px;
  --nav-h:      72px;

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:   180ms;
  --dur:        300ms;
  --dur-slow:   600ms;

  /* Border Radius */
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 999px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
::selection { background: var(--green-200, #a8e6be); color: var(--green-900); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--green-400); border-radius: 3px; }

/* ── UTILITY ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.mt-20 { margin-top: 20px; }

/* ── ANIMATION – AOS-STYLE ── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-aos-delay="100"] { transition-delay: 100ms; }
[data-aos][data-aos-delay="200"] { transition-delay: 200ms; }
[data-aos][data-aos-delay="300"] { transition-delay: 300ms; }
[data-aos][data-aos-delay="400"] { transition-delay: 400ms; }
[data-aos][data-aos-delay="500"] { transition-delay: 500ms; }

[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate  { transform: translateX(0); }

/* ════════════ BUTTONS ════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,148,72,0.35);
  border: 2px solid transparent;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  box-shadow: 0 6px 28px rgba(30,148,72,0.5);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--green-500);
  color: var(--green-600);
}
.btn-outline:hover {
  background: var(--green-50);
  border-color: var(--green-600);
  color: var(--green-700);
}
.btn-lg { padding: 15px 32px; font-size: 1.0625rem; }

/* ════════════ NAVBAR ════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--green-500), var(--green-800));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(30,148,72,0.3);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-size: 1.3rem; font-weight: 800; color: var(--green-700); letter-spacing: -0.5px; }
.logo-sub  { font-size: 0.65rem; font-weight: 500; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; }

.navbar.scrolled .logo-main { color: var(--green-800); }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-full);
  transition: all var(--dur-fast) var(--ease);
}
.navbar.scrolled .nav-link { color: var(--gray-700); }
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  background: var(--green-50);
  color: var(--green-700);
}
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.navbar.scrolled .hamburger span { background: var(--green-700); }

/* ── Mobile Menu ── */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1200;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.mobile-overlay.open { display: block; opacity: 1; }
.mobile-menu {
  position: fixed;
  top: 0; right: -300px;
  width: 280px; height: 100%;
  background: var(--white);
  z-index: 1300;
  padding: 80px 24px 40px;
  display: flex; flex-direction: column; gap: 8px;
  transition: right var(--dur) var(--ease);
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
}
.mobile-menu.open { right: 0; }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 1.3rem; color: var(--gray-600);
}
.mobile-menu li a, .mob-link {
  display: block;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: all var(--dur-fast) var(--ease);
}
.mob-link:hover { background: var(--green-50); color: var(--green-700); }
.mob-cta { margin-top: 20px; text-align: center; }

/* ════════════ HERO ════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.65)),
    url('assets/hero.jpg') center/cover no-repeat;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(30,148,72,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Particles */
.hero-particles {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-300);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero-badge i { color: var(--gold-400); }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 28px;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat-plus { font-size: 1.4rem; font-weight: 700; color: var(--gold-300); vertical-align: super; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ════════════ SECTION SHARED ════════════ */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-500);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title .highlight {
  color: var(--green-600);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 52px; }
.section-body { color: var(--gray-600); line-height: 1.75; margin-bottom: 14px; }

/* ════════════ ABOUT ════════════ */
.about-strip {
  padding: 100px 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-image-frame { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  background: var(--green-100);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}
.about-badge-float i { font-size: 2rem; color: var(--gold-500); }
.about-badge-float strong { display: block; font-size: 1rem; color: var(--gray-900); }
.about-badge-float span  { font-size: 0.8rem; color: var(--gray-500); }

.about-text-col { padding-left: 12px; }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.feature-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--gray-700);
}
.feature-list li i { color: var(--green-500); font-size: 1rem; flex-shrink: 0; }

/* ════════════ PROGRAMS ════════════ */
.programs-section {
  padding: 100px 0;
  background: var(--bg-alt);
}
.programs-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  border: 2px solid var(--gray-200);
  background: var(--white);
  transition: all var(--dur-fast) var(--ease);
}
.tab-btn:hover { border-color: var(--green-400); color: var(--green-600); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(30,148,72,0.35);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: fadeInCard 0.4s ease both;
}
@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--green-500), var(--green-700));
  transition: width var(--dur) var(--ease);
}
.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}
.program-card:hover::before { width: 6px; }
.program-level {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-50);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.program-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.program-card p  { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.program-meta {
  display: flex; gap: 16px; font-size: 0.8rem; color: var(--gray-400);
}
.program-meta span { display: flex; align-items: center; gap: 4px; }
.program-meta i { color: var(--green-400); }
.program-apply-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-600);
  transition: gap var(--dur-fast) var(--ease);
}
.program-apply-link:hover { gap: 10px; }

/* ════════════ WHY C3S ════════════ */
.why-section {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--green-900), var(--green-800));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,148,72,0.2), transparent 70%);
  pointer-events: none;
}
.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.65); }
.why-section .section-eyebrow { color: var(--gold-400); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--dur) var(--ease);
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(30,148,72,0.4);
}
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.why-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ════════════ TESTIMONIALS ════════════ */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg);
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.testimonial-quote { font-size: 2rem; color: var(--green-200); margin-bottom: 16px; }
.testimonial-card p { color: var(--gray-600); font-style: italic; line-height: 1.75; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--gray-900); }
.testimonial-author span  { font-size: 0.8rem; color: var(--gray-400); }

/* ════════════ APPLICATION / CTA ════════════ */
.apply-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
}
.cta-box {
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}
.cta-box h2 { font-family: var(--font-serif); font-size: 2.2rem; color: var(--green-900); margin-bottom: 16px; }
.cta-box p { color: var(--gray-600); font-size: 1.1rem; }

.apply-section {
  padding: 100px 0 80px;
  background: var(--bg-alt);
  position: relative;
}
.apply-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green-500), var(--gold-500), var(--green-700));
}

/* Progress Steps */
.form-progress-wrapper { margin-bottom: 48px; }
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0;
}
.progress-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative;
  cursor: default;
}
.step-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gray-400);
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.progress-step span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-align: center;
  max-width: 80px;
  transition: color var(--dur) var(--ease);
}
.progress-step.active .step-circle {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(30,148,72,0.4);
  transform: scale(1.05);
}
.progress-step.active span { color: var(--green-700); }
.progress-step.completed .step-circle {
  background: var(--green-100);
  border-color: var(--green-400);
  color: var(--green-600);
}
.progress-step.completed span { color: var(--green-600); }
.progress-line {
  flex: 1;
  height: 2px;
  background: var(--gray-200);
  min-width: 40px;
  max-width: 120px;
  margin-bottom: 30px;
  transition: background var(--dur) var(--ease);
}
.progress-line.completed { background: var(--green-400); }

/* Form container */
.application-form {
  max-width: 860px;
  margin: 0 auto;
}
.form-section {
  display: none;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  animation: slideIn 0.4s var(--ease);
}
.form-section.active { display: block; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--green-50);
}
.form-section-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(30,148,72,0.3);
  flex-shrink: 0;
}
.form-section-header h3 { font-size: 1.35rem; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.form-section-header p  { font-size: 0.9rem; color: var(--gray-400); }

/* Form Grid */
.form-grid { display: grid; gap: 20px; margin-bottom: 20px; }
.two-col { grid-template-columns: 1fr 1fr; }

/* Form Group */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--gray-700);
}
.required { color: #e05353; margin-left: 2px; }
.optional  { color: var(--gray-400); font-weight: 400; font-size: 0.8rem; }

/* Input Wrapper */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 14px;
  color: var(--gray-400);
  font-size: 0.95rem;
  pointer-events: none;
  transition: color var(--dur-fast) var(--ease);
}
.input-wrapper:focus-within .input-icon { color: var(--green-500); }

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 13px 14px 13px 42px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.94rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  appearance: none;
}
.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder { color: var(--gray-300); }
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(30,148,72,0.1);
}
.input-wrapper input:focus ~ .input-icon { color: var(--green-500); }
.input-wrapper input.readonly-input {
  background: var(--gray-50);
  color: var(--gray-500);
  cursor: not-allowed;
}

/* Phone Input */
.phone-input-wrapper {
  gap: 0;
}
.phone-flag {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--gray-50);
  padding: 0 8px;
  flex-shrink: 0;
  height: 50px;
}
.phone-flag select {
  border: none;
  background: transparent;
  padding: 8px 4px;
  font-size: 0.85rem;
  color: var(--gray-700);
  appearance: none;
  cursor: pointer;
  min-width: 80px;
}
.phone-flag select:focus { outline: none; }
.phone-flag span { margin-right: 4px; }
.phone-input-wrapper input {
  border-radius: 0 var(--radius) var(--radius) 0;
  padding-left: 14px;
}
.phone-input-wrapper .input-icon { display: none; }
.phone-input-wrapper:focus-within .phone-flag { border-color: var(--green-500); }
.phone-input-wrapper:focus-within input { border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(30,148,72,0.1); }

/* Select Wrapper */
.select-wrapper select { padding-right: 36px; cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 14px;
  color: var(--gray-400);
  font-size: 0.75rem;
  pointer-events: none;
}

/* Textarea */
.textarea-wrapper { position: relative; }
.textarea-wrapper textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.94rem;
  color: var(--gray-900);
  resize: vertical;
  min-height: 120px;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.textarea-wrapper textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(30,148,72,0.1);
}
.char-counter {
  text-align: right;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 4px;
}

/* Field Error */
.field-error {
  font-size: 0.78rem;
  color: #e05353;
  display: none;
}
.field-error.visible { display: block; }
.input-wrapper.has-error input,
.input-wrapper.has-error select { border-color: #e05353; }

/* Field Hint */
.field-hint {
  font-size: 0.78rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.field-hint i { color: var(--green-400); }

/* Radio Group */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.radio-option:hover { border-color: var(--green-400); color: var(--green-700); background: var(--green-50); }
.radio-option input { display: none; }
.radio-option input:checked + .radio-custom + * { color: var(--green-700); }
.radio-option:has(input:checked) {
  border-color: var(--green-500);
  background: var(--green-50);
  color: var(--green-700);
}
.radio-custom {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  transition: all var(--dur-fast) var(--ease);
  flex-shrink: 0;
  position: relative;
}
.radio-option:has(input:checked) .radio-custom {
  border-color: var(--green-500);
  background: var(--green-500);
  box-shadow: inset 0 0 0 3px var(--white);
}

/* Info Banner */
.info-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.info-banner i { color: var(--green-500); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.info-banner p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

/* Documents Grid */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.doc-card {
  cursor: pointer;
  display: block;
}
.doc-card input { display: none; }
.doc-card-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: all var(--dur-fast) var(--ease);
}
.doc-card:hover .doc-card-inner {
  border-color: var(--green-400);
  background: var(--green-50);
}
.doc-card.checked .doc-card-inner {
  border-color: var(--green-500);
  background: var(--green-50);
  box-shadow: 0 0 0 3px rgba(30,148,72,0.1);
}
.doc-icon {
  width: 42px; height: 42px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: all var(--dur-fast) var(--ease);
}
.doc-card.checked .doc-icon {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  box-shadow: 0 4px 10px rgba(30,148,72,0.3);
}
.doc-info { flex: 1; }
.doc-info strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--gray-800); margin-bottom: 2px; }
.doc-info span   { font-size: 0.78rem; color: var(--gray-400); }
.doc-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: transparent;
  flex-shrink: 0;
  transition: all var(--dur-fast) var(--ease);
}
.doc-card.checked .doc-check {
  background: var(--green-500);
  border-color: var(--green-500);
  color: var(--white);
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--gray-700);
  cursor: pointer;
  line-height: 1.6;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: background var(--dur-fast) var(--ease);
}
.checkbox-label:hover { background: var(--gray-50); }
.checkbox-label input { display: none; }
.checkbox-custom {
  width: 20px; height: 20px;
  border-radius: 5px;
  border: 2px solid var(--gray-300);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast) var(--ease);
  position: relative;
}
.checkbox-label input:checked ~ .checkbox-custom {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border-color: transparent;
}
.checkbox-label input:checked ~ .checkbox-custom::after {
  content: '';
  width: 5px; height: 9px;
  border: 2px solid var(--white);
  border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  display: block;
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.form-actions-submit { flex-wrap: wrap; gap: 12px; }

/* Review Grid */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.review-block {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
}
.review-block h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-600);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.review-row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px solid var(--gray-200); }
.review-row:last-child { border-bottom: none; }
.review-row .lbl { font-size: 0.8rem; color: var(--gray-500); flex-shrink: 0; }
.review-row .val { font-size: 0.85rem; color: var(--gray-800); font-weight: 500; text-align: right; }

/* Submit Btn */
.btn-submit { min-width: 220px; justify-content: center; }

/* ── Success Screen ── */
.success-screen {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.success-animation {
  margin-bottom: 30px;
}
.success-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(30,148,72,0.4);
  animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@keyframes successPop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.success-screen h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--gray-900); margin-bottom: 16px; }
.success-screen p  { color: var(--gray-500); margin-bottom: 20px; line-height: 1.7; }
.success-ref {
  display: inline-block;
  padding: 10px 24px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-full);
  color: var(--green-700);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 16px 0 32px;
}
.next-steps-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  text-align: left; margin: 16px 0 32px;
}
.next-step {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--gray-50); border-radius: var(--radius); padding: 16px;
}
.next-step-num {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.next-step p { font-size: 0.85rem; color: var(--gray-600); }
.success-steps h4 { font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }

/* ════════════ CONTACT ════════════ */
.contact-section {
  padding: 100px 0;
  background: var(--bg-alt);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(30,148,72,0.35);
}
.contact-card h4 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.contact-card p  { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }
.contact-card a  { color: var(--green-600); font-weight: 500; }
.contact-card a:hover { color: var(--green-800); }

/* ════════════ FOOTER ════════════ */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.7); }
.footer-top { padding: 64px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-main { color: var(--gold-400); }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--dur-fast) var(--ease);
}
.social-links a:hover { background: var(--green-500); color: var(--white); transform: translateY(-2px); }
.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur-fast) var(--ease);
}
.footer-col ul li a:hover { color: var(--gold-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ════════════ SCROLL TO TOP ════════════ */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(30,148,72,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--dur) var(--ease);
  z-index: 900;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(30,148,72,0.5); }

/* ════════════ INFO TICKER ════════════ */
.info-ticker {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: tickerScroll 30s linear infinite;
  padding: 10px 0;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0 20px;
  letter-spacing: 0.02em;
}
.ticker-item i {
  color: var(--gold-400);
  font-size: 0.9rem;
}
.ticker-item a {
  color: var(--gold-300);
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.ticker-item a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--gold-400);
  transition: width var(--dur) var(--ease);
}
.ticker-item a:hover {
  color: var(--gold-400);
}
.ticker-item a:hover::after {
  width: 100%;
}
.ticker-separator {
  color: var(--gold-500);
  font-size: 0.7rem;
  padding: 0 12px;
  opacity: 0.6;
}

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

/* ════════════ WHATSAPP HEADER LINK ════════════ */
.header-top-row {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.whatsapp-header-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px 12px 14px;
  background: rgba(37, 211, 102, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  animation: linkGlow 3s ease-in-out infinite;
  position: relative;
}
.whatsapp-header-link::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.4), rgba(37, 211, 102, 0), rgba(37, 211, 102, 0.4));
  background-size: 200% 200%;
  animation: borderGlow 3s ease-in-out infinite;
  z-index: -1;
  filter: blur(6px);
}
.whatsapp-header-link:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: rgba(37, 211, 102, 0.6);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 0 40px rgba(37, 211, 102, 0.15);
}
.whatsapp-header-icon {
  width: 48px;
  height: 48px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.3);
  flex-shrink: 0;
  animation: iconPulse 2s ease-in-out infinite;
}
.whatsapp-header-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.whatsapp-header-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
}
.whatsapp-header-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 0 12px rgba(37, 211, 102, 0.4);
}

@keyframes iconPulse {
  0%   { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.3); transform: scale(1); }
  50%  { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.8), 0 0 40px rgba(37, 211, 102, 0.4), 0 0 0 8px rgba(37, 211, 102, 0.1); transform: scale(1.08); }
  100% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.3); transform: scale(1); }
}

@keyframes linkGlow {
  0%   { box-shadow: 0 0 8px rgba(37, 211, 102, 0.1); }
  50%  { box-shadow: 0 0 24px rgba(37, 211, 102, 0.3), 0 0 48px rgba(37, 211, 102, 0.1); }
  100% { box-shadow: 0 0 8px rgba(37, 211, 102, 0.1); }
}

@keyframes borderGlow {
  0%   { background-position: 0% 50%; opacity: 0.5; }
  50%  { background-position: 100% 50%; opacity: 1; }
  100% { background-position: 0% 50%; opacity: 0.5; }
}

/* ════════════ WHATSAPP FLOAT ════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  text-decoration: none;
  transition: transform var(--dur) var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-5px);
}
.whatsapp-glowing-bg {
  position: absolute;
  top: 0;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
  animation: glowPulse 2s infinite;
}
.whatsapp-icon {
  font-size: 35px;
  color: #fff;
  background: #25D366;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
}
.whatsapp-text {
  background: rgba(255, 255, 255, 0.95);
  color: var(--gray-800);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 10px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  border: 1px solid var(--gray-100);
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-col { max-width: 560px; margin: 0 auto; }
  .about-text-col { padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero {
    /* Adjust position to crop out the embedded 'business school study global' text on mobile */
    background-position: 85% center, 85% center; 
  }
  .hero-stats { padding: 16px 20px; gap: 0; }
  .stat-item { padding: 8px 14px; }
  .stat-number { font-size: 1.6rem; }
  .stat-divider { height: 30px; }

  /* Form */
  .form-section { padding: 28px 20px; }
  .form-grid.two-col { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .next-steps-grid { grid-template-columns: 1fr; }
  .progress-steps { gap: 4px; }
  .progress-step span { display: none; }
  .progress-line { min-width: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-content { padding: 40px 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat-divider { width: 60px; height: 1px; }
  .why-grid, .testimonials-track { grid-template-columns: 1fr; }
  .documents-grid { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; }
  .form-actions { flex-direction: column; gap: 12px; }
  .form-actions > * { width: 100%; justify-content: center; }
  .scroll-top { bottom: 20px; right: 16px; }
  .whatsapp-float { bottom: 80px; right: 16px; }
  .whatsapp-icon { width: 50px; height: 50px; font-size: 30px; }
  .whatsapp-glowing-bg { width: 50px; height: 50px; }
}
