/* ============================================================
   SEAFAM PRIMARY ANIMAL HEALTH CARE — Main Stylesheet
   Design: Warm farmstead palette — meadow green, clay terracotta,
   butter yellow, parchment cream. Playful, illustrated, organic shapes.
   Type: Baloo 2 (display, rounded/bouncy) / Inter (body)
   ============================================================ */

/* --- Tokens ------------------------------------------------- */
:root {
  --pine:        #1f4a3a;
  --meadow:      #3c8c5c;
  --meadow-light:#5dab7a;
  --clay:        #e8783c;
  --clay-light:  #f4a06a;
  --butter:      #f6d170;
  --cream:       #fbf6ee;
  --cream-deep:  #f3ead9;
  --white:       #ffffff;
  --ink:         #2a2420;
  --ink-soft:    #5c5249;
  --ink-muted:   #8c8178;

  --ff-display: 'Baloo 2', 'Fredoka', system-ui, sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --nav-h: 76px;
  --max-w: 1180px;
  --section-pad: 5.5rem 1.5rem;
  --radius-blob: 32px;
}

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

/* --- Navigation -------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  border-bottom: 3px solid transparent;
  transition: height 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav--scrolled {
  height: 64px;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--butter);
  box-shadow: 0 4px 24px rgba(31,74,58,0.08);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--butter);
  background: var(--white);
  flex-shrink: 0;
  transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease;
}

.nav:hover .nav__logo { transform: rotate(-8deg); }
.nav--scrolled .nav__logo { width: 38px; height: 38px; }

.nav__name {
  font-family: var(--ff-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--pine);
  line-height: 1.2;
}

.nav__name span {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
}

.nav__links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover {
  color: var(--pine);
  background: var(--cream-deep);
}

.nav__links a.active {
  color: var(--meadow);
  background: rgba(60,140,92,0.1);
}

.nav__cta {
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  background: var(--clay) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(232,120,60,0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
}

.nav__cta:hover {
  background: var(--clay-light) !important;
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 6px 20px rgba(232,120,60,0.45);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--pine);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero -------------------------------------------------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

/* Layered organic background shapes */
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero__blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.hero__blob--1 {
  width: 620px; height: 620px;
  top: -180px; right: -160px;
  background: var(--butter);
  opacity: 0.55;
  border-radius: 42% 58% 61% 39% / 45% 41% 59% 55%;
  animation: blobMorph 18s ease-in-out infinite alternate;
}

.hero__blob--2 {
  width: 420px; height: 420px;
  bottom: -160px; left: -120px;
  background: var(--meadow-light);
  opacity: 0.25;
  border-radius: 58% 42% 39% 61% / 41% 55% 45% 59%;
  animation: blobMorph 22s ease-in-out infinite alternate-reverse;
}

.hero__blob--3 {
  width: 240px; height: 240px;
  top: 55%; left: 8%;
  background: var(--clay-light);
  opacity: 0.18;
  border-radius: 50% 50% 38% 62% / 60% 42% 58% 40%;
  animation: blobMorph 16s ease-in-out infinite alternate;
}

@keyframes blobMorph {
  0%   { transform: translate3d(0,0,0) rotate(0deg) scale(1); }
  100% { transform: translate3d(30px,-30px,0) rotate(12deg) scale(1.08); }
}

/* Scattered paw/animal print texture */
.hero__prints {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(31,74,58,0.05) 2px, transparent 2.5px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, transparent 30%, #000 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, transparent 30%, #000 100%);
}

/* Staggered entrance for hero content */
.hero__text > * { opacity: 0; transform: translateY(18px); animation: heroIn 0.7s ease forwards; }
.hero__text > *:nth-child(1) { animation-delay: 0.05s; }
.hero__text > *:nth-child(2) { animation-delay: 0.15s; }
.hero__text > *:nth-child(3) { animation-delay: 0.25s; }
.hero__text > *:nth-child(4) { animation-delay: 0.35s; }
.hero__text > *:nth-child(5) { animation-delay: 0.45s; }
.hero__text > *:nth-child(6) { animation-delay: 0.55s; }
.hero__visual { opacity: 0; transform: scale(0.9) rotate(-4deg); animation: heroPop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s forwards; }

