/* ========== Reset & Base ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: Arial, sans-serif;
  color: #0A2E4D;             /* Deep Navy */
  background-color: #F4E3C1;  /* Sand Beige */
  scroll-behavior: smooth;
}
ul, ol { list-style: none; }
a { text-decoration: none; }
.text-center { text-align: center; }

/* Brand palette tokens (safe to keep) */
:root{
  --brand-navy:#0A2E4D;
  --brand-sand:#F4E3C1;
  --brand-coral:#E85D3F;
  --brand-green:#2E7D64;
}

/* ========== Buttons (scoped only) ========== */
/* Primary CTA used across site */
.btn-cta,
.desktop-nav .nav-cta,
footer .footer-cta,
#booking-form button[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  color:#fff !important;
  background: var(--brand-coral);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .5px;
  border-radius: 50px;
  border: 0;
  display: inline-block;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.20);
  transition: transform .12s ease, box-shadow .15s ease, background-color .15s ease, filter .15s ease;
  vertical-align: middle;
}
.btn-cta:hover,
.desktop-nav .nav-cta:hover,
footer .footer-cta:hover,
#booking-form button[type="submit"]:hover {
  background: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.28);
  filter: brightness(1.02);
}
.btn-cta:active,
.desktop-nav .nav-cta:active,
footer .footer-cta:active,
#booking-form button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 7px 18px rgba(0,0,0,.22);
}

/* Small variant (when explicitly used) */
.btn-cta.small,
.desktop-nav .nav-cta.small { padding: .6rem 1rem; font-size: .95rem; border-radius: 999px; }

/* Header spacing for CTA */
.desktop-nav .nav-cta { margin-left: 16px; }

/* Booking submit keeps same look but full width cap */
#booking-form button[type="submit"]{
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
}

/* ========== Header / Nav ========== */
#main-header {
  background-color: #F4E3C1; position: sticky; top: 0; z-index: 999;
  border-bottom: 1px solid rgba(0,0,0,.1);
}
#main-header .container {
  max-width: 1200px; margin: 0 auto; padding: .75rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
#main-header .logo img { height: 60px; }
#main-header .desktop-nav a {
  color: #0A2E4D; margin-left: 1.5rem; font-size: 1rem; font-weight: 500; transition: color .3s ease;
}
#main-header .desktop-nav a:hover, .desktop-nav a.active { color: #2E7D64; }
.hamburger { font-size: 1.8rem; cursor: pointer; display: none; background: none; border: 0; }

/* Mobile Nav overlay */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 998;
  background-color: #0A2E4D; text-align: center; flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.15);
}
.mobile-nav a {
  color: #fff; padding: 1rem; border-top: 1px solid rgba(255,255,255,.15);
}
.mobile-nav a:hover { background: #E85D3F; }
.mobile-nav.show { display: flex; }
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: block; }
}

/* ========== Hero (Home) ========== */
#hero { position: relative; width: 100%; height: 100vh; overflow: hidden; }
#hero-video {
  position: absolute; top: 50%; left: 50%; width: 100%; height: 100%;
  transform: translate(-50%,-50%); object-fit: cover;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(10,46,77,.4); }
