/* === Kiddy Garden Oran — Design tokens === */
:root {
  --c-yellow: #FFD60A;
  --c-yellow-dark: #F5C400;
  --c-red: #FF4D4D;
  --c-red-dark: #E63946;
  --c-blue: #2EC4F2;
  --c-blue-dark: #1FA9D6;
  --c-green: #6FCF97;
  --c-green-dark: #46B97F;
  --c-cream: #FFF8E6;
  --c-paper: #FFFDF7;
  --c-ink: #1B2845;
  --c-ink-soft: #4A567A;
  --c-line: #F0E6C4;
  --c-whatsapp: #25D366;
  --c-whatsapp-dark: #1FAC50;
  --shadow-sm: 0 2px 8px rgba(27,40,69,.08);
  --shadow-md: 0 8px 24px rgba(27,40,69,.10);
  --shadow-lg: 0 18px 50px rgba(27,40,69,.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
}
body[dir="rtl"] {
  font-family: "Cairo", "Nunito", system-ui, sans-serif;
}
h1, h2, h3, h4 {
  font-family: "Fredoka", "Nunito", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--c-ink);
}
body[dir="rtl"] h1, body[dir="rtl"] h2, body[dir="rtl"] h3, body[dir="rtl"] h4 {
  font-family: "Cairo", "Fredoka", system-ui, sans-serif;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.2; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: var(--c-red-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--space-3);
}

/* === Top bar === */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-paper);
  border-bottom: 2px solid var(--c-line);
  backdrop-filter: saturate(160%) blur(6px);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: var(--space-2);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Fredoka", system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--c-ink);
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, var(--c-yellow), var(--c-red));
  color: white;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text small {
  font-size: .68rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 4px;
  font-family: "Nunito", sans-serif;
}
body[dir="rtl"] .brand-text small { font-family: "Cairo", sans-serif; letter-spacing: 0; }

.main-nav {
  display: none;
  gap: var(--space-3);
  align-items: center;
}
.main-nav a {
  color: var(--c-ink);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 6px 2px;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  color: var(--c-red-dark);
  text-decoration: none;
}
.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -4px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-yellow);
}
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  border: 2px solid var(--c-line);
  background: white;
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-family: inherit;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  color: var(--c-ink);
  transition: all .2s ease;
}
.lang-toggle:hover { border-color: var(--c-yellow); background: var(--c-cream); }
.cta-mini {
  display: none;
  background: var(--c-red);
  color: white;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: .95rem;
}
.cta-mini:hover { background: var(--c-red-dark); text-decoration: none; }
.menu-btn {
  background: var(--c-cream);
  border: 2px solid var(--c-line);
  border-radius: 12px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  cursor: pointer;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  display: block;
  width: 22px; height: 3px;
  background: var(--c-ink);
  border-radius: 2px;
  position: relative;
}
.menu-btn span::before, .menu-btn span::after {
  content: ""; position: absolute; left: 0;
}
.menu-btn span::before { top: -8px; }
.menu-btn span::after { top: 8px; }

@media (min-width: 880px) {
  .main-nav { display: flex; }
  .menu-btn { display: none; }
  .cta-mini { display: inline-block; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-3) 0 var(--space-4);
  border-top: 2px solid var(--c-line);
  background: var(--c-paper);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  color: var(--c-ink);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-line);
}
.mobile-menu a[aria-current="page"] { color: var(--c-red-dark); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--c-red); color: white; box-shadow: 0 8px 16px rgba(255,77,77,.30); }
.btn-primary:hover { background: var(--c-red-dark); box-shadow: 0 14px 22px rgba(255,77,77,.36); }
.btn-whatsapp { background: var(--c-whatsapp); color: white; box-shadow: 0 8px 16px rgba(37,211,102,.30); }
.btn-whatsapp:hover { background: var(--c-whatsapp-dark); box-shadow: 0 14px 22px rgba(37,211,102,.36); }
.btn-ghost { background: white; color: var(--c-ink); border-color: var(--c-ink); }
.btn-ghost:hover { background: var(--c-cream); }
.btn-yellow { background: var(--c-yellow); color: var(--c-ink); box-shadow: 0 8px 16px rgba(255,214,10,.40); }
.btn-yellow:hover { background: var(--c-yellow-dark); box-shadow: 0 14px 22px rgba(255,214,10,.50); }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* === Hero === */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,214,10,.18) 0%, rgba(46,196,242,.10) 60%, rgba(111,207,151,.10) 100%),
    var(--c-cream);
  padding-block: var(--space-6) var(--space-7);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,77,.18), transparent 70%);
  top: -40px; right: -40px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,196,242,.18), transparent 70%);
  bottom: -80px; left: -80px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: var(--space-6); }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--c-red-dark);
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--c-yellow);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow-sm);
}
.hero h1 .accent { color: var(--c-red-dark); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--c-ink-soft);
  margin: var(--space-2) 0 var(--space-4);
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--space-4);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  color: var(--c-ink-soft);
  font-weight: 600;
  font-size: .95rem;
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-meta svg { width: 18px; height: 18px; color: var(--c-red); }
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.2deg);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: "1 200 m²";
  position: absolute;
  bottom: 18px; right: 18px;
  background: var(--c-yellow);
  color: var(--c-ink);
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
}
body[dir="rtl"] .hero-image::after { right: auto; left: 18px; }

