@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────── */
:root {
  --orange:        #F97316;
  --orange-dark:   #C2410C;
  --orange-text:   #7C2D12;
  --cream:         #FFFBEB;
  --gold:          #F59E0B;
  --straw:         #FDE68A;
  --cinnamon:      #B45309;
  --cinnamon-bg:   #FEF2EE;
  --cinnamon-dark: #92400E;
  --text-dark:     #44403C;
  --text-body:     #78716C;
  --text-light:    #A8A29E;
  --white:         #FFFFFF;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(68,64,60,.08), 0 1px 2px rgba(68,64,60,.06);
  --shadow:    0 4px 16px rgba(68,64,60,.10), 0 2px 6px rgba(68,64,60,.08);
  --shadow-lg: 0 10px 40px rgba(68,64,60,.12), 0 4px 16px rgba(68,64,60,.08);
  --max-w: 1140px;
  --font-display: 'Nunito', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { max-width: 680px; }

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

/* ── Layout ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: var(--orange-text);
}
.btn-primary:hover { background: var(--orange-dark); color: var(--white); }

.btn-boarding {
  background: var(--cinnamon);
  color: var(--white);
}
.btn-boarding:hover { background: var(--cinnamon-dark); }

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--orange-text); }

.btn-ghost {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.28); }

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ── Navigation ──────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.nav--scrolled {
  background: rgba(255, 251, 245, 0.96);
  border-bottom: 1px solid var(--straw);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 16px;
  transition: padding 0.3s ease;
}
.nav.nav--scrolled .nav-inner {
  padding: 8px 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-dark);
  flex-shrink: 0;
}
.nav-logo span { color: var(--orange); }
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: color 0.15s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #FFF7ED 0%, var(--cream) 50%, #FEF3C7 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '🐾';
  position: absolute;
  top: -20px; right: -10px;
  font-size: 18rem;
  opacity: 0.04;
  transform: rotate(-20deg);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--straw);
  color: var(--cinnamon);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.hero h1 {
  margin-bottom: 20px;
  color: var(--text-dark);
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 12px;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
}
.hero-trust-item .check {
  width: 20px; height: 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--white);
  flex-shrink: 0;
}

/* hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-photo-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--straw), #FDBA74);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.hero-photo-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-photo-badge .rating {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-dark);
  line-height: 1;
}
.hero-photo-badge .rating-stars { color: var(--gold); font-size: 0.9rem; }
.hero-photo-badge .rating-count { font-size: 0.75rem; color: var(--text-light); }

/* ── Trust bar ───────────────────────────────────────── */
.trust-bar {
  background: var(--text-dark);
  padding: 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.1);
  flex: 1;
  min-width: 180px;
  justify-content: center;
}
.trust-item:last-child { border-right: none; }
.trust-item-icon { font-size: 1.3rem; }
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}
.trust-item span { font-size: 0.78rem; opacity: 0.7; }

