/* SalsabiilaKidz — Other Services (standalone) */

:root {
  --teal: #49a8a6;
  --teal-dark: #3a8f8d;
  --teal-deep: #2f7a78;
  --orange: #f58220;
  --orange-dark: #e06f12;
  --mustard: #d4a017;
  --cream: #fff8f0;
  --cream-soft: #fef6ee;
  --ink: #2c2a28;
  --muted: #5c5854;
  --white: #ffffff;
  --line: rgba(44, 42, 40, 0.1);
  --shadow: 0 12px 40px rgba(44, 42, 40, 0.08);
  --radius: 18px;
  --header-h: 78px;
  --font-display: "League Spartan", sans-serif;
  --font-body: "Lexend Deca", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-deep);
  text-decoration: none;
}

a:hover {
  color: var(--orange);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo img {
  width: 150px;
  height: auto;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.site-nav a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(73, 168, 166, 0.12);
  color: var(--teal-deep);
}

.header-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--orange);
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--orange-dark);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(245, 130, 32, 0.28);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-whatsapp {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(73, 168, 166, 0.28);
}

.btn-whatsapp:hover {
  background: var(--teal-dark);
}

.btn-outline {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal-deep);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--teal-deep);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 6.5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 15%, rgba(245, 130, 32, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(73, 168, 166, 0.22), transparent 50%),
    linear-gradient(165deg, #fff 0%, var(--cream) 45%, #e8f5f4 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.7) 0 18%, transparent 19%),
    radial-gradient(circle at 72% 60%, rgba(255, 255, 255, 0.55) 0 12%, transparent 13%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
}

.brand-kicker {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
  color: var(--teal);
  margin-bottom: 0.35rem;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.45em;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

/* Sections */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head-tight {
  margin-top: 3rem;
  margin-bottom: 1.75rem;
}

.section-head h2,
.section-head h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--ink);
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.age-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* Service overview cards */
.services-overview {
  padding: 4.5rem 0;
  background: var(--white);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #f0faf9 0%, #ffffff 55%);
  border: 1px solid rgba(73, 168, 166, 0.2);
  box-shadow: var(--shadow);
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(44, 42, 40, 0.12);
  color: inherit;
}

.service-card-pro {
  background: linear-gradient(160deg, #fff4ea 0%, #ffffff 55%);
  border-color: rgba(245, 130, 32, 0.25);
}

.service-card-transit {
  background: linear-gradient(160deg, #fff8e0 0%, #ffffff 55%);
  border-color: rgba(212, 160, 23, 0.3);
}

.service-card-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--teal-deep);
  margin-bottom: 0.75rem;
}

.service-card-pro .service-card-tag {
  color: var(--orange-dark);
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal);
}

.service-card:hover .service-card-link {
  color: var(--orange);
}

/* Detail sections */
.service-detail {
  padding: 4.5rem 0;
}

.care-section {
  background:
    linear-gradient(180deg, #eef8f7 0%, var(--cream-soft) 100%);
}

.pro-section {
  background: var(--white);
}

.transit-section {
  background:
    linear-gradient(180deg, #fff6d9 0%, var(--cream) 55%, #fff 100%);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.detail-grid-reverse .detail-copy {
  order: 2;
}

.detail-grid-reverse .detail-media {
  order: 1;
}

.detail-copy h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.75rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.detail-media {
  margin: 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.detail-media img {
  width: 100%;
}

.feature-list {
  margin: 1.25rem 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
}

.trial-callout {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(73, 168, 166, 0.12);
  border-left: 4px solid var(--teal);
}

.trial-callout strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal-deep);
}

.trial-callout span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Care pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-col {
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  color: var(--white);
  box-shadow: var(--shadow);
}

.price-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.price-col li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.92rem;
}

.price-col li:last-child {
  border-bottom: 0;
}

.price-col strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  white-space: nowrap;
}

.price-teal {
  background: linear-gradient(165deg, var(--teal) 0%, var(--teal-deep) 100%);
}

.price-orange {
  background: linear-gradient(165deg, var(--orange) 0%, var(--orange-dark) 100%);
}

.price-mustard {
  background: linear-gradient(165deg, #e0b422 0%, #b8860b 100%);
}

.notice-banner {
  margin: 1.5rem 0 0;
  padding: 0.95rem 1.25rem;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

.fine-print {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.fine-print h5 {
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.fine-print li {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.fine-print strong {
  color: var(--ink);
}

/* Pro packages */
.fee-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  justify-content: center;
}

.fee-pills span {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-size: 1.05rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.package-card {
  background: linear-gradient(165deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  box-shadow: var(--shadow);
}

.package-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.package-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  margin-bottom: 1rem;
}

.package-price span {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

.package-card li {
  font-size: 0.9rem;
  padding: 0.3rem 0;
  opacity: 0.95;
}

.schedule-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.1rem 1.4rem;
  background: var(--teal);
  color: var(--white);
  border-radius: 14px;
  font-size: 0.98rem;
}

.schedule-bar p {
  margin: 0;
}

/* FAQ */
.faq-section {
  padding: 4.5rem 0;
  background: var(--white);
}

.faq-groups {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.faq-group-title {
  font-size: 1.35rem;
  color: var(--teal-deep);
  margin-bottom: 0.9rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid rgba(73, 168, 166, 0.25);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream-soft);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item.is-open {
  box-shadow: var(--shadow);
  border-color: rgba(73, 168, 166, 0.35);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.1rem 1.25rem;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(73, 168, 166, 0.15);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--teal-deep);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  left: 8px;
  top: 13px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  left: 13px;
  top: 8px;
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 1.25rem 1.2rem;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.faq-answer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-answer li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
}

.faq-answer li:last-child {
  margin-bottom: 0;
}

.faq-answer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--orange);
}

.faq-answer[hidden] {
  display: none;
}

/* Enroll CTA */
.enroll-cta {
  padding: 4rem 0;
  background:
    linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 55%, #256967 100%);
  color: var(--white);
  text-align: center;
}

.enroll-inner h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 0.4em;
}

.enroll-inner p {
  opacity: 0.92;
  margin-bottom: 1.5rem;
}

.enroll-cta .hero-actions {
  justify-content: center;
}

/* Footer */
.site-footer {
  background: #1f3d3c;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand img {
  width: 140px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 0.4rem 0.55rem;
}

.site-footer h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
  color: #ffc48a;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer p {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
  margin: 0;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .service-cards,
  .pricing-grid,
  .fine-print {
    grid-template-columns: 1fr;
  }

  .package-grid {
    grid-template-columns: 1fr 1fr;
  }

  .detail-grid,
  .detail-grid-reverse {
    grid-template-columns: 1fr;
  }

  .detail-grid-reverse .detail-copy,
  .detail-grid-reverse .detail-media {
    order: initial;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .header-phone {
    display: none;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1.25rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .schedule-bar {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 1.5rem);
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .service-card:hover {
    transform: none;
  }
}