@keyframes heroIn  { to { opacity: 1; transform: none; } }
@keyframes heroPop { to { opacity: 1; transform: none; } }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem 0.5rem 0.8rem;
  border-radius: 100px;
  background: var(--butter);
  box-shadow: 0 4px 14px rgba(246,209,112,0.5);
}

.hero__eyebrow-pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 0 rgba(232,120,60,0.7);
  animation: dotPulse 2s ease-out infinite;
}

@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232,120,60,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(232,120,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,120,60,0); }
}

.hero__heading {
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 6.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--pine);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

.hero__heading-accent {
  position: relative;
  color: var(--clay);
  display: inline-block;
}

.hero__heading-accent::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.08em;
  height: 0.28em;
  background: var(--butter);
  z-index: -1;
  border-radius: 6px;
  transform: rotate(-1deg);
}

.hero__tagline {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 30rem;
}

.hero__quote {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--meadow);
  margin-bottom: 0.5rem;
}

.hero__reg {
  font-size: 0.7rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-top: 2rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.9rem;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s, background 0.2s;
  border: none;
}

.btn:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: 0 10px 24px rgba(31,74,58,0.18); }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(37,211,102,0.35);
}

.btn--call {
  background: var(--white);
  color: var(--pine);
  border: 2px solid var(--pine);
}

.btn--call:hover { background: var(--pine); color: var(--white); }

.btn--gold {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(232,120,60,0.35);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logo-frame {
  width: 380px;
  height: 380px;
  border-radius: 53% 47% 44% 56% / 49% 52% 48% 51%;
  background: var(--white);
  border: 4px solid var(--pine);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 14px 18px 0 var(--butter);
  animation: logoBob 6s ease-in-out infinite;
}

@keyframes logoBob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(1.5deg); }
}

.hero__logo-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: inherit;
  border: 3px dashed var(--meadow-light);
  opacity: 0.5;
  animation: ringSpin 50s linear infinite;
}

@keyframes ringSpin { to { transform: rotate(360deg); } }

.hero__logo-frame img {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: contain;
}

/* Floating "stamp" chips around the logo */
.hero__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pine);
  padding: 0.65rem 1.1rem;
  border-radius: 100px;
  background: var(--white);
  border: 2px solid var(--cream-deep);
  box-shadow: 0 10px 24px rgba(31,74,58,0.12);
  white-space: nowrap;
  animation: chipFloat 5s ease-in-out infinite;
}

.hero__chip--1 { top: 4%;  left: -10%;  animation-delay: 0s; background: var(--butter); border-color: var(--butter); }
.hero__chip--2 { top: 48%; right: -14%; animation-delay: 1.2s; background: var(--clay); color: var(--white); border-color: var(--clay); }
.hero__chip--3 { bottom: 6%; left: 0%;  animation-delay: 2.4s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}

.hero__badges {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pine);
  letter-spacing: 0.02em;
  padding: 0.45rem 0.95rem;
  border-radius: 100px;
  background: var(--white);
  border: 1.5px solid var(--cream-deep);
}

.badge__dot {
  width: 7px;
  height: 7px;
  background: var(--meadow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Scroll-down indicator */
.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-muted);
  z-index: 1;
  animation: fadeInUp 1s ease 1s both;
}

.hero__scroll-text {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--ink-muted);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll-mouse span {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--clay);
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