/* ── Services ────────────────────────────────────────── */
.services { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 48px; }
.services-header p { margin: 12px auto 0; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-card {
  border-radius: var(--border-radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.service-card-daycare {
  background: var(--cream);
  border: 1.5px solid var(--straw);
  box-shadow: var(--shadow-sm);
}
.service-card-daycare::before { background: var(--orange); }
.service-card-boarding {
  background: var(--cinnamon-bg);
  border: 1.5px solid #FDBA74;
  box-shadow: var(--shadow-sm);
}
.service-card-boarding::before { background: var(--cinnamon); }

.service-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card-daycare .service-card-icon { background: #FDE68A; }
.service-card-boarding .service-card-icon { background: #FDBA74; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.95rem; margin-bottom: 24px; }
.service-card ul {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
}
.service-card ul li::before {
  content: '✓';
  font-family: var(--font-display);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-card-daycare ul li::before { color: var(--orange); }
.service-card-boarding ul li::before { color: var(--cinnamon); }

.service-card-price {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
}
.service-card-daycare .service-card-price {
  background: var(--straw);
  color: var(--orange-text);
}
.service-card-boarding .service-card-price {
  background: #FDE68A;
  color: var(--cinnamon-dark);
}

/* ── Why us ──────────────────────────────────────────── */
.why-us { background: #FFF7ED; }
.why-us-header { text-align: center; margin-bottom: 48px; }
.why-us-header p { margin: 12px auto 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--cream);
  border-radius: var(--border-radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--straw);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.why-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.why-card p { font-size: 0.9rem; max-width: none; }

/* ── How it works ────────────────────────────────────── */
.how-it-works { background: var(--cream); }
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.how-text h2 { margin-bottom: 16px; }
.how-text > p { margin-bottom: 32px; }
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.how-step-num {
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--orange-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.how-step-content h4 { margin-bottom: 4px; }
.how-step-content p { font-size: 0.9rem; max-width: none; }

.how-visual {
  background: linear-gradient(145deg, var(--straw) 0%, #FDBA74 100%);
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.how-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* ── Nervous dogs ────────────────────────────────────── */
.nervous-dogs {
  background: var(--cinnamon-bg);
  border-top: 3px solid #FDBA74;
  border-bottom: 3px solid #FDBA74;
}
.nervous-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.nervous-text h2 { margin-bottom: 16px; }
.nervous-text h2 em { font-style: normal; color: var(--cinnamon); }
.nervous-text p { margin-bottom: 16px; }
.nervous-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.tag {
  background: var(--white);
  color: var(--cinnamon);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid #FDBA74;
}
.nervous-photo {
  border-radius: 20px;
  background: linear-gradient(145deg, #FDBA74, var(--cinnamon-bg));
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.nervous-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ── Reviews ─────────────────────────────────────────── */
.reviews { background: var(--text-dark); }
.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-header h2 { color: var(--white); }
.reviews-header p { color: rgba(255,255,255,0.7); margin: 12px auto 0; }
.reviews-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 8px 20px;
  margin-top: 20px;
  color: var(--white);
}
.reviews-rating-badge .stars { color: var(--gold); font-size: 1.1rem; }
.reviews-rating-badge span { font-family: var(--font-display); font-weight: 700; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars { color: var(--gold); font-size: 1rem; }
.review-dog-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
  margin-bottom: 4px;
}
.review-dog-emoji {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  margin-bottom: 4px;
}

.review-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.review-service-daycare {
  background: rgba(249,115,22,0.2);
  color: #FB923C;
}
.review-service-boarding {
  background: rgba(180,83,9,0.2);
  color: #D97706;
}
.review-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  max-width: none;
}
.review-author {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}
.review-author strong {
  display: block;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── Meet us ─────────────────────────────────────────── */
.meet-us { background: var(--cream); }
.meet-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.meet-text h2 { margin-bottom: 16px; }
.meet-text p { margin-bottom: 16px; }
.meet-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.meet-credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}
.meet-credential-dot {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.meet-photo {
  border-radius: 20px;
  background: linear-gradient(145deg, #FDE68A, var(--straw));
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 360px;
  margin: 0 auto;
}
.meet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* ── Multilingual ────────────────────────────────────── */
.multilingual {
  background: #FFF7ED;
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid var(--straw);
}
.multilingual-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.multilingual h3 { margin-bottom: 10px; }
.multilingual p { margin: 0 auto; color: var(--text-body); }
.language-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.language-pill {
  background: var(--cream);
  border: 1.5px solid var(--straw);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* ── CTA Banner ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #EA580C 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '🐾';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14rem;
  opacity: 0.08;
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin: 0 auto 32px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  padding: 56px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; max-width: 300px; }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.15s;
}
.footer-social a:hover { background: rgba(255,255,255,0.2); }
.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255,255,255,0.75);
  flex-shrink: 0;
}

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-col .contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer-col .contact-line span { font-size: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); max-width: none; }
.footer-license {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ── Floating WhatsApp ───────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  transition: all 0.3s ease;
}
.whatsapp-float-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  animation: pulse-wa 3s infinite;
}
.whatsapp-float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-label {
  background: var(--text-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: 100px;
  margin-right: 10px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@keyframes pulse-wa {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,.35); }
  50%  { box-shadow: 0 4px 28px rgba(37,211,102,.6), 0 0 0 8px rgba(37,211,102,.1); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,.35); }
}

/* ── Page hero (inner pages) ─────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #FFF7ED 0%, var(--cream) 100%);
  padding: 60px 0;
  border-bottom: 1px solid var(--straw);
}
.page-hero-daycare { background: linear-gradient(135deg, #FFF7ED, #FDE68A 100%); }
.page-hero-boarding { background: linear-gradient(135deg, #FEF2EE, #FDBA74 100%); }
.page-hero-label { font-size: 0.85rem; color: var(--orange); font-weight: 600; margin-bottom: 8px; font-family: var(--font-display); letter-spacing: 0.05em; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; max-width: 600px; }

/* ── Day in the life / Timeline ─────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--straw);
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding: 0 0 32px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  z-index: 1;
  border: 4px solid var(--cream);
}
.timeline-content { padding-top: 10px; }
.timeline-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--orange);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.timeline-content h4 { margin-bottom: 4px; }
.timeline-content p { font-size: 0.9rem; max-width: none; }

/* ── Pricing table ───────────────────────────────────── */
.pricing-card {
  background: var(--cream);
  border: 2px solid var(--straw);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
}
.pricing-card-boarding {
  background: var(--cinnamon-bg);
  border-color: #FDBA74;
}
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--cream);
  border: 1px solid var(--straw);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-dark);
  gap: 12px;
}
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--straw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--orange-text);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-body);
}
.faq-item.open .faq-a { display: block; }