/* === Sections === */
.section { padding-block: var(--space-6); }
.section-cream { background: var(--c-cream); }
.section-yellow {
  background: linear-gradient(180deg, var(--c-yellow) 0%, var(--c-yellow-dark) 100%);
  color: var(--c-ink);
}
.section-red {
  background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
  color: white;
}
.section-red h2, .section-red h3, .section-red p { color: white; }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-5);
}
.section-header .eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-red-dark);
  margin-bottom: 10px;
}
.section-red .section-header .eyebrow { color: var(--c-yellow); }
.section-header p { color: var(--c-ink-soft); font-size: 1.05rem; }
.section-red .section-header p { color: rgba(255,255,255,.92); }

/* === Features grid === */
.features {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .features { grid-template-columns: repeat(4, 1fr); } }
.feature {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--c-line);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-align: center;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-yellow); }
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto var(--space-2);
  font-size: 2rem;
}
.feature-icon.bg-yellow { background: var(--c-yellow); }
.feature-icon.bg-blue { background: var(--c-blue); color: white; }
.feature-icon.bg-green { background: var(--c-green); color: white; }
.feature-icon.bg-red { background: var(--c-red); color: white; }
.feature h3 { font-size: 1.15rem; margin-bottom: 6px; }
.feature p { font-size: .95rem; color: var(--c-ink-soft); margin: 0; }

/* === Activities cards === */
.activities {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .activities { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .activities { grid-template-columns: repeat(3, 1fr); } }
.activity-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--c-line);
  transition: transform .2s, box-shadow .2s;
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.activity-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-cream);
}
.activity-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.activity-card:hover .activity-card-img img { transform: scale(1.04); }
.activity-card-body { padding: var(--space-3); }
.activity-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.activity-card-body p { color: var(--c-ink-soft); margin: 0; font-size: .95rem; }
.activity-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--c-yellow);
  color: var(--c-ink);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

/* === Pricing === */
.pricing {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
.price-card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--c-line);
  position: relative;
}
.price-card.featured {
  border-color: var(--c-red);
  background: linear-gradient(180deg, #FFF8E6 0%, white 60%);
  transform: translateY(-4px);
}
.price-card.featured::before {
  content: "★ Le plus populaire";
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--c-red);
  color: white;
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
}
body[dir="rtl"] .price-card.featured::before { content: "★ الأكثر طلبًا"; }
.price-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.price-card .duration { color: var(--c-ink-soft); margin-bottom: var(--space-3); font-weight: 600; }
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table tr { border-bottom: 1px dashed var(--c-line); }
.price-table tr:last-child { border-bottom: 0; }
.price-table td {
  padding: 12px 0;
  font-weight: 600;
}
.price-table td:last-child {
  text-align: end;
  color: var(--c-red-dark);
  font-family: "Fredoka", sans-serif;
  font-size: 1.1rem;
}

.addon-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-4);
}
.addon-pill {
  background: white;
  border: 2px solid var(--c-yellow);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.addon-pill strong { color: var(--c-red-dark); }

/* === Gallery === */
.gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { aspect-ratio: 1 / 1.4; grid-row: span 1; }
@media (min-width: 1000px) {
  .gallery-item.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
}

/* === Testimonials === */
.testimonials {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--c-paper);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  border: 2px solid var(--c-line);
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -10px; left: 18px;
  width: 40px; height: 40px;
  background: var(--c-yellow);
  border-radius: 50%;
  color: var(--c-ink);
  font-family: "Fredoka", serif;
  font-size: 2.4rem;
  line-height: 1;
  display: grid; place-items: center;
  padding-bottom: 12px;
}
.testimonial p { font-style: italic; color: var(--c-ink); }
.testimonial .author { font-weight: 700; color: var(--c-ink); margin-top: var(--space-2); display: flex; align-items: center; gap: 8px; }
.testimonial .stars { color: var(--c-yellow-dark); letter-spacing: 2px; font-size: .95rem; }

