:root {
  --royal-blue: #1E3A8A;
  --deep-navy: #0F172A;
  --gold: #FBBF24;
  --gold-light: #FDE68A;
  --cream: #FFF8E7;
  --saffron: #FF9933;
  --white: #FFFFFF;
  --glass: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.12);
  --text-muted: rgba(255,255,255,0.6);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --font-accent: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--deep-navy);
  color: var(--white);
  overflow-x: hidden;
  cursor: auto;
  width: 100%;
  max-width: 100%;
}

img,
iframe {
  max-width: 100%;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0;
  background: var(--deep-navy);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.preloader-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(30,58,138,0.4) 0%, var(--deep-navy) 70%);
}
.chakra-svg {
  width: 120px; height: 120px;
  animation: spin 4s linear infinite;
  filter: drop-shadow(0 0 20px rgba(251,191,36,0.6));
  margin-bottom: 32px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
  text-align: center;
  opacity: 0;
  margin-bottom: 8px;
}
.preloader-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0;
  margin-bottom: 40px;
}
.preloader-quote {
  font-family: var(--font-accent);
  font-size: clamp(16px, 2.5vw, 24px);
  font-style: italic;
  color: rgba(255,255,255,0.75);
  text-align: center;
  min-height: 36px;
  margin-bottom: 48px;
  padding: 0 20px;
}
.progress-wrap {
  width: 240px;
  position: relative;
}
.progress-bar {
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--royal-blue), var(--gold));
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(251,191,36,0.5);
}
.progress-num {
  position: absolute;
  right: 0; top: -20px;
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
}
.preloader-particles {
  position: absolute; inset: 0;
  pointer-events: none;
}

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal-blue), var(--saffron), var(--gold));
  z-index: 9999;
  width: 0%;
  box-shadow: 0 0 8px rgba(251,191,36,0.6);
  transition: width 0.1s linear;
}

/* ===== PARTICLES BG ===== */
#particles-canvas {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100vw;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(15,23,42,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
nav.scrolled {
  padding: 12px 40px;
  background: rgba(15,23,42,0.95);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}
.nav-logo-mark,
.footer-logo-mark {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.32), transparent 32%),
    linear-gradient(135deg, var(--saffron), var(--royal-blue));
  border: 1px solid rgba(251,191,36,0.55);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.nav-brand-text,
.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-brand-sub {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--royal-blue), #2563EB);
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30,58,138,0.5);
  color: var(--white) !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  flex: 0 0 auto;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 30px;
  font-size: 28px;
  cursor: pointer;
  color: var(--white);
}

/* ===== SECTION BASE ===== */
section {
  position: relative;
  z-index: 1;
}

/* ===== HERO ===== */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 40px 80px;
  overflow: hidden;
  position: relative;
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.76) 42%, rgba(15,23,42,0.5) 100%),
    url("https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=1800&q=85") center/cover no-repeat;
  transform: scale(1.06);
  animation: heroPhotoDrift 18s ease-in-out infinite alternate;
}
.hero-bg-grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(251,191,36,0.15), transparent 28%, rgba(30,58,138,0.18) 70%, rgba(255,153,51,0.12)),
    radial-gradient(ellipse 80% 60% at 18% 40%, rgba(30,58,138,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 62%, rgba(255,153,51,0.18) 0%, transparent 60%);
  mix-blend-mode: screen;
}
.hero-ambience {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-ambience span {
  position: absolute;
  width: 28vw;
  height: 2px;
  left: -32vw;
  background: linear-gradient(90deg, transparent, rgba(253,230,138,0.48), transparent);
  filter: blur(1px);
  transform: rotate(-16deg);
  animation: lightSweep 9s linear infinite;
}
.hero-ambience span:nth-child(1) { top: 20%; animation-delay: 0s; }
.hero-ambience span:nth-child(2) { top: 36%; animation-delay: 2.2s; opacity: 0.65; }
.hero-ambience span:nth-child(3) { top: 58%; animation-delay: 4.6s; opacity: 0.45; }
.hero-ambience span:nth-child(4) { top: 74%; animation-delay: 6.5s; opacity: 0.55; }
@keyframes heroPhotoDrift {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to { transform: scale(1.12) translate3d(-18px, -10px, 0); }
}
@keyframes lightSweep {
  0% { transform: translateX(0) rotate(-16deg); opacity: 0; }
  12% { opacity: 1; }
  72% { opacity: 0.75; }
  100% { transform: translateX(150vw) rotate(-16deg); opacity: 0; }
}
.hero-chakra {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 40vw, 520px);
  height: clamp(280px, 40vw, 520px);
  opacity: 0.08;
  animation: spin 30s linear infinite;
}
.hero-content {
  max-width: 700px;
  margin-left: clamp(0px, 7vw, 110px);
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
}
.hero-badge span.dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:0.5;transform:scale(1.4)}
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
  opacity: 0;
}
.hero-title .gold { color: var(--gold); }
.hero-title .saffron { color: var(--saffron); }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 520px;
  opacity: 0;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}
