:root {
  --navy: #0f2545;
  --navy2: #1a3a6b;
  --gold: #f5a623;
  --gold2: #ffc85e;
  --sky: #e8f4fd;
  --mint: #e6f7f0;
  --coral: #ff6b6b;
  --white: #ffffff;
  --ink: #1c2b3a;
  --muted: #6b7e94;
  --border: #dce8f5;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(15, 37, 69, 0.1);
  --shadow-lg: 0 12px 48px rgba(15, 37, 69, 0.15);
  --font-head: "DM Serif Display", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

/* ─── RESET ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ─── UTILITY ─────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: #fff8eb;
  border: 1.5px solid var(--gold2);
  padding: 4px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--navy);
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  padding: 13px 28px;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--sky);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.btn-instagram:hover {
  background: linear-gradient(45deg, #e0882d, #d95f34, #c61f3d, #b81f5f, #a31578);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
}
.btn-facebook {
  background: linear-gradient(45deg, #1877f2, #145dbf, #0e4aa8, #0b3d91, #082f73);
  color: #fff;
}

.btn-facebook:hover {
  background: linear-gradient(45deg, #166fe0, #1254aa, #0c4294, #09357d, #062a63);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#navbar.scrolled {
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.logo-icon img {
  object-fit: cover;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-cta {
  display: flex;
  gap: 10px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 4px;
  transition: all 0.3s;
}

/* ─── HERO ────────────────────────────────────────────────── */
#hero {
  padding: 130px 0 80px;
  background: linear-gradient(135deg, #f0f7ff 0%, #fff8eb 50%, #f0fff8 100%);
  position: relative;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}
.blob1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #dbeeff, transparent);
  top: -100px;
  right: -100px;
}
.blob2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #fff3cc, transparent);
  bottom: -50px;
  left: -80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 40px;
  padding: 6px 16px 6px 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 18px;
}
.hero-title em {
  color: var(--gold);
  font-style: normal;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.stat-card {
  background: var(--white);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.stat-card .num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1;
}
.stat-card .lbl {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  border-radius: 24px;
  overflow: visible;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
}
.hero-tag-float {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 700;
}
.hero-tag-float .big {
  font-family: var(--font-head);
  font-size: 1.4rem;
  display: block;
  color: var(--gold);
}
.hero-tag-float2 {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

/* ─── MENTOR ─────────────────────────────────────────────── */
#mentor {
  padding: 88px 0;
  background: var(--white);
}
.mentor-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(135deg, #f0f7ff, #fff8eb);
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.mentor-photo-wrap {
  position: relative;
}
.mentor-photo-wrap img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.mentor-photo-badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 14px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.mentor-photo-badge .yrs {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
}
.mentor-name {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.mentor-degree {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}
.mentor-bio {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.mentor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.mentor-tag {
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

/* ─── COURSES ────────────────────────────────────────────── */
#courses {
  padding: 88px 0;
  background: #f8fbff;
}
.courses-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}
.course-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 9px 22px;
  border-radius: 40px;
  border: 2px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.course-img {
  height: 170px;
  background: var(--sky);
  position: relative;
  overflow: hidden;
}
.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 40px;
}
.badge-main {
  background: var(--navy);
  color: var(--white);
}
.badge-summer {
  background: var(--gold);
  color: var(--navy);
}
.course-body {
  padding: 20px;
}
.course-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.course-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.course-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}
.course-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
[data-tab] {
  display: none;
}
[data-tab].active {
  display: grid;
}

/* ─── COURSE MODAL ─────────────────────────────────────── */
.course-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.course-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.course-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 37, 69, 0.72);
  backdrop-filter: blur(8px);
}
.course-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  background: linear-gradient(135deg, #f0f7ff 0%, #fff8eb 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.course-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1rem;
  display: grid;
  place-items: center;
  z-index: 2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.course-modal-close:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.course-modal-head {
  padding-right: 64px;
  margin-bottom: 18px;
}
.course-modal-head .section-sub {
  max-width: 620px;
}
.course-modal-body {
  min-height: 0;
  overflow-y: auto;
  padding-right: 8px;
  margin-right: -8px;
  -webkit-overflow-scrolling: touch;
}
.course-modal-body .courses-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.course-modal-body .course-card {
  min-width: 0;
}
body.modal-open {
  overflow: hidden;
}
.course-modal-cta {
  display: none;
}

/* ─── BOOK DEMO ──────────────────────────────────────────── */
#demo {
  padding: 88px 0;
  background: var(--white);
}
.demo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.demo-left .section-title {
  margin-bottom: 14px;
}
.demo-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.demo-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.demo-point-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sky);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.demo-point-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}
.demo-point-text span {
  font-size: 0.82rem;
  color: var(--muted);
}
.demo-form {
  background: linear-gradient(135deg, #f0f7ff, #fff8eb);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group label .opt {
  color: var(--muted);
  font-weight: 400;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy);
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--navy2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 37, 69, 0.3);
}
#demo-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
#demo-success .tick {
  font-size: 3rem;
  margin-bottom: 14px;
}
#demo-success h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}
#demo-success p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
#testimonials {
  padding: 88px 0;
  background: var(--navy);
}
#testimonials .section-tag {
  background: rgba(245, 166, 35, 0.15);
  border-color: var(--gold);
}
#testimonials .section-title {
  color: var(--white);
}
#testimonials .section-sub {
  color: rgba(255, 255, 255, 0.6);
}
.testi-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 52px;
}
.testi-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar {
  display: none;
}
.testi-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px;
  min-width: 300px;
  max-width: 320px;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.testi-stars span {
  color: var(--gold);
  font-size: 1rem;
}
.testi-quote {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}
.testi-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.testi-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.testi-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ─── FAQ ────────────────────────────────────────────────── */
#faq {
  padding: 88px 0;
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  align-items: start;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--navy);
  user-select: none;
}
.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 300px;
}