/* --- Section scaffolding ----------------------------------- */
.section {
  padding: var(--section-pad);
  scroll-margin-top: var(--nav-h);
  position: relative;
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section--dark {
  background: var(--pine);
  color: var(--white);
}

.section--meadow {
  background: var(--meadow);
  color: var(--white);
}

.section--light {
  background: var(--white);
}

.section--cream {
  background: var(--cream);
}

/* Wavy divider between sections — bg matches the section above,
   path fill matches the section below */
.divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: -1px;
}

.divider--bg-cream  { background: var(--cream); }
.divider--bg-white  { background: var(--white); }
.divider--bg-pine   { background: var(--pine); }
.divider--bg-meadow { background: var(--meadow); }
.divider--bg-butter { background: var(--butter); }

.divider--fill-cream  path { fill: var(--cream); }
.divider--fill-white  path { fill: var(--white); }
.divider--fill-pine   path { fill: var(--pine); }
.divider--fill-meadow path { fill: var(--meadow); }
.divider--fill-butter path { fill: var(--butter); }

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.6rem;
}

.section--dark .section__label,
.section--meadow .section__label { color: var(--butter); }

.section__heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--pine);
  margin-bottom: 0.75rem;
}

.section--dark .section__heading,
.section--meadow .section__heading {
  color: var(--white);
}

.section__sub {
  font-size: 1.0625rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 3rem;
}

.section--dark .section__sub,
.section--meadow .section__sub {
  color: rgba(255,255,255,0.78);
}

/* --- About ------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__img-wrap {
  position: relative;
}

.about__img-wrap img {
  border-radius: var(--radius-blob);
  width: 100%;
  border: 4px solid var(--pine);
  background: var(--white);
}

.about__img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--clay);
  color: var(--white);
  padding: 1.1rem 1.4rem;
  border-radius: 18px;
  font-family: var(--ff-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 170px;
  box-shadow: 0 10px 28px rgba(232,120,60,0.35);
  transform: rotate(-3deg);
}

.about__body p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.about__stat-row {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.about__stat {
  flex: 1 1 140px;
  background: var(--cream-deep);
  border-radius: 18px;
  padding: 1.25rem 1.1rem;
  text-align: center;
}

.about__stat-val {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--meadow);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about__stat-lbl {
  font-size: 0.75rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  font-weight: 600;
}

/* --- Services ---------------------------------------------- */
.services__tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--ff-display);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.tab-btn.active {
  background: var(--butter);
  border-color: var(--butter);
  color: var(--pine);
}

.services__panel { display: none; }
.services__panel.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }

.service-card {
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 1.75rem;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--butter);
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  background: var(--butter);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-card__icon {
  transform: rotate(-12deg) scale(1.08);
}

.service-card__title {
  font-family: var(--ff-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-card__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.service-card--mobile {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--clay);
  border-color: var(--clay);
}

.service-card--mobile .service-card__icon {
  background: var(--white);
}

.service-card--mobile .service-card__title {
  color: var(--white);
}

.service-card--mobile .service-card__desc {
  color: rgba(255,255,255,0.85);
}

/* --- Products ---------------------------------------------- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid var(--cream-deep);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s, border-color 0.25s;
}

.product-card:hover {
  transform: translateY(-6px) rotate(1deg);
  box-shadow: 0 16px 36px rgba(31,74,58,0.12);
  border-color: var(--butter);
}

.product-card__img {
  height: 140px;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.product-card__body {
  padding: 1.4rem;
}

.product-card__name {
  font-family: var(--ff-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--pine);
  margin-bottom: 0.375rem;
}

.product-card__desc {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* --- Registration strip ------------------------------------ */
.reg-strip {
  background: var(--butter);
  padding: 2.75rem 1.5rem;
}

.reg-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.reg-item__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31,74,58,0.55);
  margin-bottom: 0.25rem;
}

.reg-item__value {
  font-family: var(--ff-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--pine);
}

/* --- Booking form -------------------------------------------- */
.booking {
  background: var(--meadow);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  top: -200px; right: -180px;
  background: var(--meadow-light);
  opacity: 0.5;
  border-radius: 42% 58% 61% 39% / 45% 41% 59% 55%;
  pointer-events: none;
}

