/* ============================================================
   BRIGHT MONDE ACADEMY — MAIN STYLESHEET
   ============================================================ */

/* === RESET & VARIABLES === */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  /* ── Brand Palette ─────────────────────────────── */
  --gold:        #C9980A;
  --gold-bright: #F5C518;
  --gold-light:  #FDE68A;
  --green:       #1A4731;
  --green-d:     #0f2b1e;
  --near-black:  #0a0a0a;
  /* ── Semantic Aliases ──────────────────────────── */
  --primary:     #C9980A;
  --primary-d:   #a87c08;
  --secondary:   #1A4731;
  --accent:      #F5C518;
  --dark:        #0a0a0a;
  --dark-2:      #141414;
  --text:        #1c1c1c;
  --text-light:  #5a5a5a;
  --bg:          #faf8f2;
  --white:       #ffffff;
  --border:      #e8e0c8;
  --success:     #1A4731;
  --gradient:    linear-gradient(135deg, #C9980A 0%, #1A4731 100%);
  --gradient-g:  linear-gradient(135deg, #1A4731 0%, #C9980A 100%);
  --gradient-2:  linear-gradient(135deg, #F5C518 0%, #C9980A 100%);
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.15);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.2);
  --shadow-gold: 0 6px 24px rgba(201,152,10,.35);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --transition:  all 0.3s cubic-bezier(.4,0,.2,1);
  --font:        'Poppins', sans-serif;
  --font-serif:  'Playfair Display', serif;
  --nav-h:       50px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* === SELECTION === */
::selection { background: var(--primary); color: #fff; }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.loader-ring {
  width: 60px; height: 60px;
  position: relative; display: inline-block;
}
/* Preloader spinner — brand colors */
.loader-ring div {
  box-sizing: border-box;
  display: block; position: absolute;
  width: 48px; height: 48px;
  margin: 6px;
  border: 5px solid transparent;
  border-top-color: #C9980A;
  border-radius: 50%;
  animation: loader-spin 1.2s cubic-bezier(.5,0,.5,1) infinite;
}
.loader-ring div:nth-child(1) { animation-delay: -0.45s; border-top-color: #F5C518; }
.loader-ring div:nth-child(2) { animation-delay: -0.3s;  border-top-color: #C9980A; }
.loader-ring div:nth-child(3) { animation-delay: -0.15s; border-top-color: #1A4731; }
@keyframes loader-spin { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }

.loader-text {
  color: #fff; font-size: 1rem; font-weight: 600;
  margin-top: 1.5rem; letter-spacing: 2px;
  animation: pulse-text 1.5s ease-in-out infinite;
}
@keyframes pulse-text { 0%,100%{opacity:.5} 50%{opacity:1} }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--gradient);
  color: #fff; overflow: hidden;
  font-size: 0.82rem; font-weight: 500;
  height: 36px; display: flex; align-items: center;
}
.announcement-track {
  display: flex; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.announcement-track span {
  padding: 0 2rem; min-width: 100vw;
  display: inline-block;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: var(--transition);
}
#navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  height: 100%;
  padding: 10px 0;
}
/* Navbar logo image */
.logo-icon { display: none; }
.nav-logo-img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main {
  font-size: 1rem; font-weight: 800;
  background: linear-gradient(135deg, #C9980A, #1A4731);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub { font-size: 0.65rem; color: var(--text-light); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem; font-weight: 300;
  color: var(--text); border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--gradient);
  border-radius: 2px; transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { left: 10%; right: 10%; }

/* Nav btn */
.nav-btn {
  padding: 0.6rem 1.4rem;
  background: var(--gradient);
  color: #fff; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  transition: var(--transition);
  display: flex; align-items: center; gap: 0.4rem;
  box-shadow: 0 4px 14px rgba(201,152,10,0.4);
}
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,152,10,0.55);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--dark); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   COMMON
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
/* Section tag */
.section-tag {
  display: inline-block;
  background: rgba(201,152,10,.1); color: var(--primary);
  border: 1px solid rgba(201,152,10,.3);
  font-size: 0.78rem; font-weight: 700;
  padding: 0.35rem 1rem; border-radius: 50px;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; color: var(--dark); line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-subtitle { font-size: 1rem; color: var(--text-light); max-width: 580px; margin: 0 auto; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gradient);
  color: #fff; padding: 0.85rem 2rem;
  border-radius: 50px; font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(201,152,10,.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,152,10,.55);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.8rem 1.8rem;
  border-radius: 50px; font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--primary); color: #fff;
  transform: translateY(-3px);
}
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; color: var(--green);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: calc(100vh - var(--nav-h) - 36px);
  background: var(--dark);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 4rem 2rem;
  gap: 3rem;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.15;
}
/* Hero bg shapes */
.shape-1 { width: 600px; height: 600px; background: var(--gold);   top: -200px; left: -200px; }
.shape-2 { width: 500px; height: 500px; background: var(--green);  bottom: -150px; right: -100px; }
.shape-3 { width: 300px; height: 300px; background: var(--gold-bright); top: 50%; left: 40%; transform: translate(-50%,-50%); }