.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1px;
  max-width: 580px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  backdrop-filter: blur(12px);
}
.hero-stat {
  padding: 18px 20px;
  background: rgba(15,23,42,0.58);
}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 6px;
}
.hero-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.62);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-primary {
  background: linear-gradient(135deg, var(--royal-blue) 0%, #2563EB 100%);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(30,58,138,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(30,58,138,0.6);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.hero-float-1, .hero-float-2, .hero-float-3 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}
.hero-float-1 {
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(251,191,36,0.15), transparent);
  border: 1px solid rgba(251,191,36,0.2);
  top: 20%; left: 60%;
  animation-delay: 0s;
}
.hero-float-2 {
  width: 50px; height: 50px;
  background: radial-gradient(circle, rgba(30,58,138,0.3), transparent);
  border: 1px solid rgba(255,255,255,0.1);
  top: 70%; left: 75%;
  animation-delay: 2s;
}
.hero-float-3 {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,153,51,0.08), transparent);
  border: 1px solid rgba(255,153,51,0.15);
  top: 35%; left: 50%;
  animation-delay: 4s;
}
@keyframes float {
  0%,100%{ transform:translateY(0) rotate(0deg); }
  33%{ transform:translateY(-15px) rotate(5deg); }
  66%{ transform:translateY(8px) rotate(-3deg); }
}

/* ===== TRUST STATS ===== */
#trust {
  padding: 80px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
}
.trust-item {
  background: rgba(15,23,42,0.95);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.3s ease;
}
.trust-item:hover { background: rgba(30,58,138,0.15); }
.trust-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.trust-icon {
  font-size: 22px;
  color: rgba(251,191,36,0.4);
  margin-bottom: 12px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--royal-blue), var(--gold));
  margin: 20px auto 0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
  animation: dividerScan 2.4s ease-in-out infinite;
}

/* ===== COURSES ===== */
#courses { padding: 100px 40px; }
.courses-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.course-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform;
}
.course-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,138,0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}
.course-card:hover { transform: translateY(-8px); border-color: rgba(251,191,36,0.25); }
.course-card:hover::before { opacity: 1; }
.course-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.09), transparent 42%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.course-card:hover::after { transform: translateX(120%); }
.course-card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(251,191,36,0.06), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.course-card:hover .course-card-glow { opacity: 1; }
.course-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(30,58,138,0.5), rgba(37,99,235,0.3));
  border: 1px solid rgba(30,58,138,0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 24px;
}
.course-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.course-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.course-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 100px;
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===== SYLLABUS ===== */
#syllabus { padding: 100px 40px; background: rgba(30,58,138,0.05); }
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--royal-blue), var(--gold), var(--royal-blue));
  box-shadow: 0 0 18px rgba(251,191,36,0.22);
}
.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  align-items: flex-start;
}
.timeline-dot {
  width: 48px; height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--royal-blue), #2563EB);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  border: 2px solid rgba(251,191,36,0.3);
  box-shadow: 0 0 20px rgba(30,58,138,0.4);
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.timeline-dot::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(251,191,36,0.18);
  animation: journeyPulse 2.8s ease-out infinite;
}
.timeline-content {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px 32px;
  flex: 1;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.timeline-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}