.booking__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.booking__intro-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.booking__intro-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}

.booking__intro-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--butter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transform: rotate(-4deg);
}

.booking__intro-text h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.booking__intro-text p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

/* Form card */
.booking__card {
  background: var(--cream);
  border-radius: var(--radius-blob);
  padding: 2.25rem;
  box-shadow: 0 24px 60px rgba(20,50,38,0.25);
  position: relative;
}

.booking__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field {
  position: relative;
  margin-bottom: 1.1rem;
}

.field--full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pine);
  margin-bottom: 0.5rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--cream-deep);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field textarea { resize: vertical; min-height: 90px; }

.field input::placeholder,
.field textarea::placeholder { color: var(--ink-muted); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--meadow);
  box-shadow: 0 0 0 3px rgba(60,140,92,0.15);
}

.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233c8c5c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Smoothly expand/collapse the "describe what you need" field */
.field--other {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-bottom: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-bottom 0.4s ease;
}

.field--other.is-open {
  max-height: 220px;
  opacity: 1;
  margin-bottom: 1.1rem;
}

/* Live WhatsApp message preview */
.booking__preview {
  background: var(--white);
  border: 2px dashed var(--cream-deep);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.7;
  white-space: pre-wrap;
  transition: border-color 0.2s;
}

.booking__preview-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--meadow);
  margin-bottom: 0.6rem;
}

.booking__preview-label svg { width: 14px; height: 14px; }

/* Submit button with shimmer sweep */
.btn--booking {
  width: 100%;
  justify-content: center;
  background: #25D366;
  color: var(--white);
  font-size: 1rem;
  padding: 1.05rem 1.75rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn--booking::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  z-index: -1;
}

.btn--booking:hover::after { transform: translateX(100%); }

.booking__disclaimer {
  font-size: 0.75rem;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 0.9rem;
  line-height: 1.5;
}

/* --- Contact ----------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact__info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__icon {
  width: 48px;
  height: 48px;
  background: var(--meadow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--white);
  transform: rotate(-4deg);
}

.contact__info-lbl {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.2rem;
}

.contact__info-val {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
}

.contact__action-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(255,255,255,0.1);
}

.contact__map {
  border-radius: var(--radius-blob);
  overflow: hidden;
  height: 360px;
  border: 4px solid rgba(255,255,255,0.12);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact__note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1rem;
  line-height: 1.55;
}

/* --- Footer ------------------------------------------------ */
.footer {
  background: var(--pine);
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.footer__top {
  border-top: 4px solid var(--butter);
  padding: 3.5rem 1.5rem 2.75rem;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
}

.footer__col--brand { max-width: 340px; }

.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.footer__logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--butter);
  background: var(--white);
  flex-shrink: 0;
}

.footer__brand {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

.footer__brand span {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--butter);
}

.footer__about {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.4rem;
}

.footer__about em { color: var(--butter); font-weight: 700; }

.footer__social { display: flex; gap: 0.625rem; }

.footer__social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  transition: background 0.2s, color 0.2s, transform 0.25s, border-color 0.2s;
}

.footer__social-link:hover {
  background: var(--butter);
  border-color: var(--butter);
  color: var(--pine);
  transform: translateY(-3px) rotate(-8deg);
}

.footer__heading {
  font-family: var(--ff-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 1.1rem;
}

.footer__links, .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer__links a:hover { color: var(--butter); padding-left: 5px; }

.footer__contact li {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
}

.footer__contact span { flex-shrink: 0; }
.footer__contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer__contact a:hover { color: var(--butter); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
}

.footer__bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1.5rem;
}

.footer__copy { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }

.footer__savc {
  color: var(--butter);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* --- Floating actions -------------------------------------- */
.float-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 900;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
  animation: waPulse 2.6s ease-in-out infinite;
}