.hero-particles { position: absolute; inset: 0; pointer-events: none; }

.hero-content {
  position: relative; z-index: 2;
  flex: 1; max-width: 620px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.35);
  color: #fbbf24; font-size: 0.8rem;
  font-weight: 600; padding: 0.4rem 1rem;
  border-radius: 50px; margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,.75);
  margin-bottom: 2rem; line-height: 1.75;
}
.hero-subtitle strong { color: #fbbf24; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  width: fit-content;
  backdrop-filter: blur(10px);
}
.stat-item { text-align: center; padding: 0 1.5rem; }
.stat-num { font-size: 2rem; font-weight: 800; color: #fff; }
.stat-item span { font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.stat-item p { font-size: 0.75rem; color: rgba(255,255,255,.6); margin-top: 0.2rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

.hero-image {
  position: relative; z-index: 2;
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-wrap {
  width: 430px;
  height: 500px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  margin-right: 2rem;
  box-shadow:
    0 0 0 2px rgba(201,152,10,.4),
    0 0 24px rgba(201,152,10,.15),
    0 12px 30px rgba(0,0,0,.5);
  position: relative;
}
.hero-main-img {
  width: 430px;
  height: 500px;
  max-width: 430px;
  max-height: 500px;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 0;
}
.features-grid {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: center;
}
.feature-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
  flex: 1; min-width: 180px;
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
/* Features strip hover */
.feature-item:hover { background: rgba(201,152,10,.05); }
.feature-item i {
  font-size: 1.6rem; color: var(--primary);
  width: 42px; text-align: center; flex-shrink: 0;
}
.feature-item strong { display: block; font-size: 0.9rem; color: var(--dark); }
.feature-item p { font-size: 0.75rem; color: var(--text-light); margin: 0; }

/* ============================================================
   COURSES SECTION
   ============================================================ */
.courses-section { background: var(--bg); }

.course-tabs {
  display: flex; gap: 0.5rem; margin-bottom: 2.5rem;
  justify-content: center; flex-wrap: wrap;
}
.tab-btn {
  padding: 0.55rem 1.4rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-light);
  background: #fff;
  transition: var(--transition);
}
/* Course tabs */
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(201,152,10,.35); }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.course-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  display: flex; flex-direction: column;
}
/* Course card hover */
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(201,152,10,.3);
}
.course-card.hidden { display: none; }

/* Course badge */
.course-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--gradient-2); color: var(--near-black);
  font-size: 0.7rem; font-weight: 700;
  padding: 0.3rem 0.8rem; border-radius: 50px;
  letter-spacing: 0.5px;
  z-index: 1;
}
.new-badge { background: linear-gradient(135deg,#1A4731,#0f2b1e) !important; color: #F5C518 !important; }

.course-icon {
  height: 110px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.course-icon::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.15));
}
.flag-emoji { font-size: 3.5rem; line-height: 1; }

.course-body { padding: 1.4rem 1.4rem 0.5rem; flex: 1; }
.course-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.course-body p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1rem; }

