:root {
  --green: #009739;
  --yellow: #ffcc29;
  --blue: #0033a0;
  --white: #ffffff;
  --dark: #111111;
  --light-bg: #f5f5f5;
  --max-width: 1100px;
  --radius: 8px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* Ask a Question & Register Online buttons only */

.btn.secondary-cta {
    background: var(--blue) !important;
    color: #fff !important;
    border: 2px solid var(--blue) !important;
}

.btn.secondary-cta:hover,
.btn.secondary-cta:focus,
.btn.secondary-cta:active {
    background: var(--yellow) !important;
    color: #000 !important;
    border-color: var(--yellow) !important;
}



.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
}



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 3.5rem 0;
}

@media (min-width: 900px) {
  section {
    padding: 4.5rem 0;
  }
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h2 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  color: var(--blue);
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

p {
  margin-bottom: 0.75rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: #000;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  background: #ffd84f;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
}

/* Header */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Logo */

.logo-img {
  height: 80px;
  width: auto;
  border-radius: 8px; /* rounded corners */
}

/* Desktop Nav */

.nav-links {
  display: none;
  gap: 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

/* Hamburger */

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

@media (min-width: 900px) {
  .hamburger {
    display: none;
  }
}

/* Mobile Menu */

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.mobile-menu a {
  padding: 0.7rem 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu.active {
  display: flex;
  animation: slideDown 0.25s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero */

.hero {
  background: radial-gradient(circle at 0% 0%, rgba(0, 151, 57, 0.25), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(255, 204, 41, 0.25), transparent 55%),
              linear-gradient(135deg, #001b44, #0033a0);
  color: #ffffff;
  padding-top: 3rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

.hero-tag span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.hero h1 {
  font-size: 2.3rem;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

@media (min-width: 900px) {
  .hero h1 {
    font-size: 2.7rem;
  }
}

.hero-sub {
  font-size: 1rem;
  max-width: 28rem;
  margin-bottom: 1.4rem;
  opacity: 0.95;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  font-size: 0.8rem;
}

.hero-badge {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  opacity: 0.9;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  max-width: 360px;
  margin-left: auto;
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.hero-card-body {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.hero-card-meta {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Section helpers */

.section-muted {
  background: var(--light-bg);
}

.section-header {
  margin-bottom: 1.8rem;
  max-width: 40rem;
}

.section-header p {
  max-width: 32rem;
}

.section-cta {
  margin-top: 1.8rem;
  text-align: center;
}

/* Split benefits */

.split-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.split-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.split-list {
  list-style: none;
  font-size: 0.9rem;
}

.split-list li {
  margin-bottom: 0.35rem;
}

/* Proof strip */

.proof-strip {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.proof-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 150px;
}

.proof-item span {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.7rem;
}

/* How it works */

.steps-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 800px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

/* Classes */

.classes-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 900px) {
  .classes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.class-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  font-size: 0.9rem;
}

.class-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 0.4rem;
}

/* Gallery */

.gallery-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 160px;
}

.gallery-item span {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.7rem;
}

/* Locations */

.locations-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.location-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.location-map {
  width: 100%;
  border: 0;
  height: 220px;
}

.location-body {
  padding: 1rem 1.1rem 1.2rem;
  font-size: 0.9rem;
}

.location-meta {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 0.8rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Testimonials */

.testimonials-grid {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.9rem;
}

.testimonial-name {
  margin-top: 0.6rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--blue);
}

.testimonial-role {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Pricing */

.pricing-wrapper {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.5rem;
}

@media (min-width: 800px) {
  .pricing-wrapper {
    padding: 2rem 2rem;
  }
}

.pricing-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-card {
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1rem 1.1rem;
  background: #fafafa;
  font-size: 0.9rem;
}

.pricing-card.highlight {
  border-color: var(--green);
  background: #f3fff7;
}

.pricing-price {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0.4rem 0;
  color: var(--blue);
}

.pricing-note {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Instagram */

.instagram-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.instagram-embed iframe {
  width: 100%;
  border: 0;
  min-height: 420px;
}

/* Final CTA */

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.final-cta h2 {
  color: #fff;
  margin-bottom: 0.6rem;
}

.final-cta p {
  margin-bottom: 1.2rem;
  opacity: 0.95;
}

/* Footer */

footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem 0;
  font-size: 0.8rem;
  background: #fafafa;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

/* Sticky WhatsApp */

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.whatsapp-icon img {
  width: 40px;
  height: 32px;
  display: block;
}

@media (max-width: 480px) {
  .whatsapp-button span.label {
    display: none;
  }
  .whatsapp-button {
    padding: 0.7rem;
  }
  
  
  
  /* Random Image Change */
.random-image {
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
}

.random-image.fade-out {
    opacity: 0;
}