/* ── FONTS ── */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── TOKENS ── */
:root {
  --color-sky:    #5bc8f5;
  --color-sky-dark: #2fa8d8;
  --color-sky-light: #d6f0fc;
  --color-sunny:  #f9c22e;
  --color-coral:  #f05a5a;
  --color-coral-light: #fde8e8;
  --color-mint:   #72cc72;
  --color-mint-light: #e4f7e4;
  --color-white:  #ffffff;
  --color-cloud:  #f4f9fd;
  --color-slate:  #3a3a3a;
  --color-slate-light: #6b6b6b;
  --color-border: #e0eef7;

  --font: 'Nunito', system-ui, sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);

  --transition: 0.25s ease;
  --max-w: 1100px;
  --nav-h: 72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-slate);
  background: var(--color-white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(91,200,245,.18);
}
.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  height: 52px;
  width: auto;
}
.nav__links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav__links a {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-slate);
  transition: background var(--transition), color var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  background: var(--color-sky-light);
  color: var(--color-sky-dark);
}
.nav__cta {
  background: var(--color-coral) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.5rem 1.1rem !important;
}
.nav__cta:hover {
  background: #d94a4a !important;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav__burger:hover { background: var(--color-sky-light); }
.nav__burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--color-slate);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  background: url('images/vecteezy_abstract-colorful-sky-rainbow-background-with-clouds-summer_9096290.jpg') center center / cover no-repeat;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem 8rem;
  overflow: hidden;
}
.hero__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.35);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 0.35rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a7fa0;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(0,90,140,.25);
  margin-bottom: 1.25rem;
}
.hero p {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin: 0 auto 2.2rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--primary {
  background: var(--color-coral);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(240,90,90,.35);
}
.btn--primary:hover { background: #d94a4a; }
.btn--ghost {
  background: rgba(255,255,255,0.25);
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--ghost:hover { background: rgba(255,255,255,0.4); }
.btn--outline {
  background: transparent;
  color: var(--color-sky-dark);
  border: 2px solid var(--color-sky);
}
.btn--outline:hover { background: var(--color-sky-light); }

/* cloud wave at bottom of hero */
.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero__wave svg { display: block; width: 100%; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, #5bc8f5 0%, #9de0f8 100%);
  padding: 4rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0,90,140,.2);
  margin-bottom: 0.75rem;
}
.page-hero p {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto;
}
.page-hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.page-hero__wave svg { display: block; width: 100%; }

/* ── SECTIONS ── */
.section {
  padding: 5rem 1.5rem;
}
.section--cloud { background: var(--color-cloud); }
.section--white { background: var(--color-white); }
.container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sky-dark);
  background: var(--color-sky-light);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-slate);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.section-title span { color: var(--color-sky-dark); }
.section-sub {
  font-size: 1.05rem;
  color: var(--color-slate-light);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ── HIGHLIGHT CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.card__icon--sky   { background: var(--color-sky-light); }
.card__icon--sunny { background: #fef6d6; }
.card__icon--coral { background: var(--color-coral-light); }
.card__icon--mint  { background: var(--color-mint-light); }
.card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--color-slate);
}
.card p {
  font-size: 0.92rem;
  color: var(--color-slate-light);
  line-height: 1.55;
}

/* ── SERVICES CARDS ── */
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
}
.service-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-slate);
}
.service-card .tag {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  background: var(--color-sky-light);
  color: var(--color-sky-dark);
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--color-slate);
}
.service-list li::before {
  content: "✓";
  color: var(--color-mint);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── FEATURES LIST ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-border);
  transition: border-color var(--transition);
}
.feature-item:hover { border-color: var(--color-sky); }
.feature-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.feature-item h4 {
  font-size: 0.97rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.feature-item p {
  font-size: 0.87rem;
  color: var(--color-slate-light);
}

/* ── FACEBOOK FEED ── */
.fb-feed-wrap {
  display: flex;
  justify-content: center;
}
.fb-feed-wrap iframe {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 100%;
}

/* ── GALLERY ── */
.gallery-fallback {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.gallery-fallback__item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-sky-dark);
  border: 2px solid var(--color-border);
}
.gallery-fallback__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-slate-light);
  margin-top: 1.5rem;
  font-style: italic;
}

/* ── STAFF GRID ── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.staff-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.staff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.staff-card__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  overflow: hidden;
}
.staff-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.staff-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.staff-card__role {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-sky-dark);
  margin-bottom: 0.75rem;
}
.staff-card p {
  font-size: 0.88rem;
  color: var(--color-slate-light);
  line-height: 1.55;
}

/* ── WHY STRIP ── */
.why-strip {
  background: linear-gradient(135deg, var(--color-sky) 0%, var(--color-sky-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  color: var(--color-white);
}
.why-item h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.why-item p {
  font-size: 0.88rem;
  opacity: 0.88;
}
.why-item__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* ── ACTIVITIES ── */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.activity-card {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  border: 2px solid var(--color-border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--transition);
}
.activity-card:hover { border-color: var(--color-sunny); }
.activity-card__day {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-sunny);
  background: #fef6d6;
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.activity-card h4 {
  font-size: 0.97rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.activity-card p {
  font-size: 0.87rem;
  color: var(--color-slate-light);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}
.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-slate-light);
  margin-bottom: 0.2rem;
}
.contact-detail p, .contact-detail a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-slate);
}
.contact-detail a:hover { color: var(--color-sky-dark); }

/* ── FORM ── */
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-slate);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.97rem;
  color: var(--color-slate);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-sky);
  box-shadow: 0 0 0 3px rgba(91,200,245,.18);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-msg {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  display: none;
}
.form-msg.success { display: block; background: var(--color-mint-light); color: #2d7a2d; }
.form-msg.error   { display: block; background: var(--color-coral-light); color: #b22; }
/* honeypot */
.form-group--honey { display: none; }

/* ── MAP ── */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-border);
  margin-top: 2rem;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
}

/* ── CLOSED NOTICE ── */
.notice {
  background: #fef6d6;
  border: 2px solid var(--color-sunny);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.93rem;
}
.notice__icon { font-size: 1.3rem; flex-shrink: 0; }
.notice strong { color: var(--color-slate); }

/* ── FOOTER ── */
.footer {
  background: var(--color-slate);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 1.5rem 2rem;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo { height: 48px; width: auto; margin-bottom: 1rem; }
.footer__about {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 300px;
}
.footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition);
}
.footer__social a:hover { background: var(--color-sky-dark); }
.footer h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--color-sky); }
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.88rem;
}
.footer__bottom {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── WHATSAPP FAB ── */
.wa-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wa-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
.wa-fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.divider {
  border: none;
  border-top: 2px solid var(--color-border);
  margin: 3rem 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; position: fixed; top: 64px; left: 0; width: 100%; background: var(--color-white); flex-direction: column; padding: 1rem 1.5rem 1.5rem; box-shadow: var(--shadow-md); gap: 0.25rem; border-bottom: 2px solid var(--color-border); }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 0.65rem 1rem; border-radius: var(--radius-sm); }
  .nav__burger { display: flex; }

  .hero { min-height: 70vh; padding: 3rem 1.25rem 7rem; }
  .section { padding: 3.5rem 1.25rem; }
  .why-strip { padding: 2rem 1.5rem; border-radius: var(--radius-md); }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { gap: 2rem; }
}

@media (max-width: 420px) {
  .cards-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
}