/* === Birthday CTA strip === */
.birthday-strip {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.20), transparent 50%),
    linear-gradient(135deg, var(--c-blue) 0%, var(--c-green) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3);
  display: grid;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}
@media (min-width: 760px) {
  .birthday-strip {
    grid-template-columns: 1fr auto;
    text-align: start;
    padding: var(--space-5);
  }
}
.birthday-strip h2 { color: white; margin-bottom: 8px; }
.birthday-strip p { color: rgba(255,255,255,.92); margin: 0; max-width: 60ch; }
.birthday-strip .btn { white-space: nowrap; }

/* === Info / contact grid === */
.info-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .info-grid { grid-template-columns: repeat(4, 1fr); } }
.info-card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-3);
  border: 2px solid var(--c-line);
  text-align: center;
}
.info-card .info-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto var(--space-2);
  display: grid; place-items: center;
  background: var(--c-cream);
  border: 2px solid var(--c-yellow);
  font-size: 1.6rem;
}
.info-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.info-card p { font-size: .95rem; color: var(--c-ink-soft); margin: 0; }
.info-card a { color: var(--c-red-dark); font-weight: 700; }

/* === Two-column blocks === */
.split {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; gap: var(--space-5); } }
.split-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content h2 { margin-bottom: var(--space-2); }
.split-content ul { margin: 0; padding-inline-start: 20px; }
.split-content li { margin-bottom: 8px; }

/* === FAQ === */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 10px; }
.faq details {
  background: white;
  border: 2px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  transition: border-color .2s;
}
.faq details[open] { border-color: var(--c-yellow); box-shadow: var(--shadow-sm); }
.faq summary {
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: "Fredoka", sans-serif;
  font-size: 1.6rem;
  color: var(--c-red);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq .faq-body { padding: 0 22px 18px; color: var(--c-ink-soft); }

/* === Map === */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--c-line);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* === Footer === */
.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,.85);
  padding-block: var(--space-5) var(--space-3);
}
.footer-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer h4 { color: white; font-size: 1.05rem; margin-bottom: var(--space-2); }
.footer a { color: var(--c-yellow); }
.footer a:hover { color: white; }
.footer .brand { color: white; }
.footer .brand-text small { color: rgba(255,255,255,.6); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer .socials { display: flex; gap: 10px; margin-top: 14px; }
.footer .socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: white;
  transition: background .2s, transform .2s;
}
.footer .socials a:hover { background: var(--c-yellow); color: var(--c-ink); transform: translateY(-2px); }
.footer .socials svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  font-size: .85rem;
  text-align: center;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: var(--c-yellow); }

/* === Floating WhatsApp button === */
.float-cta {
  position: fixed;
  bottom: 22px;
  inset-inline-end: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-cta a {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  box-shadow: var(--shadow-md);
  transition: transform .2s;
}
.float-cta a:hover { transform: scale(1.08); }
.float-cta .wa { background: var(--c-whatsapp); }
.float-cta .tel { background: var(--c-red); }
.float-cta svg { width: 26px; height: 26px; }

/* Page hero (smaller, for inner pages) */
.page-hero {
  background:
    linear-gradient(135deg, rgba(46,196,242,.18) 0%, rgba(255,214,10,.18) 100%),
    var(--c-cream);
  padding-block: var(--space-5) var(--space-4);
  text-align: center;
}
.page-hero h1 { margin-bottom: var(--space-2); }
.page-hero p { color: var(--c-ink-soft); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.page-hero .crumbs {
  display: inline-flex;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.page-hero .crumbs a { color: var(--c-red-dark); }

/* Form */
.form-card {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--c-line);
  max-width: 640px;
  margin: 0 auto;
}
.form-row { margin-bottom: var(--space-2); }
.form-row label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .92rem; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--c-line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--c-paper);
  transition: border-color .2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--c-yellow);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-card .btn { width: 100%; justify-content: center; }
.form-note { font-size: .85rem; color: var(--c-ink-soft); text-align: center; margin-top: 14px; }

/* List style */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding-inline-start: 32px;
  margin-bottom: 12px;
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0; top: 1px;
  width: 22px; height: 22px;
  background: var(--c-green);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: .8rem;
}

/* Hidden visually */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* RTL adjustments */
body[dir="rtl"] .hero-image { transform: rotate(1.2deg); }
body[dir="rtl"] .check-list li::before { transform: scaleX(-1); }
body[dir="rtl"] .price-card.featured::before { transform: translateX(50%); }

/* Reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* Print fallback */
@media print {
  .topbar, .float-cta, .footer .socials { display: none; }
}
