*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --green: #059669;
  --green-mid: #10b981;
  --green-light: #d1fae5;
  --green-xlight: #ecfdf5;
  --border: rgba(5, 150, 105, 0.18);
  --border-light: rgba(5, 150, 105, 0.1);
  --text: #111827;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --bg: #f8fffe;
  --white: #ffffff;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}



/* ── PITCH GRID BG ── */
.pitch-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(transparent 49.5%, rgba(5, 150, 105, 0.03) 49.5%, rgba(5, 150, 105, 0.03) 50.5%, transparent 50.5%),
    linear-gradient(90deg, transparent 49.5%, rgba(5, 150, 105, 0.03) 49.5%, rgba(5, 150, 105, 0.03) 50.5%, transparent 50.5%);
  background-size: 100px 100px;
  pointer-events: none;
}

.pitch-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(255, 255, 255, 0.65) 0%, transparent 80%);
}

/* ── HEADER ── */
#site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1280px;
  z-index: 50;
  transition: all 0.3s;
}

#header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 0.6rem 1.5rem;
  box-shadow: 0 4px 24px rgba(5, 150, 105, 0.08), 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

#header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

#header-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
}

#desktop-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media(min-width:768px) {
  #desktop-menu {
    display: flex;
  }
}

#desktop-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

#desktop-menu a:hover {
  color: var(--green);
}

#header-cta {
  display: none;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

@media(min-width:640px) {
  #header-cta {
    display: inline-flex;
    align-items: center;
  }
}

#header-cta:hover {
  background: #047857;
  transform: translateY(-1px);
}

#mobile-menu-button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  display: flex;
  align-items: center;
}

@media(min-width:768px) {
  #mobile-menu-button {
    display: none;
  }
}

#mobile-menu {
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(5, 150, 105, 0.1);
}

#mobile-menu.hidden {
  display: none;
}

#mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
}

#mobile-menu a {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

#mobile-menu a:hover {
  background: var(--green-xlight);
  color: var(--green);
}

/* ── PAGE WRAPPER ── */
.page {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* left — text side */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 4rem 6rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--border);
  background: var(--green-xlight);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 2rem;
  width: fit-content;
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.9;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  color: var(--green);
  display: block;
}

.hero-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--green);
  padding: 14px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.25);
}

.btn-primary:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(5, 150, 105, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1.5px solid rgba(5, 150, 105, 0.3);
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--green);
  color: #047857;
}

/* hero mini-stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.h-stat {}

.h-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
}

.h-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-light);
  margin-top: 3px;
}

/* right — image side (desktop default) */
.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* overlay so image edges blend — desktop */
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, var(--bg) 0%, transparent 30%),
    linear-gradient(to top, var(--bg) 0%, transparent 20%);
}

/* floating card on image */
.hero-float-card {
  position: absolute;
  bottom: 3rem;
  right: 2.5rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(5, 150, 105, 0.12);
}

.hfc-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hfc-val {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--green);
  line-height: 1;
}

.hfc-sub {
  font-size: 0.75rem;
  color: var(--muted-light);
}

/* ── WAVE DIVIDER ── */
.wave-divider {
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--green-light), var(--green), var(--green-light));
}

/* ── SECTION BASE ── */
.section {
  position: relative;
  z-index: 1;
}

.section-intro {
  padding: 4rem 5rem 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.section-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.6rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--green);
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text);
  line-height: 1.05;
}

.section-sub {
  font-size: 0.85rem;
  color: var(--muted-light);
  font-weight: 300;
  font-style: italic;
  white-space: nowrap;
  padding-bottom: 4px;
}

/* ── HOW IT WORKS ── */
.steps-wrap {
  padding: 2.5rem 5rem 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step-card {
  background: var(--white);
  border: 1px solid rgba(5, 150, 105, 0.11);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px 3px 0 0;
}

.step-card:hover {
  border-color: rgba(5, 150, 105, 0.32);
  box-shadow: 0 10px 36px rgba(5, 150, 105, 0.09), 0 2px 6px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: rgba(5, 150, 105, 0.1);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  letter-spacing: 0.02em;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-xlight);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}

.step-card:hover .step-icon {
  background: var(--green-light);
  border-color: var(--border);
}

.step-icon .material-symbols-outlined {
  font-size: 1.4rem;
  color: var(--green);
}

.step-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.step-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ── BOOKING LOOKUP ── */
.lookup-section {
  margin-top: 3.5rem;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 4rem 5rem;
}

.lookup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lookup-text .section-label {
  margin-bottom: 0.5rem;
}

.lookup-text .section-heading {
  margin-bottom: 0.75rem;
}

.lookup-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.lookup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lookup-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

#booking-email {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--bg);
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

#booking-email::placeholder {
  color: var(--muted-light);
}

#booking-email:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
  background: var(--white);
}

#fetch-bookings-btn {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--green);
  border: none;
  border-radius: 100px;
  padding: 13px 32px;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.2);
}

#fetch-bookings-btn:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.25);
}

#booking-results {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

#booking-results.hidden {
  display: none;
}

#booking-skeleton {
  margin-top: 1.25rem;
}

#booking-skeleton.hidden {
  display: none;
}

