/* ============================================================
   NUMBER CRUNCHER — style.css
   Colors: Gold (#D4A017, #F0C040), Black (#0D0D0D), White (#FAFAFA)
   Fonts: Playfair Display (headings) + Poppins (body)
============================================================ */

:root {
  --gold: #C8960C;
  --gold-light: #F0C040;
  --gold-pale: #FDF3D0;
  --black: #0D0D0D;
  --dark: #1A1A1A;
  --gray-dark: #333;
  --gray: #666;
  --gray-light: #999;
  --border: #E8E0CC;
  --bg: #FAFAFA;
  --bg-warm: #FFFDF5;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(200,150,12,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.10);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--gray-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── UTILITY ── */
.gold { color: var(--gold); }
.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-container.narrow { max-width: 800px; }
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before, .section-label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 40px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(200,150,12,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,150,12,0.5);
}
.btn-primary.full-width { width: 100%; text-align: center; border: none; font-size: 1rem; padding: 16px; }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 30px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-demo {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 22px;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-demo:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,150,12,0.4); }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,250,250,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,150,12,0.15);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  gap: 60px;
}
.hero-bg-pattern {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 50%, rgba(200,150,12,0.06) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(240,192,64,0.05) 0%, transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(200,150,12,0.04) 0%, transparent 40%);
}
.floating-symbols {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.floating-symbols span {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 5rem);
  color: rgba(200,150,12,0.06);
  font-weight: 900;
  animation: floatSymbol linear infinite;
  user-select: none;
}
.floating-symbols span:nth-child(1) { left: 5%;  top: 15%; animation-duration: 18s; font-size: 4rem; }
.floating-symbols span:nth-child(2) { left: 90%; top: 10%; animation-duration: 22s; animation-delay: -4s; }
.floating-symbols span:nth-child(3) { left: 15%; top: 75%; animation-duration: 16s; animation-delay: -8s; }
.floating-symbols span:nth-child(4) { left: 80%; top: 60%; animation-duration: 20s; animation-delay: -2s; font-size: 6rem; }
.floating-symbols span:nth-child(5) { left: 45%; top: 5%;  animation-duration: 25s; animation-delay: -12s; }
.floating-symbols span:nth-child(6) { left: 60%; top: 85%; animation-duration: 19s; animation-delay: -6s; }
.floating-symbols span:nth-child(7) { left: 30%; top: 40%; animation-duration: 23s; animation-delay: -10s; }
.floating-symbols span:nth-child(8) { left: 70%; top: 30%; animation-duration: 17s; animation-delay: -14s; font-size: 3rem; }

@keyframes floatSymbol {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-60px) rotate(15deg); opacity: 0; }
}
.hero-content { z-index: 1; }
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,150,12,0.1);
  border: 1px solid rgba(200,150,12,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-counters {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: fadeUp 0.8s 0.4s ease both;
}
.counter-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.counter-item p {
  font-size: 0.72rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.counter-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
}
.counter-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s 0.5s ease both;
}
.hero-circle-outer {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold-pale), rgba(200,150,12,0.15), var(--gold-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spinSlow 20s linear infinite;
}
.hero-circle-outer::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1.5px dashed rgba(200,150,12,0.25);
}
.hero-circle-inner {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: spinSlow 20s linear infinite reverse;
}
.hero-logo-big {
  width: 260px;
  height: 260px;
  object-fit: contain;
  border-radius: 50%;
}
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  padding: 100px 0;
  background: var(--bg-warm);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.85;
}
.about-text strong { color: var(--black); }
.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-dark);
}
.check { color: var(--gold); font-size: 0.8rem; }
.founders-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,150,12,0.4);
}
.founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.founder-initials {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--black);
}
.founder-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--black);
}
.founder-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.founder-desc { font-size: 0.85rem; color: var(--gray); }

/* ============================================================
   COURSES
============================================================ */
.courses {
  padding: 100px 0;
  background: var(--bg);
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.course-card:hover::before { transform: scaleX(1); }
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,150,12,0.3);
}
.course-card.featured {
  background: linear-gradient(145deg, var(--black), #1A1A1A);
  border-color: var(--gold);
  color: var(--white);
}
.course-card.featured h3 { color: var(--white); }
.course-card.featured p { color: rgba(255,255,255,0.7); }
.course-card.featured::before { height: 0; }
.course-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.course-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.course-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.course-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.75; }
.course-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,150,12,0.1);
  border: 1px solid rgba(200,150,12,0.25);
  padding: 4px 14px;
  border-radius: 50px;
}
.course-card.featured .course-tag {
  background: rgba(200,150,12,0.2);
  border-color: var(--gold);
}

