:root {
  --yellow: #f6c400;
  --yellow-dark: #e6b100;
  --navy: #0c2566;
  --red: #ef2d2f;
  --white: #ffffff;
  --text: #121212;
  --muted: #5f6470;
  --bg: #fff9e7;
  --soft: #fff3bf;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(12, 37, 102, 0.08);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fffdf4;
  line-height: 1.45;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  background: var(--navy);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
}

.brand-text h1 {
  margin: 0;
  font-size: 22px;
  color: #fff;
  line-height: 1.1;
}

.brand-text p {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff1c;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.social-circle:hover {
  background: var(--yellow);
  color: var(--navy);
}

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--navy);
  font-weight: 800;
  border: 2px solid rgba(12, 37, 102, 0.08);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.call-btn:hover {
  transform: translateY(-2px);
}

/* HERO */
.hero-section {
  padding: 34px 0 26px;
  background: linear-gradient(180deg, #fff6c9 0%, #fffdf6 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.hero-left {
  padding: 12px 6px 0 0;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.mini-badge.dark {
  background: var(--navy);
}

.hero-left h2 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  color: var(--navy);
  font-weight: 900;
}

.hero-left h2 span {
  color: var(--red);
}

.hero-short {
  margin: 0 0 18px;
  font-size: 20px;
  color: #222;
  font-weight: 700;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.point-box {
  background: #fff;
  border: 1px solid #f1e5aa;
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.point-box strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 4px;
}

.point-box span {
  color: var(--muted);
  font-size: 14px;
}

.teacher-line {
  display: inline-block;
  padding: 10px 18px;
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 700;
  color: var(--navy);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid #f3e4a4;
}

.form-top h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 24px;
}

.form-top p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

#enquiryForm {
  display: grid;
  gap: 10px;
}

.input-group {
  display: grid;
  gap: 5px;
}

.input-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.input-group input,
.input-group select {
  width: 100%;
  height: 42px;
  border: 1px solid #d9dfed;
  border-radius: 12px;
  padding: 0 12px;
  font-size: 14px;
  outline: none;
  color: var(--text);
  background: #fff;
}

.input-group input::placeholder {
  color: #8c92a0;
  font-size: 13px;
}

.input-group input:focus,
.input-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12, 37, 102, 0.08);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 4px;
}

.primary-btn {
  min-height: 44px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #d61e20);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(239, 45, 47, 0.18);
}

.primary-btn:hover {
  transform: translateY(-1px);
}

.form-call {
  white-space: nowrap;
}

.hero-poster-card {
  background: #fff;
  border-radius: 24px;
  padding: 10px;
  box-shadow: var(--shadow);
  border: 1px solid #f3e4a4;
}

.hero-poster-card img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* STRIP */
.info-strip {
  padding: 0 0 12px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.strip-card {
  background: #fff;
  padding: 14px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #f3e7b4;
  box-shadow: var(--shadow);
}

.strip-card span {
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}

/* SECTIONS */
.section-space {
  padding: 56px 0;
}

.light-bg {
  background: linear-gradient(180deg, #fff8de 0%, #fffdf5 100%);
}

.section-head h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
}

.center {
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.course-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid #f2e7b1;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin: 0 auto 14px;
}

.info-card h4,
.course-card h4 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--navy);
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.info-card li {
  margin-bottom: 8px;
}

.course-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* GALLERY */
.gallery-card {
  background: #fff;
  padding: 10px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid #f2e7b1;
}

.gallery-card img {
  border-radius: 16px;
  width: 100%;
}

/* QUOTE */
.quote-box {
  background: linear-gradient(135deg, var(--navy), #16398e);
  border-radius: 28px;
  color: #fff;
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.quote-box p {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 800;
}

.quote-box strong {
  color: var(--yellow);
  font-size: 17px;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #f2e7b1;
}

.faq-question {
  width: 100%;
  border: 0;
  background: #fff;
  color: var(--navy);
  text-align: left;
  padding: 18px 18px;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 15px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-card,
.map-card {
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid #f2e7b1;
}

.contact-card h3 {
  margin: 14px 0 18px;
  font-size: clamp(28px, 4vw, 46px);
  color: var(--navy);
  line-height: 1.05;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: #2b2b2b;
  font-size: 15px;
}

.contact-call {
  margin-top: 8px;
}

.map-card {
  min-height: 100%;
  overflow: hidden;
  padding: 8px;
}

.map-card iframe {
  min-height: 100%;
  border-radius: 18px;
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  padding: 20px 0 90px;
  margin-top: 10px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
}

.footer-brand h4 {
  margin: 0;
  color: #fff;
  font-size: 20px;
}

.footer-brand p {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* FLOATING WHATSAPP */
.floating-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1fb75d;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  animation: pulseBlink 1.4s infinite;
}

.wa-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes pulseBlink {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(31,183,93,0.45);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(31,183,93,0.12);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(31,183,93,0);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid,
  .contact-grid,
  .card-grid.three,
  .strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-left {
    grid-column: span 2;
  }

  .hero-right {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .header-wrap,
  .header-right,
  .footer-wrap,
  .footer-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .desktop-social {
    order: 2;
  }

  .header-call {
    order: 1;
  }

  .hero-grid,
  .contact-grid,
  .card-grid.three,
  .strip-grid,
  .two-col,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .hero-left h2 {
    font-size: 34px;
  }

  .hero-short {
    font-size: 17px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .form-call,
  .primary-btn,
  .call-btn {
    width: 100%;
  }

  .social-icons {
    flex-wrap: wrap;
  }

  .floating-wa {
    right: 10px;
    left: 10px;
    justify-content: center;
    bottom: 10px;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}