:root {
  --navy: #12265a;
  --navy-2: #2d4073;
  --navy-3: #233767;
  --cream: #fcf9f4;
  --pink: #feb9cd;
  --pink-soft: #fa9db8;
  --yellow: #ffdd98;
  --orange: #f6941d;
  --magenta: #af0073;
  --sky: #46b4df;
  --text: #3d3d3d;
  --muted: #70747f;
  --white: #fff;
  --max: 1100px;
  --font: "Nunito", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select { font: inherit; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Promo banner */
.promo {
  background: #ee5759;
  color: var(--white);
  text-align: center;
  padding: .65rem 2.5rem .65rem 1rem;
  position: relative;
  font-weight: 700;
}
.promo[hidden] { display: none; }
.promo button {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

/* Header */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 10px #00000014;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.brand img { height: 48px; width: auto; }
.brand-text strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}
.brand-text span {
  display: block;
  color: var(--navy);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .28em;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem 1.1rem;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--navy);
  font-weight: 800;
  padding: .35rem .2rem;
}
.nav-links a:hover { color: var(--orange); }
.nav-links .has-sub { position: relative; }
.nav-links .sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px dashed var(--pink);
  border-radius: .5rem;
  min-width: 140px;
  padding: .4rem 0;
  box-shadow: 0 8px 20px #00000014;
}
.nav-links .has-sub:hover .sub,
.nav-links .has-sub:focus-within .sub { display: block; }
.nav-links .sub a {
  display: block;
  padding: .45rem .9rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 800;
  border: 0;
  border-radius: .4rem;
  padding: .65rem 1.15rem;
  cursor: pointer;
  transition: filter .15s, transform .15s;
}
.btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-navy { background: var(--navy-3); }
.btn-sm { padding: .5rem .9rem; font-size: .95rem; }
.btn-outline {
  background: transparent;
  color: var(--navy-3) !important;
  border: 2px solid var(--navy-3);
}
.btn-outline:hover { background: var(--navy-3); color: var(--white) !important; }

/* Hero — original branded banner art (paka / FiP) */
.hero {
  min-height: 500px;
  background: url("../assets/images/paka.png") center / cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: 36rem;
  padding: 2.5rem 0 3rem;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.hero h1 {
  font-size: clamp(1.65rem, 3.8vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: .75rem;
}
.hero .hero-lead {
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  margin-bottom: .45rem;
  font-weight: 700;
}
.hero .hero-sub {
  font-size: clamp(.98rem, 2vw, 1.15rem);
  margin-bottom: .85rem;
  font-weight: 600;
}
.hero .btn { margin-top: .75rem; }

/* Sections */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--white); }
.section-title {
  text-align: center;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.section-title::after {
  content: "";
  display: block;
  height: .45rem;
  margin-top: .35rem;
  background: linear-gradient(90deg, var(--yellow), var(--pink));
  border-radius: 999px;
}

.grid-why {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}
.why-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 600;
  color: var(--text);
  font-size: .95rem;
}
.why-item img { width: 44px; height: 44px; }

.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border-radius: .75rem;
  box-shadow: 0 18px 30px #0000000f;
  padding: 1.4rem 1rem;
  text-align: center;
}
.card img {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
  border-radius: 50%;
}
.card strong {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.goals {
  background: var(--yellow);
  border-radius: 1rem;
  padding: 2rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.goals h3 {
  color: var(--navy);
  font-weight: 900;
  margin-bottom: .35rem;
}
.goals p { color: var(--text); font-weight: 600; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .75rem;
}
.gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: .5rem;
  border: 3px solid var(--white);
  box-shadow: 0 4px 14px #00000012;
}

.enroll {
  background: var(--pink);
  color: var(--white);
  text-align: center;
  padding: 3rem 1rem;
  border-radius: 0;
}
.enroll h2 {
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 900;
  margin-bottom: .5rem;
}
.enroll a.phone {
  display: block;
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: .75rem;
  text-decoration: underline;
}
.enroll .or { font-weight: 700; margin-bottom: .75rem; }

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
}
.team-card {
  background: var(--white);
  border-radius: .6rem;
  overflow: hidden;
  box-shadow: 0 8px 18px #00000010;
  text-align: center;
}
.team-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: #f3f5f9;
  padding: .5rem;
}
.team-card div { padding: .7rem .5rem 1rem; }
.team-card h3 { color: var(--navy); font-size: 1rem; font-weight: 900; }
.team-card p { color: var(--muted); font-size: .8rem; }