/* ============================================================
   WHY US
============================================================ */
.why-us {
  padding: 100px 0;
  background: var(--bg-warm);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(200,150,12,0.04), transparent);
  transition: var(--transition);
}
.why-card:hover::after { height: 100%; }
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,150,12,0.35);
}
.why-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.why-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.75; position: relative; z-index: 1; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,150,12,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials .section-label { color: var(--gold); }
.testimonials .section-label::before, .testimonials .section-label::after { background: var(--gold); }
.testimonials .section-title { color: var(--white); }
.testimonial-wrapper { position: relative; }
.testimonial-slider { position: relative; min-height: 260px; }
.testimonial-slide {
  display: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  animation: fadeIn 0.5s ease;
}
.testimonial-slide.active { display: block; }
.testimonial-slide::before {
  content: '"';
  position: absolute;
  top: 24px; left: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: rgba(200,150,12,0.2);
  line-height: 1;
}
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.testimonial-slide p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
  flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--white); font-size: 0.95rem; }
.testi-author span { font-size: 0.78rem; color: var(--gray-light); }
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.testi-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,150,12,0.4);
  color: var(--gold);
  font-size: 1.1rem;
  background: rgba(200,150,12,0.06);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.testi-dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================================
   GLOBAL
============================================================ */
.global {
  padding: 100px 0;
  background: var(--bg);
}
.global-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.8;
}
.world-map-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.world-map-container::before {
  content: '🌏';
  position: absolute;
  font-size: 18rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.03;
  pointer-events: none;
  line-height: 1;
}
.map-dots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.map-region {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.glow-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(200,150,12,0.3);
  border: 2px solid rgba(200,150,12,0.5);
  position: relative;
  transition: all 0.4s;
}
.glow-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(200,150,12,0.15);
  animation: pulseGlow 2.5s ease-in-out infinite;
}
.glow-dot.active {
  background: var(--gold);
  border-color: var(--gold-light);
  box-shadow: 0 0 20px rgba(200,150,12,0.5);
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 0.1; }
}
.map-region:nth-child(odd) .glow-dot::after { animation-delay: -1.2s; }
.global-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.gstat { text-align: center; }
.gstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
}
.gstat p { font-size: 0.82rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ============================================================
   CONTACT
============================================================ */
.contact {
  padding: 100px 0;
  background: var(--bg-warm);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3, .enquiry-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.75rem; font-weight: 700; color: var(--black); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.9rem; color: var(--gray); }
.contact-item a:hover { color: var(--gold); }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 50px;
  margin-top: 28px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }

/* Form */
.enquiry-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--gray-dark); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--gray-dark);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,12,0.1);
}
.form-group textarea { resize: vertical; }

/* ============================================================
   FAQ
============================================================ */
.faq { padding: 100px 0; background: var(--bg); }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--black); color: rgba(255,255,255,0.7); }
.footer-top {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin: 16px 0 28px; max-width: 280px; }
.footer-logo { width: 56px; height: 56px; object-fit: contain; border-radius: 50%; }
.social-links { display: flex; gap: 16px; }
.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-links a svg { width: 18px; height: 18px; }
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.footer-links h4, .footer-courses h4, .footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul, .footer-courses ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-courses a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover, .footer-courses a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.87rem; line-height: 1.7; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: popIn 0.5s 2s ease both;
}
.float-whatsapp svg { width: 28px; height: 28px; fill: white; }
.float-whatsapp:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
@keyframes popIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 32px 80px; gap: 48px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-counters { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .counter-divider { display: none; }
  .hero-visual { order: -1; }
  .hero-circle-outer { width: 280px; height: 280px; }
  .hero-circle-inner { width: 220px; height: 220px; }
  .hero-logo-big { width: 170px; height: 170px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 24px; gap: 20px; box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 4px 0; }
  .btn-demo { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .courses-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-slide { padding: 32px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about { padding: 60px 0; }
  .courses, .why-us, .testimonials, .global, .contact, .faq { padding: 72px 0; }
  .enquiry-form-wrap { padding: 28px 20px; }
  .hero-counters { padding: 20px; gap: 8px; }
}

@media (max-width: 480px) {
  .global-stats { flex-direction: column; align-items: center; gap: 24px; }
  .map-dots-grid { gap: 14px; }
  .hero-circle-outer { width: 220px; height: 220px; }
  .hero-circle-inner { width: 172px; height: 172px; }
  .hero-logo-big { width: 130px; height: 130px; }
}