/* ── Content page grid ───────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}
.sticky-cta-card {
  position: sticky;
  top: 100px;
  background: var(--cream);
  border: 1.5px solid var(--straw);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.sticky-cta-card-boarding {
  background: var(--cinnamon-bg);
  border-color: #FDBA74;
}
.sticky-cta-card h3 { margin-bottom: 8px; }
.sticky-cta-card p { font-size: 0.9rem; margin-bottom: 20px; }
.sticky-cta-divider {
  border: none;
  border-top: 1px solid var(--straw);
  margin: 20px 0;
}
.sticky-cta-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.sticky-cta-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}
.sticky-cta-meta-item span { font-size: 1rem; }

/* ── Contact page ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-options { display: flex; flex-direction: column; gap: 16px; }
.contact-option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cream);
  border: 1.5px solid var(--straw);
  border-radius: var(--border-radius);
  padding: 24px;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: inherit;
}
.contact-option:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-option-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-option h4 { margin-bottom: 4px; }
.contact-option p { font-size: 0.88rem; max-width: none; margin-bottom: 4px; }
.contact-option a-inline {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.88rem;
}
.contact-info-box {
  background: #FFF7ED;
  border: 1px solid var(--straw);
  border-radius: var(--border-radius);
  padding: 32px;
}
.contact-info-box h3 { margin-bottom: 20px; }

/* ── About page ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--straw);
}
.credential-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--straw);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.credential-item h5 { margin-bottom: 2px; font-size: 0.88rem; }
.credential-item p { font-size: 0.82rem; max-width: none; }

/* ── Utilities ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-cinnamon { color: var(--cinnamon); }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero { padding-top: 24px; }
  .nav-links, .nav-cta .btn:not(.nav-wa) { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 16px; display: flex; flex-direction: column; }
  .hero-text { display: contents; }
  .hero-badge { order: 1; margin-bottom: 12px; }
  .hero h1 { order: 2; margin-bottom: 12px; }
  .hero-tagline { order: 3; margin-bottom: 0; }
  .hero-visual { order: 4; width: 100%; }
  .hero-ctas { order: 5; margin-bottom: 0; }
  .hero-desc { order: 6; margin-bottom: 16px; }
  .hero-trust { order: 7; }
  .hero-photo-main { max-width: 100%; aspect-ratio: 16/9; }
  .hero-photo-wrap { max-width: 100%; }
  .hero-carousel-slide { aspect-ratio: 16/9 !important; }
  .hero::before { font-size: 8rem; }

  .trust-bar-inner { flex-direction: column; gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; }
  .how-visual { order: -1; }
  .nervous-inner { grid-template-columns: 1fr; }
  .nervous-photo { order: -1; aspect-ratio: 16/9; }
  .reviews-grid { grid-template-columns: 1fr; }
  .meet-inner { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sticky-cta-card { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; gap: 12px; }
}

/* ── Mobile nav (open state) ─────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-top: 1px solid var(--straw);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--straw);
  font-size: 1rem;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }

/* ── Photo placeholder styles ────────────────────────── */
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(68,64,60,0.35);
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-align: center;
}
.photo-placeholder-emoji { font-size: 3rem; }