.lead {
  text-align: center;
  max-width: 40rem;
  margin: -1rem auto 2rem;
  color: var(--navy);
  font-weight: 700;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.quote {
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
  min-height: 150px;
  font-weight: 600;
}
.quote.q1 { background: var(--magenta); color: var(--white); }
.quote.q2 { background: var(--yellow); color: var(--navy); }
.quote.q3 { background: var(--sky); color: var(--white); }
.quote footer {
  margin-top: 1rem;
  font-weight: 900;
  color: var(--navy);
}

/* Inner pages */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  padding: 3.5rem 0 2.75rem;
}
.page-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  max-width: 36rem;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.page-hero p { max-width: 34rem; font-weight: 600; opacity: .95; }
.page-hero ul {
  margin: 1rem 0 1.25rem;
  display: grid;
  gap: .35rem;
}
.page-hero li {
  font-weight: 700;
  padding-left: 1.2rem;
  position: relative;
}
.page-hero li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.feature-list {
  display: grid;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}
.feature-list article {
  background: var(--white);
  border-radius: .75rem;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 8px 18px #0000000c;
  border-left: 4px solid var(--orange);
}
.feature-list h3 {
  color: var(--navy);
  font-weight: 900;
  margin-bottom: .3rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}
.split img {
  border-radius: 1rem;
  box-shadow: 0 12px 28px #00000018;
}

/* Form */
.form-wrap {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 14px 30px #00000012;
  max-width: 720px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.form-grid .full { grid-column: 1 / -1; }
.form-wrap label {
  display: block;
  font-size: .85rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .25rem;
}
.form-wrap input,
.form-wrap select {
  width: 100%;
  border: 1px solid #d7d7d7;
  border-radius: .4rem;
  padding: .7rem .75rem;
  background: var(--white);
}
.form-wrap input:focus,
.form-wrap select:focus {
  outline: 2px solid var(--sky);
  border-color: transparent;
}
.phone-row {
  display: flex;
  gap: .4rem;
}
.phone-row span {
  background: #eee;
  border-radius: .4rem;
  padding: .7rem .65rem;
  font-weight: 800;
  color: var(--navy);
}
.form-wrap .btn { width: 100%; margin-top: .4rem; }

/* Footer */
.site-footer { color: var(--white); margin-top: 2rem; }
.footer-main {
  background: var(--navy-2);
  padding: 3rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand img { height: 52px; margin-bottom: .5rem; }
.footer-brand strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
}
.footer-brand .tag {
  letter-spacing: .28em;
  font-size: .65rem;
  font-weight: 900;
  margin-bottom: .75rem;
}
.footer-brand p { opacity: .92; font-size: .95rem; }
.site-footer h3 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.contact-row {
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.contact-row img { width: 28px; height: auto; margin-top: .15rem; }
.contact-row a { text-decoration: underline; }
.hours {
  background: var(--magenta);
  border-radius: 1rem;
  padding: .85rem 1rem;
  text-align: center;
  font-weight: 900;
  margin-bottom: 1rem;
}
.map {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: .6rem;
}
.footer-copy {
  background: var(--navy-3);
  text-align: center;
  padding: .9rem 1rem;
  font-size: .9rem;
}

/* WhatsApp */
.wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 2px 2px 8px #00000040;
  z-index: 60;
  font-size: 1.8rem;
}
.wa:hover { filter: brightness(1.08); }

/* Responsive */
@media (max-width: 900px) {
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .goals { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: .75rem 1rem 1rem;
    box-shadow: 0 10px 20px #00000018;
  }
  .nav-links.open { display: flex; }
  .nav-links .sub {
    position: static;
    display: block;
    border: 0;
    box-shadow: none;
    padding-left: .75rem;
  }
  .hero {
    background: url("../assets/images/FiP.png") center top / cover no-repeat;
    min-height: 520px;
    align-items: flex-start;
  }
  .hero-inner {
    padding: 1.75rem 0 2rem;
    max-width: 100%;
  }
}