.timeline-content:hover {
  border-color: rgba(251,191,36,0.2);
  background: rgba(30,58,138,0.1);
  transform: translateX(8px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.24);
}
.timeline-item:hover .timeline-dot {
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: 0 0 34px rgba(251,191,36,0.25);
}
.timeline-content:hover::before { transform: translateX(120%); }
.timeline-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.timeline-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===== FEATURES ===== */
#features { padding: 100px 40px; }
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.feature-card::before,
.why-card::before,
.testimonial-card::before,
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(251,191,36,0.12), transparent 34%),
    linear-gradient(120deg, transparent, rgba(255,255,255,0.045), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--royal-blue), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 18px 48px rgba(0,0,0,0.25);
}
.feature-card:hover::before,
.why-card:hover::before,
.testimonial-card:hover::before,
.contact-card:hover::before { opacity: 1; }
.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.feature-card:hover .feature-icon {
  filter: drop-shadow(0 0 16px rgba(251,191,36,0.35));
  transform: translateY(-3px) scale(1.08);
}
.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ===== ABOUT TRAINER ===== */
#about { padding: 100px 40px; background: rgba(30,58,138,0.05); }
.about-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  width: 100%;
  isolation: isolate;
}
.about-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 24px;
  min-height: 360px;
  background:
    radial-gradient(circle at 42% 26%, rgba(251,191,36,0.16), transparent 22%),
    radial-gradient(circle at 68% 72%, rgba(37,99,235,0.34), transparent 36%),
    linear-gradient(135deg, rgba(30,58,138,0.34), rgba(15,23,42,0.86));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 26px 70px rgba(0,0,0,0.28);
  transform-style: preserve-3d;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(251,191,36,0.18);
  border-radius: 18px;
  z-index: 1;
}
.about-img-frame::after {
  content: '';
  position: absolute;
  width: 160%;
  height: 46%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: rotate(-18deg) translateX(-90%);
  animation: trainerShine 5s ease-in-out infinite;
  z-index: 2;
}
.about-img-icon {
  font-size: 80px;
  color: rgba(251,191,36,0.34);
  position: relative;
  z-index: 3;
  animation: trainerFloat 4.2s ease-in-out infinite;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.28));
}
.about-img-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(30,58,138,0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,153,51,0.08) 0%, transparent 50%);
  z-index: 0;
}
.about-img-pattern::before,
.about-img-pattern::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(251,191,36,0.15);
  animation: orbitGlow 12s linear infinite;
}
.about-img-pattern::before {
  width: 190px;
  height: 190px;
  left: 50%;
  top: 50%;
  margin-left: -95px;
  margin-top: -95px;
}
.about-img-pattern::after {
  width: 250px;
  height: 250px;
  left: 50%;
  top: 50%;
  margin-left: -125px;
  margin-top: -125px;
  animation-duration: 18s;
  animation-direction: reverse;
}
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--royal-blue), #2563EB);
  border-radius: 16px;
  padding: 20px 28px;
  border: 2px solid rgba(255,255,255,0.1);
  text-align: center;
  z-index: 4;
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
  animation: badgeLift 3.6s ease-in-out infinite;
}
.about-img-badge .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-img-badge .lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
}
.about-content {}
.about-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.about-role {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-role::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}
.about-text {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
}
.about-achievements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.achievement-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
}
.achievement-item:hover {
  border-color: rgba(251,191,36,0.2);
  background: rgba(30,58,138,0.1);
}
.ach-icon {
  font-size: 20px;
  color: var(--gold);
  width: 36px;
  text-align: center;
}
.ach-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ===== JOURNEY ===== */
#journey {
  padding: 100px 40px;
  background:
    radial-gradient(circle at 18% 18%, rgba(251,191,36,0.12), transparent 28%),
    radial-gradient(circle at 84% 64%, rgba(30,58,138,0.3), transparent 32%),
    rgba(30,58,138,0.04);
  overflow: hidden;
}
.journey-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.45;
}
.journey-glow-one {
  width: 180px;
  height: 180px;
  top: 20%;
  left: -70px;
  background: radial-gradient(circle, rgba(251,191,36,0.18), transparent 68%);
  animation: journeyFloat 8s ease-in-out infinite;
}
.journey-glow-two {
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(37,99,235,0.25), transparent 70%);
  animation: journeyFloat 10s ease-in-out infinite reverse;
}
.journey-steps {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  position: relative;
  align-items: stretch;
}
.journey-steps::before,
.journey-progress {
  content: '';
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 3px;
  border-radius: 999px;
}
.journey-steps::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), rgba(255,255,255,0.12), transparent);
}
.journey-progress {
  right: auto;
  width: 0%;
  max-width: 84%;
  background: linear-gradient(90deg, var(--royal-blue), var(--saffron), var(--gold));
  box-shadow: 0 0 22px rgba(251,191,36,0.45);
  z-index: 0;
}
.journey-progress::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(251,191,36,0.8);
  transform: translateY(-50%);
}
.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  position: relative;
  min-width: 0;
}
.journey-num {
  width: 82px;
  height: 82px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,0.18), transparent 34%),
    linear-gradient(135deg, #111c38, rgba(30,58,138,0.85));
  border: 2px solid rgba(251,191,36,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 36px rgba(0,0,0,0.26), 0 0 28px rgba(30,58,138,0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.journey-num::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(251,191,36,0.22);
  animation: journeyPulse 2.6s ease-out infinite;
}
.journey-num::after {
  content: '';
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  border: 1px dashed rgba(255,255,255,0.18);
  animation: spin 18s linear infinite;
}
.journey-num i {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--deep-navy);
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
}
.journey-card {
  width: 100%;
  min-height: 150px;
  padding: 26px 18px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    rgba(15,23,42,0.7);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.journey-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255,255,255,0.1), transparent 34%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}