/* ─── CONTACT / ENQUIRY ──────────────────────────────────── */
#contact {
  padding: 88px 0;
  background: #f8fbff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-info-card {
  background: var(--navy);
  border-radius: 24px;
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-info-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 30px;
  line-height: 1.7;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-icon svg {
  fill: var(--gold);
}
.contact-item-text .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.contact-item-text .value {
  font-size: 0.9rem;
  color: var(--white);
  margin-top: 3px;
  line-height: 1.5;
}
.wa-notice {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.8);
}
.enquiry-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.enquiry-form h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.enquiry-form p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.enquiry-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
  min-height: 100px;
}
.enquiry-form .form-group textarea:focus {
  border-color: var(--navy);
}
#enquiry-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
#enquiry-success .tick {
  font-size: 3rem;
  margin-bottom: 14px;
}
#enquiry-success h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 8px;
}
#enquiry-success p {
  color: var(--muted);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
#footer {
  background: var(--ink);
  padding: 48px 0 24px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .logo-text {
  color: var(--white);
}
.footer-brand .logo-text span {
  color: rgba(255, 255, 255, 0.45);
}
.footer-tagline {
  font-size: 0.85rem;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  font-size: 0.82rem;
  gap: 12px;
}
#footer .logo-icon img{
    border-radius: 50%;
}

/* ─── FLOATING WA ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  font-size: 1.6rem;
  animation: wa-pulse 2.5s infinite;
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
}
@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.8);
  }
}

/* ─── MOBILE NAV ─────────────────────────────────────────── */
#mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 998;
  flex-direction: column;
  gap: 18px;
}
#mobile-menu.open {
  display: flex;
}
#mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}
#mobile-menu .btn {
  justify-content: center;
}

/* ─── ANIMATE ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
  .hero-img-wrap img {
    height: 260px;
  }
  .mentor-card {
    grid-template-columns: 1fr;
  }
  .demo-wrap {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .course-modal {
    padding: 12px;
  }
  .course-modal-dialog {
    width: min(100vw - 24px, 920px);
    max-height: calc(100vh - 24px);
    padding: 22px 18px 18px;
    border-radius: 24px;
  }
  .course-modal-head {
    padding-right: 56px;
  }
}
@media (max-width: 600px) {
  .hero-stats {
    gap: 12px;
  }
  .stat-card {
    padding: 12px 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .testi-card {
    min-width: 260px;
  }
  .hero-tag-float,
  .hero-tag-float2 {
    display: none;
  }
  .demo-form {
    padding: 24px;
  }
  .enquiry-form {
    padding: 24px;
  }
  .contact-info-card {
    padding: 28px;
  }
  .course-modal {
    padding: 8px;
  }
  .course-modal-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100vh - 16px);
    padding: 18px 14px 14px;
    border-radius: 20px;
  }
  .course-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
  .course-modal-head {
    padding-right: 52px;
    margin-bottom: 14px;
  }
  .course-modal-body {
    padding-right: 4px;
    margin-right: -4px;
  }
  .footer-bottom{
    display: flex;
    flex-direction: column;
  }
  .course-modal-dialog {
    padding: 22px 18px;
    border-radius: 20px;
    text-align: center;
  }

  /* Hide full course list */
  .course-modal-body {
    display: none;
  }

  /* Center content */
  .course-modal-head {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .course-modal-head .section-title {
    font-size: 1.4rem;
  }

  .course-modal-head .section-sub {
    font-size: 0.95rem;
  }

  /* CTA button styling */
  .course-modal-cta {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
  }
}