.hero-content {
  position: relative; z-index: 2; top: 50%; transform: translateY(-50%); text-align: center;
  color: #fff; padding: 0 1rem;
}
.hero-content h1 { font-size: 3rem; margin-bottom: 1rem; color: #fff; }
.hero-content p { font-size: 1.2rem; margin-bottom: 2rem; color: #F4E3C1; }

/* ========== Page Hero (Inner pages) ========== */
.page-hero { position: relative; width: 100%; height: 60vh; overflow: hidden; }
.page-hero video {
  position: absolute; top: 50%; left: 50%; width: 100%; height: 100%;
  transform: translate(-50%,-50%); object-fit: cover;
}
.page-hero .hero-overlay { position: absolute; inset: 0; background: rgba(10,46,77,.35); }
.page-hero-content {
  position: relative; z-index: 2; top: 50%; transform: translateY(-50%);
  text-align: center; color: #fff; padding: 0 1rem; max-width: 980px; margin: 0 auto;
}
.page-hero-content h1 { font-size: 2.2rem; margin-bottom: .75rem; }
.page-hero-content p { font-size: 1.05rem; color: #F4E3C1; }

/* ========== Categories (Modern Cards) ========== */
#categories { background: #0A2E4D; color: #fff; text-align: center; padding: 4rem 1rem; }
#categories h2 { font-size: 2.6rem; margin-bottom: 0.75rem; }
#categories p  { max-width: 840px; margin: 0 auto 2.25rem; opacity: .95; }

.categories-grid.modern-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.category-card.modern {
  position: relative; display: block; overflow: hidden; border-radius: 18px; aspect-ratio: 16 / 11;
  box-shadow: 0 8px 24px rgba(0,0,0,.28); isolation: isolate; transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease;
}
.category-card.modern img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.03); transition: transform .55s ease; will-change: transform;
}
.category-card.modern::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,46,77,0) 45%, rgba(10,46,77,.75) 100%);
  z-index: 1; transition: opacity .35s ease;
}
.category-card .card-overlay {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 2;
  text-align: left; display: grid; gap: 10px;
}
.category-card .card-overlay h3 {
  margin: 0; font-size: 1.35rem; line-height: 1.2; font-weight: 800; letter-spacing: .2px; color:#fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
/* CHIP (restore compact, not full width) */
.category-card .chip {
  display: inline-block; padding: .45rem .8rem; font-size: .85rem; font-weight: 700;
  color: #0A2E4D; background: #F4E3C1; border-radius: 999px; box-shadow: 0 4px 10px rgba(0,0,0,.18);
  transition: transform .25s ease, background .25s ease, color .25s ease;
  width: auto; max-width: max-content;
}
.category-card.modern:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,.35); }
.category-card.modern:hover img { transform: scale(1.08); }
.category-card.modern:hover::after { opacity: .95; }
.category-card.modern:hover .chip { transform: translateY(-2px); background: #E85D3F; color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .category-card.modern, .category-card.modern img, .category-card.modern::after, .category-card.modern .chip { transition: none; }
}
@media (max-width: 640px) {
  #categories { padding: 3.25rem 1rem; }
  #categories h2 { font-size: 2.1rem; }
}