.journey-card::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.journey-step:hover .journey-num,
.journey-step.is-active .journey-num {
  border-color: var(--gold);
  box-shadow: 0 18px 48px rgba(0,0,0,0.32), 0 0 40px rgba(251,191,36,0.28);
  transform: translateY(-8px) scale(1.06);
}
.journey-step:hover .journey-card,
.journey-step.is-active .journey-card {
  border-color: rgba(251,191,36,0.28);
  box-shadow: 0 22px 55px rgba(0,0,0,0.26);
  transform: translateY(-8px);
}
.journey-step:hover .journey-card::before,
.journey-step.is-active .journey-card::before {
  transform: translateX(130%);
}
.journey-label {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.journey-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.56);
  line-height: 1.65;
}
@keyframes journeyPulse {
  0% { transform: scale(0.9); opacity: 0.65; }
  100% { transform: scale(1.28); opacity: 0; }
}
@keyframes journeyFloat {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(24px,-18px,0) scale(1.08); }
}
@keyframes dividerScan {
  0% { transform: translateX(-120%); opacity: 0; }
  25%,65% { opacity: 1; }
  100% { transform: translateX(120%); opacity: 0; }
}
@keyframes trainerFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.04); }
}
@keyframes trainerShine {
  0%,58% { transform: rotate(-18deg) translateX(-92%); opacity: 0; }
  68% { opacity: 1; }
  100% { transform: rotate(-18deg) translateX(92%); opacity: 0; }
}
@keyframes orbitGlow {
  to { transform: rotate(360deg); }
}
@keyframes badgeLift {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ===== TESTIMONIALS ===== */
#testimonials { padding: 100px 40px; background: rgba(30,58,138,0.05); }
.swiper-testimonials {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 60px;
}
.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  height: auto;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.testimonial-card:hover {
  border-color: rgba(251,191,36,0.22);
  box-shadow: 0 22px 55px rgba(0,0,0,0.24);
  transform: translateY(-6px);
}
.testimonial-quote {
  font-size: 48px;
  color: rgba(251,191,36,0.2);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-blue), var(--saffron));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  border: 2px solid rgba(251,191,36,0.3);
}
.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
}
.testimonial-loc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.swiper-pagination-bullet { background: rgba(255,255,255,0.3) !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ===== GALLERY ===== */
#gallery { padding: 100px 40px; }
.swiper-gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 60px;
}
.gallery-slide {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
}
.gallery-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 12%, rgba(255,255,255,0.16), transparent 35%);
  transform: translateX(-130%);
  transition: transform 0.75s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-slide:hover img { transform: scale(1.05); }
.gallery-slide:hover::before { transform: translateX(130%); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,23,42,0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-slide:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

/* ===== WHY US ===== */
#why { padding: 100px 40px; background: rgba(30,58,138,0.05); }
.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251,191,36,0.2);
  box-shadow: 0 20px 52px rgba(0,0,0,0.25);
}
.why-card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(30,58,138,0.4), rgba(37,99,235,0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
  border: 1px solid rgba(251,191,36,0.2);
  transition: all 0.4s ease;
}
.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--royal-blue), #2563EB);
  box-shadow: 0 8px 30px rgba(30,58,138,0.5);
}
.why-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ===== FAQ ===== */
#faq { padding: 100px 40px; }
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.open { border-color: rgba(251,191,36,0.25); }
.faq-q {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  transition: color 0.3s ease;
  gap: 20px;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
  width: 28px; height: 28px;
  min-width: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease;
  color: var(--gold);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: rgba(251,191,36,0.1); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 24px;
}
.faq-a p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
#contact { padding: 100px 40px; background: rgba(30,58,138,0.05); }
.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.contact-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(251,191,36,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.contact-card-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}
.contact-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-card-val {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  line-height: 1.5;
}
.contact-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.contact-btn.call {
  background: linear-gradient(135deg, var(--royal-blue), #2563EB);
  color: var(--white);
}
.contact-btn.wa {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: var(--white);
}
.contact-btn.email {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
}
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }

/* ===== MAP ===== */
.map-section {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  position: relative;
}
.map-section::before {
  content: '';
  position: absolute; inset: -2px;
  background: linear-gradient(135deg, var(--royal-blue), var(--gold), var(--royal-blue));
  border-radius: 22px;
  z-index: -1;
  animation: border-glow 3s ease-in-out infinite;
}
@keyframes border-glow {
  0%,100%{ opacity:0.4; }
  50%{ opacity:0.8; }
}
.map-section iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

/* ===== FOOTER ===== */
footer {
  background: rgba(5,10,20,0.95);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 40px 32px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  display: block;
}
.footer-brand-sub {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 36px; height: 36px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}
.footer-social:hover {
  background: rgba(30,58,138,0.3);
  color: var(--gold);
  border-color: rgba(251,191,36,0.2);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== FLOATING BUTTONS ===== */
.fab-wrap {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab-wrap > .fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.fab-wrap > .fab::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.4;
  animation: pulse-ring 2s ease-out infinite;
}
.fab-wa { background: linear-gradient(135deg, #128C7E, #25D366); }
.fab-wa::before { border-color: #25D366; }
.fab-call { background: linear-gradient(135deg, var(--royal-blue), #2563EB); }
.fab-call::before { border-color: #2563EB; animation-delay: 0.5s; }
.fab-wrap > .fab:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
@keyframes pulse-ring {
  0%{ transform: scale(1); opacity: 0.4; }
  100%{ transform: scale(1.5); opacity: 0; }
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; }
.text-gold { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media(max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }
  .journey-steps::before,
  .journey-progress {
    display: none;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 360px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid .contact-card:last-child { grid-column: 1 / -1; }
}
@media(max-width: 768px) {
  nav,
  nav.scrolled {
    padding: 12px 16px;
    left: 0;
    right: auto;
    width: 100vw;
    width: 100dvw;
  }

  .nav-brand {
    min-width: 0;
    max-width: calc(100vw - 78px);
    max-width: calc(100dvw - 78px);
    overflow: hidden;
  }

  .nav-logo-mark {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 21px;
  }

  .nav-brand-text {
    min-width: 0;
    overflow: hidden;
  }

  .nav-brand-name {
    font-size: 16px;
    white-space: nowrap;
  }

  .nav-brand-sub {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .mobile-menu {
    gap: 28px;
    padding: 80px 24px 40px;
  }

  .mobile-menu a {
    font-size: 24px;
    text-align: center;
  }

  #home {
    min-height: auto;
    padding: 108px 20px 56px;
    align-items: flex-start;
    text-align: center;
  }

  .hero-bg-photo {
    background:
      linear-gradient(180deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.78) 55%, rgba(15,23,42,0.96) 100%),
      url("https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=1200&q=85") center/cover no-repeat;
  }

  .hero-content {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-badge {
    justify-content: center;
    max-width: 100%;
    letter-spacing: 1.2px;
    margin-bottom: 22px;
  }

  .hero-title {
    letter-spacing: 0;
    margin-bottom: 18px;
  }

  .hero-sub {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    margin-top: 28px;
  }

  .hero-stat {
    padding: 16px 10px;
  }

  .hero-stat-label {
    font-size: 10px;
    letter-spacing: 0.6px;
  }

  .hero-chakra { display: none; }

  .hero-float-1,
  .hero-float-2,
  .hero-float-3 {
    display: none;
  }

  section {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .section-header {
    margin-bottom: 42px;
  }

  .section-tag {
    letter-spacing: 2.4px;
  }

  .section-desc {
    font-size: 15px;
  }

  .courses-grid, .features-grid, .why-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item {
    padding: 28px 14px;
  }
  .trust-num {
    font-size: 40px;
  }
  .trust-label {
    font-size: 11px;
    letter-spacing: 0.6px;
  }

  .course-card,
  .feature-card,
  .why-card,
  .testimonial-card,
  .contact-card,
  .timeline-content {
    border-radius: 16px;
    padding: 28px 22px;
  }

  .course-icon {
    margin-bottom: 18px;
  }

  .timeline-item {
    gap: 18px;
    margin-bottom: 28px;
  }

  .timeline-content {
    min-width: 0;
  }

  .timeline-title {
    font-size: 20px;
  }

  .about-wrap {
    gap: 48px;
    text-align: center;
  }

  .about-img-wrap {
    display: block;
    width: min(100%, 360px);
  }

  .about-img-frame {
    min-height: 420px;
  }

  .about-role {
    justify-content: center;
    flex-wrap: wrap;
    letter-spacing: 1.2px;
  }

  .about-role::before {
    display: none;
  }

  .about-img-badge {
    right: 12px;
    bottom: 12px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .journey-steps { gap: 20px; }
  .journey-step {
    gap: 16px;
  }
  .journey-num {
    width: 72px;
    height: 72px;
  }
  .journey-card {
    min-height: 132px;
    padding: 22px 18px;
  }
  .journey-label {
    font-size: 20px;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .contact-card:last-child {
    grid-column: auto;
  }
  .about-achievements { grid-template-columns: 1fr; }

  .map-section iframe {
    height: 300px;
  }

  .footer-brand-lockup {
    align-items: flex-start;
  }

  .fab-wrap {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    transform: translateZ(0);
  }

  .fab-wrap > .fab {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }
}

@media(max-width: 480px) {
  .preloader-logo {
    padding: 0 18px;
    letter-spacing: 1.4px;
  }

  .preloader-sub {
    max-width: 300px;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.6;
  }

  .nav-brand {
    gap: 8px;
    max-width: calc(100vw - 66px);
    max-width: calc(100dvw - 66px);
  }

  .nav-logo-mark {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 19px;
  }

  .nav-brand-name {
    font-size: 14px;
  }

  .nav-brand-sub {
    max-width: 160px;
    letter-spacing: 1px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .hamburger {
    width: 34px;
    align-items: flex-end;
  }

  #home {
    padding: 96px 16px 48px;
  }

  .hero-badge {
    width: 100%;
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 0.8px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary,
  .contact-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    padding: 15px 18px;
  }

  section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .section-title {
    font-size: 34px;
  }

  .courses-grid,
  .features-grid,
  .why-grid,
  .contact-grid {
    gap: 18px;
  }

  .course-card,
  .feature-card,
  .why-card,
  .testimonial-card,
  .contact-card {
    padding: 24px 18px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    gap: 14px;
  }

  .timeline-dot {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 15px;
  }

  .timeline-content {
    padding: 22px 18px;
  }

  .about-img-wrap {
    max-width: 280px;
    width: 100%;
  }

  .about-img-frame {
    min-height: 340px;
    border-radius: 20px;
  }

  .about-img-icon {
    font-size: 68px;
  }

  .about-img-badge {
    padding: 14px 18px;
    border-radius: 12px;
  }

  .about-img-badge .num {
    font-size: 28px;
  }

  .achievement-item {
    align-items: flex-start;
    text-align: left;
  }

  .journey-step {
    align-items: flex-start;
    flex-direction: row;
    text-align: left;
  }

  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-num {
    width: 58px;
    height: 58px;
    min-width: 58px;
    font-size: 23px;
  }

  .journey-num i {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .journey-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .journey-label {
    font-size: 18px;
  }

  .journey-card p {
    font-size: 12px;
  }

  .faq-q {
    padding: 20px 18px;
    font-size: 14px;
    gap: 14px;
  }

  .faq-a {
    padding: 0 18px;
  }

  .faq-item.open .faq-a {
    max-height: 280px;
    padding-bottom: 20px;
  }

  .testimonial-author {
    align-items: flex-start;
  }

  .gallery-overlay {
    opacity: 1;
  }

  .map-section {
    border-radius: 16px;
  }

  .map-section iframe {
    height: 260px;
  }

  footer {
    padding: 64px 16px 28px;
  }

  .footer-brand-lockup {
    gap: 10px;
  }

  .footer-logo-mark {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 21px;
  }

  .footer-brand-name {
    font-size: 19px;
  }

  .footer-brand-sub {
    letter-spacing: 1.8px;
  }
}

@media(max-width: 360px) {
  .nav-brand-name {
    font-size: 13px;
  }

  .nav-brand-sub {
    display: none;
  }

  .fab-wrap {
    right: 10px;
    bottom: 12px;
  }

  .fab-wrap > .fab {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* Additional decorative */
.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}
@keyframes shimmer { 0%{background-position: -200% 0} 100%{background-position: 200% 0} }

/* ===== VISITOR COUNTER ===== */
.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin: 10px 0;
}
.visitor-counter i {
  color: var(--gold);
  font-size: 14px;
}
.visitor-counter:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.15);
}