.float-wa:hover { transform: scale(1.1) rotate(-8deg); box-shadow: 0 10px 30px rgba(37,211,102,0.45); }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 0 0 0 rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 0 0 12px rgba(37,211,102,0); }
}

.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 5.75rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--butter);
  color: var(--pine);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s, background 0.2s;
}

.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--clay); color: var(--white); transform: translateY(-2px) rotate(-8deg); }

/* --- Scroll animations ------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-up { transition-delay: calc(var(--i, 0) * 80ms); }

/* --- Responsive -------------------------------------------- */
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(31,74,58,0.12);
    border-bottom: 3px solid var(--butter);
  }
  .nav__hamburger { display: flex; }

  /* ----- Hero: single, centered column ----- */
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero__text { text-align: center; }
  .hero__tagline { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__logo-frame { width: 260px; height: 260px; }
  .hero__logo-frame img { width: 200px; height: 200px; }
  .hero__chip { display: none; }
  .hero__scroll { display: none; }

  /* ----- About: centered ----- */
  .about__grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .about__img-badge { right: 0.5rem; bottom: 0.5rem; }
  .about__stat-row { justify-content: center; }

  /* ----- Section text: centered & balanced ----- */
  .section__sub { margin-left: auto; margin-right: auto; }
  .services__tabs { justify-content: center; }

  /* ----- Contact: centered column ----- */
  .contact__grid { grid-template-columns: 1fr; }
  .contact__info-list { align-items: center; }
  .contact__info-item { flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; }
  .contact__action-row { justify-content: center; }
  .contact__note { text-align: center; }

  /* ----- Booking: stacked ----- */
  .booking__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .booking__intro-item { text-align: left; }

  /* ----- Reg strip: centered ----- */
  .reg-strip__inner { gap: 1.5rem 2.5rem; justify-content: center; text-align: center; }

  /* ----- Footer: two columns on tablet ----- */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
  .footer__col--brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 540px) {
  :root { --section-pad: 4rem 1.25rem; }
  .nav { padding: 0 1.25rem; }

  .hero__inner { padding: 2.5rem 1.25rem; }
  .hero__quote { font-size: 1.35rem; }

  .about__stat-row { flex-wrap: wrap; gap: 1rem; }
  .about__stat { flex: 1 1 40%; }

  /* Full-width, centered call-to-action buttons everywhere on phones */
  .hero__actions, .contact__action-row { width: 100%; flex-direction: column; }
  .hero__actions .btn,
  .contact__action-row .btn { width: 100%; justify-content: center; }

  /* Footer: single column, centered */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer__brand-row { justify-content: center; }
  .footer__col--brand { display: flex; flex-direction: column; align-items: center; }
  .footer__about { margin-left: auto; margin-right: auto; }
  .footer__social { justify-content: center; }
  .footer__contact li { justify-content: center; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .float-wa { width: 52px; height: 52px; right: 1rem; bottom: 1rem; }
  .to-top { right: 1rem; bottom: 5rem; }

  /* Center service card icons/text on mobile */
  .service-card {
    text-align: center;
  }
  .service-card__icon {
    margin-left: auto;
    margin-right: auto;
  }
  .service-card--mobile {
    flex-direction: column;
    text-align: center;
  }
  .service-card--mobile .service-card__icon {
    margin-bottom: 0.5rem;
  }

  /* ----- Booking: single-column form fields ----- */
  .booking__form-grid { grid-template-columns: 1fr; }
  .booking__card { padding: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .hero__text > *,
  .hero__visual { opacity: 1; transform: none; transition: none; animation: none; }
  .hero__blob,
  .hero__logo-frame,
  .hero__logo-frame::before,
  .hero__chip,
  .hero__eyebrow-pulse,
  .hero__scroll-mouse span,
  .float-wa { animation: none; }
  html { scroll-behavior: auto; }
}