/* ========== Featured Lessons ========== */
#featured-lessons { background: #fff; text-align: center; padding: 4rem 1rem; }
#featured-lessons h2 { font-size: 2.5rem; color: #0A2E4D; }
#featured-lessons p { max-width: 800px; margin: 0 auto 2rem; }
.featured-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.feature-card {
  background: #F4E3C1; width: 350px; text-align: left; border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,.1); transition: all .3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0,0,0,.2); }
.feature-card img { width: 100%; height: auto; display: block; }
.feature-content { padding: 1rem; }
.feature-content h3 { color: #2E7D64; margin-bottom: .5rem; }
.feature-content p { margin-bottom: 1rem; }
.price-book { display: flex; justify-content: space-between; align-items: center; }
.price { color: #E85D3F; font-weight: bold; }

/* ========== Trust Parallax ========== */
#trust-parallax {
  position: relative; background-image: url('../images/trust-bg.jpg');
  background-attachment: fixed; background-size: cover; background-position: center;
  text-align: center; color: #fff; padding: 15rem 1rem;
}
.trust-container { background: rgba(0,0,0,.4); display: inline-block; padding: 2rem; border-radius: 8px; }
.trust-badge { width: 150px; margin-bottom: 1rem; }
.trust-text h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.trust-text p { font-size: 1rem; color: #ddd; }

/* ========== Testimonials ========== */
#testimonials-grid { background: #F4E3C1; text-align: center; padding: 4rem 1rem; }
#testimonials-grid h2 { color: #0A2E4D; margin-bottom: 2rem; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1.5rem; max-width: 1000px; margin: 0 auto;
}
.testimonial-card { background: #fff; padding: 1rem; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,.1); }
.testimonial-card span { display: block; margin-top: 1rem; font-style: italic; color: #555; }
.review-icon { height: 16px; margin-left: 4px; vertical-align: middle; }

/* ========== Parallax Break ========== */
#parallax-break {
  position: relative; background-image: url('../images/parallax-ocean.jpg');
  background-attachment: fixed; background-size: cover; background-position: center;
  text-align: center; color: #fff; padding: 15rem 1rem;
}
.parallax-content { background: rgba(0,0,0,.5); display: inline-block; padding: 2rem; border-radius: 8px; }
.parallax-content h2 { font-size: 2rem; margin-bottom: 1rem; }
.parallax-content p { max-width: 600px; margin: 0 auto; }

/* ========== Booking Form ========== */
#booking-form { background: #F4E3C1; text-align: center; padding: 4rem 1rem; }
#booking-form h2 { color: #0A2E4D; margin-bottom: .5rem; }
#booking-form p { font-size: 1.1rem; margin-bottom: 1.5rem; }
.booking-container { max-width: 700px; margin: 0 auto; }
.booking-container form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.form-group { flex: 1; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem; border: 1px solid #ccc; border-radius: 4px;
}
textarea { min-height: 100px; resize: vertical; }

/* ========== Footer ========== */
footer {
  background-color: #0A2E4D; color: #fff; text-align: center; padding: 2rem 1rem; font-size: .9rem;
}
footer .inner { max-width: 1200px; margin: 0 auto; }
footer nav {
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center;
  gap: .5rem 1.25rem; margin-bottom: 1rem;
}
footer nav a { color: #fff; font-size: 1rem; transition: color .3s ease; }
footer nav a:hover, footer nav a.active { color: #E85D3F; }
.footer-icons { margin: .75rem 0 0; }
.footer-icons a { display: inline-block; margin: 0 .5rem; }
.footer-icons img {
  height: 24px; width: 24px; object-fit: contain; vertical-align: middle; transition: transform .2s ease, filter .2s ease;
}
.footer-icons img:hover { transform: scale(1.2); filter: brightness(120%); }
footer .copyright { font-size: .8rem; color: #ccc; margin-top: 1rem; }

/* ========== Benefits (Reusable) ========== */
#benefits { background: #fff; padding: 4rem 1rem; color: #0A2E4D; }
#benefits .benefits-wrap { max-width: 1100px; margin: 0 auto; text-align: center; }
#benefits h2 { font-size: 2.2rem; color: #0A2E4D; margin-bottom: .25rem; }
#benefits h3 { font-size: 1.25rem; font-weight: 700; color: #0A2E4D; margin-bottom: 1rem; }
#benefits .benefits-note { max-width: 820px; margin: .25rem auto 2rem; font-size: .9rem; color: #3c5873; opacity: .9; }

.benefits-grid {
  max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; align-items: stretch;
}
@media (max-width: 992px) { .benefits-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); } }
@media (max-width: 640px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
  background: #F4E3C1; border: 1px solid rgba(10,46,77,.08); border-radius: 14px;
  padding: 1.25rem 1.1rem; text-align: left; box-shadow: 0 6px 16px rgba(10,46,77,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  display: flex; flex-direction: column; height: 100%;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 12px 24px rgba(10,46,77,.16); border-color: #E85D3F; }
.benefit-icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px;
  background: #0A2E4D; color: #fff; margin-bottom: .75rem;
}
.benefit-icon svg { width: 28px; height: 28px; display: block; fill: currentColor; }
.benefit-card h4 { font-size: 1.05rem; margin-bottom: .35rem; color: #0A2E4D; }
.benefit-card p { font-size: .95rem; color: #244766; }

/* ========== Generic Sections (Inner pages) ========== */
.section { padding: 4rem 1rem; background: #fff; }
.section-title { text-align: center; font-size: 2rem; color: #0A2E4D; margin-bottom: .5rem; }
.section-lead { text-align: center; max-width: 820px; margin: 0 auto 1.5rem; color: #244766; }

/* ===================================================== */
/* === Shared Article Cards (Lessons/Trips/Camps/etc.) === */
/* ===================================================== */

.trip-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
  gap:1.5rem;
}

.trip-card{
  background:#F4E3C1;                 /* matches brand sand */
  border:1px solid rgba(10,46,77,.08);
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:0 6px 16px rgba(10,46,77,.08);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.trip-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 24px rgba(10,46,77,.16);
  border-color:#E85D3F;
}

.trip-img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.trip-body{
  padding:1rem;
  display:flex;
  flex-direction:column;
  gap:.6rem;
}

.trip-title{ color:#2E7D64; font-size:1.15rem; line-height:1.25; }
.trip-desc{ color:#244766; font-size:.95rem; }

.trip-meta{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem 1rem;
  color:#0A2E4D;
  font-size:.92rem;
  list-style:none;
  padding:0;
  margin:.2rem 0 .4rem 0;
}
.trip-meta li{ display:flex; align-items:center; }
.meta-icon{ font-weight:700; margin-right:.35rem; }

/* Reuse global .price-book + .price; ensure spacing on cards */
.trip-card .price-book{ margin-top:.25rem; }

/* Compact on small screens */
@media (max-width:640px){
  .trip-img{ height:200px; }
  .trip-title{ font-size:1.05rem; }
}

/* ===== Footer CTA alignment (visual consistency) ===== */
footer .btn-cta,
footer .footer-cta{
  padding:.6rem 1rem;
  font-size:.95rem;
  border-radius:999px;
}

/* --- Footer legal links (Privacy, Terms, Refunds) --- */
footer a:link,
footer a:visited {
  color: #ffffff;               /* make them white to match the footer */
}

footer a:hover,
footer a:focus {
  color: var(--brand-coral);    /* coral on hover for consistency */
  text-decoration: underline;   /* optional: show they’re links */
}

/* Footer row spacing — works even if the markup is injected */
footer .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Give every direct child of .inner some top margin (except the first) */
footer .inner > * + * {
  margin-top: 12px;   /* adjust to taste: 10–16px */
}

/* Extra breathing room around social icons + copyright */
footer .footer-icons { margin-top: 12px; }
footer .copyright    { margin-top: 12px; }

/* If your legal links are wrapped (recommended from earlier), add this: */
footer .legal-links { margin: 10px 0 12px; line-height: 1.6; }

/* Fallback in case your markup doesn’t have `.inner` for some reason */
footer nav + * { margin-top: 12px; }

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;            /* stick to bottom */
  z-index: 9999;
  background: var(--brand-navy, #0A2E4D);
  color: #fff;
  box-shadow: 0 -10px 30px rgba(0,0,0,.25);
  padding: 14px 16px;
  display: none;                /* shown by JS */
}
.cookie-banner.show { display: block; }

.cookie-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.cookie-text {
  font-size: .95rem;
  line-height: 1.5;
}
.cookie-text a { color: #F4E3C1; text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-btn {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: .6rem 1rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.cookie-btn.accept { background: var(--brand-coral, #E85D3F); color: #fff; }
.cookie-btn.accept:hover { filter: brightness(1.05); }
.cookie-btn.decline {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.cookie-btn.decline:hover { background: rgba(255,255,255,.18); }

/* Mobile */
@media (max-width: 640px){
  .cookie-wrap { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
  .cookie-btn { width: 100%; text-align: center; }
}

/* --- Alt Contact (WhatsApp) --- */
.contact-alt {
  text-align: center;
  margin: 1.25rem auto 0;
}
.contact-alt .contact-or {
  color: #244766;
  opacity: .9;
  margin-bottom: .6rem;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  background: #25D366;         /* WA green */
  color: #0b2e19 !important;   /* dark text for contrast */
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  transition: transform .12s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-wa:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,.24);
}
.btn-wa:active { transform: translateY(0); }

/* tiny WA icon using CSS mask (no extra asset needed) */
.btn-wa .wa-ico {
  width: 18px; height: 18px;
  background: currentColor;
  color: #0b2e19;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M19.11 17.19c-.27-.14-1.57-.77-1.82-.86-.24-.09-.42-.14-.6.14-.18.27-.69.86-.84 1.03-.15.18-.31.2-.58.07-1.57-.78-2.58-1.39-3.61-3.16-.27-.47.27-.43.77-1.44.09-.18.05-.33-.03-.47-.07-.14-.6-1.45-.82-1.98-.22-.53-.44-.46-.6-.47h-.51c-.18 0-.47.07-.71.33-.24.27-.93.91-.93 2.21 0 1.3.95 2.55 1.08 2.73.13.18 1.85 2.83 4.48 3.97.63.27 1.12.43 1.5.55.63.2 1.2.17 1.65.1.5-.07 1.57-.64 1.8-1.26.22-.62.22-1.16.15-1.27-.07-.11-.24-.18-.51-.31ZM16.02 3.33c-7 0-12.68 5.69-12.68 12.69 0 2.24.59 4.34 1.63 6.16L3 29l6.03-1.58c1.77.97 3.8 1.53 5.98 1.53 7 0 12.69-5.69 12.69-12.69S23.02 3.33 16.02 3.33Zm7.55 18.79c-.32.9-1.84 1.75-2.55 1.86-.65.1-1.48.14-2.39-.15-.55-.18-1.25-.41-2.16-.8-3.81-1.64-6.28-5.43-6.47-5.68-.18-.25-1.55-2.05-1.55-3.93 0-1.88 1.18-2.8 1.6-3.18.43-.39.94-.49 1.25-.49.32 0 .63.01.9.02.29.01.68-.11 1.07.82.43 1.03 1.47 3.56 1.6 3.82.13.25.22.55.04.89-.18.34-.27.55-.53.84-.25.3-.53.66-.23 1.21.3.55 1.34 2.2 3.05 3.56 2.1 1.66 2.79 1.39 3.34 1.2.55-.18.88-.79 1.14-1.24.25-.45.54-.39.9-.23.36.16 2.3 1.08 2.69 1.27.39.19.65.29.75.45.09.16.09.92-.23 1.82Z"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M19.11 17.19c-.27-.14-1.57-.77-1.82-.86-.24-.09-.42-.14-.6.14-.18.27-.69.86-.84 1.03-.15.18-.31.2-.58.07-1.57-.78-2.58-1.39-3.61-3.16-.27-.47.27-.43.77-1.44.09-.18.05-.33-.03-.47-.07-.14-.6-1.45-.82-1.98-.22-.53-.44-.46-.6-.47h-.51c-.18 0-.47.07-.71.33-.24.27-.93.91-.93 2.21 0 1.3.95 2.55 1.08 2.73.13.18 1.85 2.83 4.48 3.97.63.27 1.12.43 1.5.55.63.2 1.2.17 1.65.1.5-.07 1.57-.64 1.8-1.26.22-.62.22-1.16.15-1.27-.07-.11-.24-.18-.51-.31ZM16.02 3.33c-7 0-12.68 5.69-12.68 12.69 0 2.24.59 4.34 1.63 6.16L3 29l6.03-1.58c1.77.97 3.8 1.53 5.98 1.53 7 0 12.69-5.69 12.69-12.69S23.02 3.33 16.02 3.33Zm7.55 18.79c-.32.9-1.84 1.75-2.55 1.86-.65.1-1.48.14-2.39-.15-.55-.18-1.25-.41-2.16-.8-3.81-1.64-6.28-5.43-6.47-5.68-.18-.25-1.55-2.05-1.55-3.93 0-1.88 1.18-2.8 1.6-3.18.43-.39.94-.49 1.25-.49.32 0 .63.01 .9.02.29.01.68-.11 1.07.82.43 1.03 1.47 3.56 1.6 3.82.13.25.22.55.04.89-.18.34-.27.55-.53.84-.25.3-.53.66-.23 1.21.3.55 1.34 2.2 3.05 3.56 2.1 1.66 2.79 1.39 3.34 1.2.55-.18.88-.79 1.14-1.24.25-.45.54-.39.9-.23.36.16 2.3 1.08 2.69 1.27.39.19.65.29.75.45.09.16.09.92-.23 1.82Z"/></svg>') center / contain no-repeat;
}

/* more space before the footer */
.contact-alt {
  margin: 1.25rem auto 3rem; /* top | sides | bottom */
}

@media (max-width: 640px) {
  .contact-alt { margin-bottom: 3.75rem; } /* a touch more on mobile */
}

.form-status { margin-top: 10px; font-size: .95rem; }
.form-status.ok  { color: #2E7D64; }
.form-status.err { color: #E85D3F; }

/* ============ Booking form – polished look (no HTML changes) ============ */
/* 1) Container + spacing */
#booking-form { padding-bottom: 3rem; } /* space before footer */
#booking-form h2.section-title { margin-bottom: .35rem; }
#booking-form p { margin-bottom: 1.75rem; }

/* 2) Make the form a responsive grid */
#bookingForm{
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 14px 16px;
  max-width: 980px;
  margin: 0 auto;
}

/* 3) Inputs, selects, textarea */
#bookingForm input,
#bookingForm select,
#bookingForm textarea{
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(10,46,77,.18);
  border-radius: 12px;
  background: #fff;
  color: var(--brand-navy);
  font-size: 16px;
  line-height: 1.3;
  outline: none;
  box-shadow: inset 0 2px 8px rgba(10,46,77,.06);
  transition: border-color .15s ease, box-shadow .15s ease, transform .05s ease;
}

#bookingForm input::placeholder,
#bookingForm textarea::placeholder{ color: #7a95ad; }

#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus{
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(46,125,100,.15), inset 0 2px 8px rgba(10,46,77,.06);
}

/* nicer select caret (keeps native behavior) */
#bookingForm select{
  background-color:#fff;
  background-image: none;
}

/* hide number spinners (Chrome) */
#bookingForm input[type="number"]::-webkit-outer-spin-button,
#bookingForm input[type="number"]::-webkit-inner-spin-button{ -webkit-appearance: none; margin: 0; }
#bookingForm input[type="number"]{ -moz-appearance: textfield; }

/* 4) Layout: what spans full width */
#bookingForm textarea,
#bookingForm .btn-cta,
#formStatus{
  grid-column: 1 / -1; /* full width row */
}

/* date + select stay side-by-side on desktop automatically */

/* 5) Textarea sizing */
#bookingForm textarea{ min-height: 140px; resize: vertical; }

/* 6) Button alignment (reuse your .btn-cta) */
#bookingForm .btn-cta{
  margin-top: 6px;
  justify-self: center;
  width: 100%;
}

/* 7) Status line */
.form-status{
  margin-top: 10px;
  text-align: center;
  font-size: .95rem;
}
.form-status.ok{ color: var(--brand-green); }
.form-status.err{ color: var(--brand-coral); }

/* 8) Mobile: single column */
@media (max-width: 680px){
  #bookingForm{ grid-template-columns: 1fr; gap: 12px; }
}

/* 9) “or” divider + WhatsApp CTA spacing if present */
.or-divider{ 
  margin: 18px auto 10px; 
  text-align:center; 
  color:#5a748c; 
  font-weight:600; 
}
.wa-cta{ margin: 6px auto 26px; display:block; }

/* Titles inside the grid should span full width */
.form-section-title{
  grid-column: 1 / -1;
  margin: 10px 0 2px;
  font-weight: 800;
  color: var(--brand-navy);
  opacity: .9;
  font-size: .95rem;
}

/* WhatsApp button style (brand-like) */
.btn-wa{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  background: #25d366;
  color: #0a2e4d;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  transition: transform .12s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-wa:hover{ transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,.22); filter: brightness(1.03); }

/* Light vertical rhythm for the booking section only */
#booking-form .form-section-title { margin: 1.25rem 0 .5rem; }
#booking-form form > * + * { margin-top: .65rem; }
#booking-form .or-divider { margin: 1.25rem 0; }
#booking-form .wa-cta { margin-top: .75rem; display: inline-flex; align-items: center; }

/* add to css/styles.css */
.btn-cta.is-loading { opacity: .7; pointer-events: none; }
.form-status { margin-top: .75rem; font-size: .95rem; }

/* Booking form status message */
.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  display: none;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: #e0f5ec;
  border: 1px solid #2e7d64;
  color: #134e4a;
  font-weight: 600;
}

.form-status.is-error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #7f1d1d;
  font-weight: 600;
}