.course-features { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.course-features li { font-size: 0.82rem; color: var(--text); display: flex; align-items: center; gap: 0.5rem; }
/* Course features checkmark */
.course-features li i { color: var(--green); font-size: 0.75rem; }

.course-meta {
  display: flex; gap: 1rem;
  font-size: 0.78rem; color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}
.course-meta span { display: flex; align-items: center; gap: 0.35rem; }
.course-meta i { color: var(--primary); }

.course-btn {
  display: block; text-align: center;
  background: var(--gradient);
  color: #fff;
  padding: 0.85rem;
  font-size: 0.88rem; font-weight: 600;
  margin: 1rem 1.4rem 1.4rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.course-btn:hover { opacity: 0.9; transform: scale(0.98); }

/* ============================================================
   TUITION SECTION
   ============================================================ */
.tuition-section { background: #fff; }

.tuition-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.tuition-badge-group {
  display: flex; gap: 0.6rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.t-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gradient); color: #fff;
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
}
.class-grid { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.class-row { display: flex; align-items: center; gap: 1rem; }
.class-label {
  width: 65px; font-size: 0.8rem; font-weight: 700;
  color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px;
  flex-shrink: 0;
}
.class-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
/* Pills */
.pill {
  padding: 0.35rem 1rem; border-radius: 50px;
  background: rgba(201,152,10,.08); color: var(--primary);
  border: 1.5px solid rgba(201,152,10,.25);
  font-size: 0.8rem; font-weight: 600;
  transition: var(--transition);
}
.pill:hover { background: var(--primary); color: #fff; }
.highlight-pill { background: rgba(26,71,49,.08); color: var(--green); border-color: rgba(26,71,49,.3); }
.highlight-pill:hover { background: var(--green); color: #fff; }

.subjects-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.subject-item {
  display: flex; align-items: center; gap: 0.65rem;
  background: var(--bg); padding: 0.6rem 0.9rem;
  border-radius: var(--radius); font-size: 0.85rem;
  font-weight: 500; color: var(--text);
  border: 1px solid var(--border);
  transition: var(--transition);
}
/* Subject items */
.subject-item:hover { background: rgba(201,152,10,.07); border-color: var(--primary); color: var(--primary); }
.subject-item i { color: var(--primary); width: 16px; text-align: center; }

.tuition-highlight-card {
  background: var(--gradient);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: #fff;
  box-shadow: var(--shadow-xl);
  position: sticky; top: 100px;
}
.t-card-icon {
  width: 50px; height: 50px;
  background: rgba(255,255,255,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.tuition-highlight-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.25rem; }
.tuition-highlight-card ul { display: flex; flex-direction: column; gap: 0.75rem; }
.tuition-highlight-card ul li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.88rem; line-height: 1.5;
}
.tuition-highlight-card ul li i { color: #fbbf24; font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }

/* ============================================================
   DEMO BANNER
   ============================================================ */
/* Demo banner */
.demo-banner {
  background: linear-gradient(135deg, #C9980A 0%, #1A4731 100%);
  padding: 3rem 2rem;
}
.demo-banner-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.demo-banner-text { display: flex; align-items: center; gap: 1.5rem; color: #fff; }
.demo-icon { font-size: 2.5rem; flex-shrink: 0; }
.demo-banner-text h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.3rem; }
.demo-banner-text p { font-size: 0.95rem; opacity: 0.9; }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-section { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient);
  opacity: 0; transition: var(--transition);
  z-index: 0;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.why-card:hover h3, .why-card:hover p { color: #fff; }
.why-card:hover .why-icon { background: rgba(255,255,255,.2); }
.why-card:hover .why-icon i { color: #fff; }
/* Why icon */
.why-icon {
  width: 62px; height: 62px;
  background: rgba(201,152,10,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1.25rem;
  transition: var(--transition); z-index: 1; position: relative;
}
.why-icon i { color: var(--primary); transition: var(--transition); }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; z-index: 1; position: relative; transition: var(--transition); }
.why-card p { font-size: 0.83rem; color: var(--text-light); z-index: 1; position: relative; line-height: 1.6; transition: var(--transition); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: #fff; }
.steps-container {
  display: flex; align-items: flex-start;
  justify-content: center; gap: 0;
  flex-wrap: wrap;
}
.step-item {
  text-align: center; padding: 2rem 1.5rem; flex: 1; min-width: 200px;
  max-width: 240px;
  position: relative;
}
/* Step numbers and icons */
.step-num {
  font-size: 3rem; font-weight: 900;
  color: rgba(201,152,10,.12);
  line-height: 1; margin-bottom: -0.5rem;
  font-family: var(--font-serif);
}
.step-icon {
  width: 64px; height: 64px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(201,152,10,.4);
  transition: var(--transition);
}
.step-item:hover .step-icon { transform: scale(1.1); box-shadow: 0 10px 30px rgba(201,152,10,.5); }
.step-item h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.step-item p { font-size: 0.83rem; color: var(--text-light); }
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--border); font-size: 1.5rem;
  margin-top: 2rem; align-self: center;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--bg); }
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 2rem; min-width: 340px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card > p {
  font-size: 0.9rem; color: var(--text); line-height: 1.75;
  font-style: italic; margin-bottom: 1.5rem;
}
.reviewer { display: flex; align-items: center; gap: 0.85rem; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.9rem; color: var(--dark); }
.reviewer span { font-size: 0.75rem; color: var(--text-light); }

.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2rem;
}
.slider-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  color: var(--text); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.slider-dots { display: flex; gap: 0.5rem; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); transition: var(--transition);
}
/* Slider dots */
.dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ============================================================
   QUERY FORM
   ============================================================ */
.query-section { background: #fff; }
.query-layout {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem;
  align-items: start;
}
.query-info { padding-top: 1rem; }
.query-info h2 { font-size: 2rem; font-weight: 800; color: var(--dark); margin: 0.75rem 0; line-height: 1.2; }
.query-info > p { color: var(--text-light); margin-bottom: 1.75rem; }
.query-perks { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.perk { display: flex; align-items: center; gap: 0.65rem; font-size: 0.9rem; font-weight: 500; color: var(--text); }
.perk i { color: var(--success); font-size: 1rem; }
.contact-quick { display: flex; flex-direction: column; gap: 0.6rem; }
.quick-link {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.9rem; color: var(--text-light);
  transition: var(--transition);
}
.quick-link i { color: var(--primary); width: 18px; }
.quick-link:hover { color: var(--primary); }

.query-form-box {
  background: var(--bg); border-radius: var(--radius-xl);
  padding: 2.5rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 0.45rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-family: var(--font); font-size: 0.88rem;
  color: var(--text); transition: var(--transition);
  outline: none; resize: vertical;
}
/* Form focus */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201,152,10,.15);
}
.form-group input.error { border-color: #ef4444; }
.form-error { font-size: 0.75rem; color: #ef4444; margin-top: 0.3rem; display: block; }

/* Submit button */
.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--gradient); color: #fff;
  border-radius: var(--radius); font-size: 1rem;
  font-weight: 700; font-family: var(--font);
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(201,152,10,.4);
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(201,152,10,.55); }

.form-note {
  text-align: center; font-size: 0.75rem;
  color: var(--text-light); margin-top: 0.75rem;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
/* Form note / success icons */
.form-note i { color: var(--green); }
.success-icon { font-size: 3.5rem; color: var(--green); margin-bottom: 1rem; }
.form-success h3 { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; color: var(--text-light); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.contact-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem;
  text-align: center; border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
/* Contact icon shadow */
.contact-icon {
  width: 56px; height: 56px;
  background: var(--gradient); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff; margin: 0 auto 1.25rem;
  box-shadow: 0 6px 16px rgba(201,152,10,.35);
}
.contact-card a:hover { color: var(--primary); }

/* Map container — properly fills its box */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
  line-height: 0;
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius-lg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer-top { padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p { font-size: 0.85rem; margin-top: 0.75rem; line-height: 1.7; }

/* Footer logo wrapper */
.footer-logo-wrap {
  margin-bottom: 1.25rem;
}
.footer-logo-img {
  width: 200px !important;
  height: 200px !important;
  min-width: 200px !important;
  max-width: 200px !important;
  max-height: 200px !important;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  border: 2px solid rgba(201,152,10,.5);
  box-shadow: 0 0 24px rgba(201,152,10,.2), 0 0 0 1px rgba(255,255,255,.06);
  background: #111;
}
.social-links { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.6); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-links a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li { font-size: 0.85rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-col ul li i { color: var(--primary); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.footer-demo-btn { margin-top: 1.25rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0; text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,.45); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  z-index: 900;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(-5deg); }
.wa-tooltip {
  position: absolute; right: 70px; top: 50%;
  transform: translateY(-50%);
  background: var(--dark); color: #fff;
  padding: 0.4rem 0.9rem; border-radius: 6px;
  font-size: 0.8rem; font-weight: 600;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: var(--transition);
}
.wa-tooltip::after {
  content: '';
  position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
.wa-pulse {
  position: absolute; width: 100%; height: 100%;
  border-radius: 50%; background: #25D366;
  animation: wa-pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 900; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  background: var(--dark-2);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  border-top: 1px solid rgba(255,255,255,.08);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 0.5rem; }
/* Cookie banner link */
.cookie-banner a { color: #F5C518; }
.cookie-btn {
  background: var(--gradient); color: #fff;
  padding: 0.5rem 1.5rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-image { display: none; }
  .hero-content { max-width: 100%; text-align: center; }
  .hero-cta, .hero-stats { justify-content: center; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: #fff; padding: 1rem; flex-direction: column; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); gap: 0.25rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-link { padding: 0.75rem 1rem; }
  .nav-btn { margin: 0.5rem 1rem; text-align: center; justify-content: center; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { display: none; }
  .tuition-layout { grid-template-columns: 1fr; }
  .query-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .step-arrow { display: none; }
  .steps-container { flex-direction: column; align-items: center; }
  .demo-banner-inner { flex-direction: column; text-align: center; }
  .courses-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .section-title { font-size: 1.6rem; }
  .hero-title { font-size: 1.8rem; }
  .features-grid { flex-direction: column; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .testimonial-card { min-width: calc(100vw - 4rem); }
}