.skeleton-bar {
  height: 14px;
  background: var(--green-xlight);
  border-radius: 6px;
  margin-bottom: 10px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ── SLOT CHECKER ── */
.slots-section {
  padding: 4rem 5rem;
  position: relative;
  z-index: 1;
}

.slots-controls {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 2rem;
}

.slot-date-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.slot-date-wrap label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

#slotDate {
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(5, 150, 105, 0.15);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

#slotDate:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

#check-slots {
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--green);
  border: none;
  border-radius: 100px;
  padding: 13px 28px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.2);
  white-space: nowrap;
}

#check-slots:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.25);
}

#slotsContainer {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--green);
  padding: 4rem 5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.cta-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cta-btn-primary {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--green);
  background: #fff;
  padding: 15px 44px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}

.cta-btn-primary:hover {
  background: #ecfdf5;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.cta-btn-secondary {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.cta-btn-secondary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

/* ── FOOTER ── */
footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 4rem 5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-socials a {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-socials a:hover {
  opacity: 1;
}

.footer-col h3 {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-mid);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--green-mid);
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #64748b;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-hours li:last-child {
  border: none;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-contact-list .material-symbols-outlined {
  font-size: 1rem;
  color: var(--green-mid);
  margin-top: 1px;
  flex-shrink: 0;
}

.footer-contact-list span:last-child {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #475569;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.55s ease forwards;
}

/* staggered entrance for hero text block — same fadeUp keyframe,
   just offset so each element arrives a beat after the last */
.hero-badge.fade-up {
  animation-delay: 0s;
}

.hero-text h1.fade-up {
  animation-delay: 0.1s;
}

.hero-text p.fade-up {
  animation-delay: 0.22s;
}

.hero-actions.fade-up {
  animation-delay: 0.34s;
}

.hero-stats.fade-up {
  animation-delay: 0.46s;
}

.google-reviews-section {
  padding: 90px 20px;
  background: var(--green-xlight);
}

.reviews-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green);
  font-weight: 600;
  margin-bottom: 18px;
}

.review-badge img {
  width: 18px;
}

.reviews-header h2 {
  font-size: 2.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.reviews-header p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.rating {
  font-size: 42px;
  font-weight: 700;
  color: var(--green);
}

.stars {
  font-size: 24px;
  color: #fbbf24;
}

.review-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.review-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .3s;
}

.review-stars {
  color: #fbbf24;
  font-size: 24px;
  margin-bottom: 20px;
}

.review-card p {
  line-height: 1.8;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.review-user h4 {
  margin: 0;
}

.review-user span {
  color: var(--text-light);
  font-size: .9rem;
}

.review-nav {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .12);
  transition: .25s;
}

.review-nav:hover {
  background: var(--green);
  color: white;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 35px 0;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
}

.review-dot.active {
  background: var(--green);
}

.google-review-btn {
  display: block;
  width: max-content;
  margin: auto;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.google-review-btn:hover {
  transform: translateY(-2px);
  background: var(--green-mid);
}

@media(max-width:768px) {
  .review-slider {
    gap: 10px;
  }

  .review-card {
    padding: 25px;
  }

  .review-nav {
    display: none;
  }
}

.wa-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}

.wa-tooltip {
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wa-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

.wa-btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.15s ease, background 0.15s ease;
}

.wa-btn:hover {
  background: #1ebe5d;
  transform: scale(1.07);
}

@media (max-width: 640px) {
  .wa-tooltip {
    display: none;
  }

  .wa-btn {
    width: 50px;
    height: 50px;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── MOBILE HERO BACKGROUND IMAGE (fixed) ── */
/* fade-in on load: image eases in from invisible to its resting
   opacity, then heroDrift takes over forever after. Two separate
   animations on two separate properties, so they never fight. */
@keyframes heroImageIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.55;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.1) translate(0, 0);
  }

  to {
    transform: scale(1.18) translate(-1.2%, -1%);
  }
}

/* ── RESPONSIVE ── */
@media(max-width:960px) {
  .hero-section {
    grid-template-columns: 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-text {
    padding: 9rem 2.5rem 4rem;
  }

  .hero-image {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-image img {
    filter: blur(5px) brightness(0.92) saturate(1.15);
    transform: scale(1.1);
    opacity: 0;
    animation:
      heroImageIn 1.3s ease 0.15s forwards,
      heroDrift 24s ease-in-out 1.3s infinite alternate;
  }

  /* lighter overlay — keeps the photo actually visible while still
     fading it into the page bg at the very top/bottom edges */
  .hero-image::before {
    background:
      radial-gradient(ellipse 90% 70% at 50% 0%, rgba(5, 150, 105, 0.10) 0%, transparent 60%),
      linear-gradient(to bottom,
        var(--bg) 0%,
        rgba(248, 255, 254, 0.35) 22%,
        rgba(248, 255, 254, 0.4) 60%,
        var(--bg) 100%);
  }

  .hero-float-card {
    display: none;
    /* not in the client's mobile mock — add back if they want it */
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lookup-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #slotsContainer {
    grid-template-columns: 1fr 1fr;
  }

  .section-intro,
  .steps-wrap,
  .slots-section,
  .lookup-section,
  .cta-strip,
  footer {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .cta-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-actions {
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image img {
    animation: none;
    opacity: 0.55;
  }
}

@media(max-width:560px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  #slotsContainer {
    grid-template-columns: 1fr;
  }

  .slots-controls {
    flex-direction: column;
    align-items: stretch;
  }

  #check-slots {
    width: 100%;
    text-align: center;
  }

  .section-intro,
  .steps-wrap,
  .slots-section,
  .lookup-section,
  .cta-strip,
  footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}