/* ── Nav logo image ───────────────────────────────────── */
.nav-logo-img {
  height: 64px;
  width: auto;
  max-width: none;
  display: block;
  mix-blend-mode: multiply;
}

/* ── Footer logo — light logo on dark background ─────── */
.footer-brand .nav-logo-img {
  mix-blend-mode: normal;
  background: white;
  border-radius: 8px;
  padding: 3px 6px;
}

/* ── Hero carousel ────────────────────────────────────── */
.hero-carousel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, var(--straw), #FDBA74);
}
.hero-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.hero-carousel-slide {
  min-width: 100%;
  aspect-ratio: 4/5;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.hero-carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.88);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: background 0.15s;
  z-index: 2;
}
.hero-carousel-btn:hover { background: var(--white); }
.hero-carousel-prev { left: 10px; }
.hero-carousel-next { right: 10px; }
.hero-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.hero-carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.hero-carousel-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* ── Reviews filter + slider ──────────────────────────── */
.reviews-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.filter-btn.active {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
}

.reviews-slider-wrap { position: relative; }
.reviews-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.reviews-nav-btn:hover:not(:disabled) { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.reviews-nav-btn:disabled { opacity: 0.3; cursor: default; }
.reviews-slider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: opacity 0.2s;
}
.review-slide { transition: opacity 0.2s; }
.review-slide.rs-hidden { display: none !important; }
.reviews-empty {
  display: none;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  padding: 32px 0;
  grid-column: 1/-1;
}

/* ── Restrictions section ─────────────────────────────── */
.restrictions {
  background: var(--cream);
  padding: 56px 0;
  border-top: 1px solid var(--straw);
  border-bottom: 1px solid var(--straw);
}
.restrictions-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.restrictions-inner h3 { margin-bottom: 8px; }
.restrictions-inner > p { margin-bottom: 28px; }
.restrictions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.restriction-card {
  border-radius: var(--border-radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}
.restriction-yes {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}
.restriction-no {
  background: #FFF7ED;
  border: 1px solid #FED7AA;
}
.restriction-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.restriction-card strong { display: block; font-family: var(--font-display); font-size: 0.88rem; margin-bottom: 2px; }

/* ── Tong Tong section ────────────────────────────────── */
.tong-tong {
  background: linear-gradient(135deg, #FFF7ED 0%, var(--cream) 100%);
  border-top: 3px solid var(--straw);
}
.tong-tong-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tong-tong-photo {
  border-radius: 20px;
  background: linear-gradient(145deg, var(--straw), #FDBA74);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 400px;
}
.tong-tong-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.tong-tong-text h2 { margin-bottom: 16px; }
.tong-tong-text p { margin-bottom: 14px; }
.tong-tong-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--straw);
  color: var(--orange-text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .tong-tong-inner { grid-template-columns: 1fr; }
  .tong-tong-photo { max-width: 100%; aspect-ratio: 16/9; }
  .restrictions-grid { grid-template-columns: 1fr; }
  .reviews-slider-grid { grid-template-columns: 1fr; }
}
