:root{
  /* Friendly "Gumleaf & Peach" palette */
  --bg:#fff;
  --panel:#fffaf6;
  --ink:#0f172a;
  --ink-soft:#475569;

  /* Brand & accent */
  --brand:#14b8a6;
  --brand-dark:#0f766e;
  --brand-rgb:20,184,166;
  --accent:#f4b8a8;
  --accent-rgb:244,184,168;

  --ring:rgba(var(--brand-rgb),.35);
  --radius:14px;
  --shadow:0 10px 30px rgba(2,8,23,.08);
}

/* Base */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Outfit',system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Noto Sans','Helvetica Neue',Arial,'Apple Color Emoji','Segoe UI Emoji';
  color:var(--ink);
  background:var(--bg);
  line-height:1.65;
}

/* Layout */
.container{width:min(1120px,92%);margin:0 auto}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 0}
.logo{font-weight:700;text-decoration:none;color:var(--ink);letter-spacing:.2px}
.logo-img{height:80px;width:auto;display:block}
.nav{position:relative;display:flex;align-items:center}
.nav a{margin-left:1rem;text-decoration:none;color:var(--ink)}
.nav .btn{margin-left:1rem}

/* Home button next to the logo */
.home-btn {
  --home-accent: #14b8a6;

  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;               /* sits right beside the logo */
  padding: 6px 14px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  color: var(--home-accent);
  position: relative;
  overflow: hidden;                /* for background slide animation */
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
}

/* Sliding glow + arrow appear + gentle lift */
.home-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(11,108,255,.12), transparent);
  transform: translateX(-120%);
  transition: transform .35s ease;
}

.home-btn::after {
  content: "";
  width: 6px; height: 6px;         /* chevron size */
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg) translateX(-6px);
  opacity: 0;
  transition: transform .25s ease, opacity .15s ease;
}

/* Hover / focus animation */
.home-btn:hover,
.home-btn:focus-visible {
  color: #fff;
  border-color: var(--home-accent);
  box-shadow: 0 6px 18px rgba(2, 46, 33, 0.25);
  transform: translateY(-1px);
}

.home-btn:hover::before,
.home-btn:focus-visible::before {
  transform: translateX(120%);     /* shimmering sweep */
}

.home-btn:hover::after,
.home-btn:focus-visible::after {
  opacity: 1;
  transform: rotate(-45deg) translateX(0);  /* chevron slides in */
}

/* Fill background on hover with a smooth slide */
.home-btn {
  background:
    linear-gradient(#0f766e, #0f766e) left/0% 100% no-repeat; /* starts collapsed */
  transition: background-size .28s ease, transform .18s ease, box-shadow .18s ease, color .18s ease;
}
.home-btn:hover,
.home-btn:focus-visible {
  background-size: 100% 100%;      /* fills button */
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .home-btn,
  .home-btn::before,
  .home-btn::after {
    transition: none !important;
  }
}

/* Sticky header */
.site-header{
  position:sticky;top:0;backdrop-filter:saturate(160%) blur(6px);
  background:rgba(255,255,255,.75);
  border-bottom:1px solid rgba(15,23,42,.06);
  z-index:40
}
.site-header.scrolled{box-shadow:var(--shadow)}
.site-main{padding-bottom:5rem}
.site-footer{background:var(--panel);padding:2.5rem 0;margin-top:4rem}

/* Utilities */
.small{font-size:.9rem}
.muted{color:var(--ink-soft)}
.mt-0{margin-top:0}

/* Hero */
.hero{padding:4rem 0 2rem;position:relative}
.hero::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:
    radial-gradient(600px 220px at 18% -30%,rgba(var(--brand-rgb),.16),transparent 70%),
    radial-gradient(680px 240px at 110% 10%,rgba(var(--accent-rgb),.22),transparent 60%),
    linear-gradient(180deg,#fff,#fffaf8 50%,#fff 100%)
}
.hero-inner{display:grid;grid-template-columns:1.3fr .9fr;gap:2rem;align-items:center}
.hero-card{border:1px solid #f0e6df;background:#fffdfb}
.lead{font-size:1.25rem}
.pill-list{list-style:none;padding:0;display:flex;flex-wrap:wrap;gap:.6rem;margin:1rem 0 0}
.pill-list li{background:#f9f5f2;border:1px solid #efe7e1;padding:.45rem .75rem;border-radius:999px}
.badges{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:1rem}
.badge{background:#e6f7f4;border:1px solid #ccefe9;color:#0f766e;font-weight:700;padding:.35rem .6rem;border-radius:999px;font-size:.9rem}
.cta-row{display:flex;gap:.75rem;align-items:center;margin:.75rem 0 0}

/* Carousel */
.carousel{position:relative;height:700px;margin-top:.3rem;overflow:hidden;border-radius:var(--radius)}
.carousel-inner{height:100%;position:relative}
.carousel .slide{
  position:absolute;inset:0;background-size:cover;background-position:bottom center;
  opacity:0;transition:opacity 1s ease-in-out
}
.carousel .slide.active{opacity:1}
.carousel-caption{
  position:absolute;inset:0;display:grid;place-items:center;text-align:center;color:#fff;
  background:rgba(0,0,0,.35);padding:2rem
}
.carousel-caption h2{color:#fff;margin-bottom:1rem}

/* Screen-reader only (fallback logo text) */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* Cards, icons, buttons */
.card{background:#fff;border:1px solid #efe7e1;border-radius:var(--radius);padding:1.25rem;box-shadow:var(--shadow)}
.icon{width:38px;height:38px;display:grid;place-items:center;border-radius:10px;background:#eafaf7;border:1px solid #d6f3ee;font-weight:700;color:#0f766e}
.btn{display:inline-block;background:var(--brand);color:#fff;padding:.78rem 1rem;border-radius:.7rem;text-decoration:none;font-weight:700;box-shadow:0 6px 16px rgba(20,184,166,.25)}
.btn:hover{background:var(--brand-dark)}
.btn:focus-visible{outline:2px solid var(--ring);outline-offset:2px}
.btn-alt{display:inline-block;padding:.72rem 1rem;border-radius:.7rem;text-decoration:none;font-weight:700;border:1px solid #efe7e1;color:var(--ink);background:#fff}
.btn-alt:hover{border-color:#e3d7ce}
.link{color:var(--brand-dark);text-decoration:none}
.link:hover{text-decoration:underline}
.link:focus-visible{outline:2px solid var(--ring);outline-offset:2px}

/* Sections */
.panel{background:var(--panel);border:1px solid #efe7e1;padding:1.5rem;border-radius:.9rem;margin-top:1.5rem}
.features{padding:1.5rem 0 0}
.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.service{padding:1rem 0;border-bottom:1px solid #efe7e1}
.service:last-child{border-bottom:0}

/* Interactive service card (merged + de-duped) */
.service-card{
  position:relative;background:#fff;border:1px solid #efe7e1;border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease
}
.service-card .icon-wrap{display:flex;align-items:center;justify-content:center;margin-bottom:.6rem}
.service-icon{
  width:42px;height:42px;color:var(--brand-dark);opacity:.95;
  transition:transform .25s ease,color .2s ease,filter .2s ease;will-change:transform
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 36px rgba(2,8,23,.12);
  border-color:rgba(var(--brand-rgb),.35)
}
.service-card:hover .service-icon{
  transform:translateY(-2px) scale(1.05);color:var(--brand);
  filter:drop-shadow(0 6px 12px rgba(var(--brand-rgb),.25))
}
.service-card:focus-within{outline:2px solid var(--ring);outline-offset:4px;border-radius:var(--radius)}

.service-card .media{position:relative;aspect-ratio:3/2;overflow:hidden;background:#f7f4f1}
.service-card .media img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;transition:transform .5s ease,filter .3s ease}
.service-card:hover .media img{transform:scale(1.04);filter:brightness(1.03)}
.badge-icon{
  position:absolute;left:12px;bottom:12px;height:40px;width:40px;display:grid;place-items:center;border-radius:10px;
  background:#eafaf7;border:1px solid #d6f3ee;color:#0f766e;box-shadow:0 8px 18px rgba(20,184,166,.25)
}
.badge-icon svg{width:24px;height:24px}
.service-card .body{padding:1rem}
.service-card .body h2{margin:0 0 .5rem;font-size:1.15rem}
.service-card .body p{margin:.4rem 0}

/* Steps */
.steps{margin-top:2rem}
.step-list{counter-reset:step;list-style:none;padding:0;display:grid;grid-template-columns:repeat(5,1fr);gap:1rem}
.step-list li{
  position:relative;padding:1rem;background:#fff;border:1px solid #efe7e1;border-radius:var(--radius);box-shadow:var(--shadow)
}
.step-list li::before{
  counter-increment:step;content:counter(step);
  position:absolute;top:-12px;left:-12px;background:var(--brand);color:#fff;width:34px;height:34px;border-radius:50%;
  display:grid;place-items:center;font-weight:700;box-shadow:0 6px 16px rgba(20,184,166,.35)
}

/* FAQ */
.faq details{border:1px solid #efe7e1;border-radius:var(--radius);padding:.9rem 1rem;margin:.6rem 0;background:#fff}
.faq summary{font-weight:700;cursor:pointer}

/* CTA final */
.cta-final{margin-top:2rem}

/* Forms */
.contact-form{display:grid;gap:1rem}
.contact-form label{display:grid;gap:.3rem}
input,select,textarea{
  width:100%;padding:.8rem .85rem;border:1px solid #efe7e1;border-radius:.6rem;font:inherit
}
input:focus,select:focus,textarea:focus{outline:2px solid var(--ring);border-color:var(--brand)}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1rem}

/* Before/After gallery (kept the richer version) */
.ba-grid{
  display:grid;gap:1.2rem;grid-template-columns:1fr;max-width:1200px;margin-inline:auto
}
.ba-range{opacity:0;cursor:ew-resize;z-index:10;pointer-events:auto;touch-action:none}

/* Typography */
h1,h2,h3{line-height:1.2}
h1{font-size:clamp(1.9rem,3.6vw,2.6rem);margin:0 0 .6rem}
h2{font-size:clamp(1.35rem,2.4vw,1.7rem);margin-top:2rem}

/* Floating CTA for mobile */
.floating-cta{
  position:fixed;left:50%;transform:translateX(-50%);bottom:16px;z-index:50;background:var(--brand);color:#fff;
  padding:.9rem 1.1rem;border-radius:999px;text-decoration:none;font-weight:800;box-shadow:0 12px 28px rgba(20,184,166,.45);display:none
}

/* Organisers media/content layout */
.organisers{
  display:grid;grid-template-columns:360px 1fr;gap:1.25rem 1.5rem;align-items:start;margin:1rem 0 .5rem
}
.organisers-media{display:flex;justify-content:center}
.organisers-content{align-self:center}
.organisers-photo{
  max-width:300px;width:100%;height:auto;border-radius:var(--radius);box-shadow:var(--shadow);
  transition:transform .3s ease,box-shadow .3s ease,filter .3s ease
}
.tooltip-wrap:hover .organisers-photo{transform:scale(1.03);filter:brightness(1.05)}
.tooltip-wrap:active .organisers-photo{transform:scale(.98)}
.organisers-photo.small{max-width:400px}

/* Tooltip */
.tooltip-wrap{position:relative;display:inline-block}
.tooltip{
  position:absolute;left:50%;bottom:-10px;transform:translate(-50%,100%);
  padding:.4rem .6rem;background:#0b172a;color:#fff;font-size:.85rem;border-radius:.5rem;box-shadow:0 8px 20px rgba(2,8,23,.18);
  white-space:nowrap;opacity:0;visibility:hidden;transition:opacity .2s ease,transform .2s ease,visibility .2s;pointer-events:none
}
.tooltip-wrap:hover .tooltip,.tooltip-wrap:focus-within .tooltip{
  opacity:1;visibility:visible;transform:translate(-50%,calc(100% + 6px))
}

/* Tabs */
.tabs{display:flex;gap:.5rem;margin:1rem 0;flex-wrap:wrap}
.tab{border:1px solid #efe7e1;background:#fff;padding:.5rem .75rem;border-radius:.6rem;cursor:pointer;font-weight:600}
.tab.is-active{background:#f9f5f2;border-color:#e8ddd5}
.tab-panels{margin-top:.5rem}
.tab-panel{display:none}
.tab-panel.is-active{display:block}

/* Checklists */
.checklist{list-style:none;padding:0}
.checklist li::marker{content:none}
.checklist li{padding-left:0}

/* Services index */
.services-hero{padding:1rem 0 .2rem}
.services-hero .lead{margin-top:.3rem;color:var(--ink-soft)}
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}

/* Dropdown (header: Services) */
.nav .dropdown{position:relative;display:inline-block}
.nav .nav-parent{position:relative;padding:.4rem .7rem;display:inline-block}
.nav .dropdown-menu{
  position:absolute;top:100%;left:0;min-width:230px;background:#fff;border:1px solid #efe7e1;border-radius:.7rem;
  box-shadow:var(--shadow);padding:.4rem;display:none;z-index:100;margin-top:0
}
.nav .dropdown:hover .dropdown-menu,
.nav .dropdown:focus-within .dropdown-menu{display:block}
.nav .dropdown-menu a{display:block;padding:.55rem .7rem;border-radius:.5rem;color:var(--ink);text-decoration:none;white-space:nowrap}
.nav .dropdown-menu a:hover{background:#f9f5f2}

/* Contact page */
button[aria-busy="true"]{position:relative;pointer-events:none;opacity:.85}
button[aria-busy="true"]::after{
  content:"";position:absolute;right:12px;top:50%;width:14px;height:14px;border-radius:50%;
  border:2px solid currentColor;border-top-color:transparent;transform:translateY(-50%);animation:spin .8s linear infinite
}
@keyframes spin{to{transform:translateY(-50%) rotate(360deg)}}

/* Responsive */
@media (max-width:1000px){
  .hero-inner{grid-template-columns:1fr}
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .step-list{grid-template-columns:1fr 1fr}
  .service-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:820px){
  .organisers{grid-template-columns:1fr;text-align:center}
  .organisers-content{text-align:left}
  .tooltip{left:50%;transform:translate(-50%,100%)}
}
@media (max-width:700px){
  .grid-2{grid-template-columns:1fr}
  .nav a{margin-left:.6rem}
  .floating-cta{display:inline-block}
  .step-list{grid-template-columns:1fr}
  .service-grid{grid-template-columns:1fr}
  .nav .dropdown-menu{position:fixed;top:64px;left:4%;right:4%}
}

/* --- Mobile nav base --- */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  margin-left: auto;
  cursor: pointer;
}

.menu-bars,
.menu-cross {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
}
.menu-bars::before,
.menu-bars::after,
.menu-cross::before,
.menu-cross::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: currentColor;
}
.menu-bars::before { top: -7px; }
.menu-bars::after  { top:  7px; }

/* Cross icon */
.menu-cross {
  background: transparent;
}
.menu-cross::before {
  transform: rotate(45deg);
  top: 0;
}
.menu-cross::after {
  transform: rotate(-45deg);
  top: 0;
}

/* --- Overlay & Drawer: live on top of EVERYTHING --- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 2147483646; /* huge; under the drawer */
}
.mobile-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 270px);
  background: #fff;
  color: #111;
  box-shadow: -10px 0 30px rgba(0,0,0,.15);
  transform: translateX(100%);
  transition: transform .28s ease;
  z-index: 2147483647; /* one higher than overlay */
  display: flex;
  flex-direction: column;
}
.nav-mobile.open { transform: translateX(0); }
.reduce-motion .nav-mobile,
.reduce-motion .mobile-overlay { transition: none !important; }

/* Drawer header */
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #eee;
}
.mobile-title { font-weight: 600; }
.menu-close { background: none; border: 0; width: 40px; height: 40px; cursor: pointer; }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  margin-left: auto;
  cursor: pointer;
  color: #222;                 /* base */
  transition: color .2s ease;  /* hover/focus color */
}
.menu-toggle:hover,
.menu-toggle:focus-visible { color: #14b8a6; }  /* hover colour change */

.menu-bars,
.menu-cross {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
}
.menu-bars::before,
.menu-bars::after,
.menu-cross::before,
.menu-cross::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: currentColor;
}
.menu-bars::before { top: -7px; }
.menu-bars::after  { top:  7px; }

.menu-cross { background: transparent; }
.menu-cross::before { transform: rotate(45deg); top: 0; }
.menu-cross::after  { transform: rotate(-45deg); top: 0; }

/* Drawer list */
.mobile-list {
  list-style: none;
  margin: 0; padding: 10px 6px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-item { margin: 2px 0; }
.mobile-item a {
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
}
.mobile-item a:active { background: #f3f3f3; }
.mobile-item.cta .btn { display: inline-block; margin: 8px 10px; }

/* Accordion */
.has-sub > .sub-toggle {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 12px 14px;
  font: inherit;
  cursor: pointer;
  border-radius: 10px;
  position: relative;       /* so arrow can be positioned */
  transition: background .2s ease;
}

/* highlight on hover/focus */
.has-sub > .sub-toggle:hover,
.has-sub > .sub-toggle:focus-visible {
  background: #f3f3f3;       /* light gray highlight */
}

/* add the arrow (chevron) */
.has-sub > .sub-toggle::after {
  content: "";
  border: solid currentColor;
  border-width: 0 3px 3px 0;     /* thicker stroke */
  display: inline-block;
  padding: 6px;                  /* bigger size */
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .2s ease;
}

/* rotate arrow when expanded */
.has-sub > .sub-toggle[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(90deg);
}

/* Services toggle button (already interactive) */
.has-sub > .sub-toggle:hover,
.has-sub > .sub-toggle:focus-visible {
  background: #f3f3f3;
}

/* Regular links inside the drawer */
.mobile-item a:hover,
.mobile-item a:focus-visible {
  background: #f3f3f3;
}


.sub-list {
  margin: 0 0 8px 0;
  padding: 0 0 8px 8px;
  border-left: 2px solid #eee;
  overflow: hidden;
  transition: max-height .25s ease;
}
.sub-list a { padding: 10px 12px; }
.sub-view-all a { font-weight: 600; }

/* Responsive: hide desktop nav, show hamburger */
@media (max-width: 960px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* Safety: anything with huge z-index should be below overlay/drawer */
.floating-cta,
.sticky-banner,
.cookie-bar {
  position: fixed;
  z-index: 9999; /* still below overlay/drawer */
}

/* Extra safety: avoid accidental stacking-context traps */
.site-header, .header-inner, .site-main, .site-footer {
  transform: none !important;
  will-change: auto !important;
}

/* ========== Facebook Icon Buttons (header + drawer) ========== */
.icon-fb {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Header icon button */
.social-btn.fb {
  --fb: #1877f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: 6px;          /* sits right after Home button */
  border: 2px solid var(--fb);
  border-radius: 10px;
  color: var(--fb);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease, background-color .18s ease, border-color .18s ease;
}

.social-btn.fb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 120px at var(--x,50%) var(--y,50%), rgba(24,119,242,.15), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
}

.social-btn.fb:hover,
.social-btn.fb:focus-visible {
  background-color: var(--fb);
  color: #fff;
  border-color: var(--fb);
  box-shadow: 0 6px 16px rgba(24,119,242,.25);
  transform: translateY(-1px);
}
.social-btn.fb:hover::before,
.social-btn.fb:focus-visible::before { opacity: 1; }

/* Fancy hover hotspot — optional (mouse position glow) */
.social-btn.fb {
  /* update custom properties via JS for hotspot, but looks fine without */
}

/* Drawer link with icon */
.mobile-social.fb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}
.mobile-social.fb:hover,
.mobile-social.fb:focus-visible { background: #f3f3f3; }

/* ========== Footer FB section ========== */
.fb-section {
  margin-top: 36px;
  width: 400px;
  margin: 0 auto;
}
.fb-heading {
  font-weight: 700;
  margin: 0 0 10px;
  font-size: 1.1rem;
  width: 200px;
  padding: 0 0 10px;
  margin: 0 auto;
}

/* Make plugin responsive */
#fb-plugin-anchor .fb-page {
  max-width: 100%;
}

/* === Booking page polish (append to global.css) === */
/* Layout: give the booking page a comfy reading width */
.container.narrow {
  max-width: 820px;
}

/* Page heading: subtle underline & accent */
.container.narrow h1 {
  position: relative;
  margin-bottom: .75rem;
  letter-spacing: .2px;
}
.container.narrow h1::after {
  content: "";
  display: block;
  width: 64px; height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(var(--brand-rgb),.25));
}

/* Booking card feel */
.booking-form {
  background: linear-gradient(180deg,#fff,rgba(255,250,246,.65));
  border: 1px solid #efe7e1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem;
  margin-top: 1rem;
}
@media (min-width: 720px){
  .booking-form { padding: 1.25rem 1.3rem; }
}

/* Inputs live inside the card – keep them airy */
.booking-form label { display: block; margin-bottom: 1rem; color: #fff}
.booking-form .grid-2 { display:grid; gap:1rem; grid-template-columns:1fr 1fr; }
@media (max-width: 720px){ .booking-form .grid-2 { grid-template-columns:1fr; } }

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: .75rem .85rem;
  border: 1px solid #efe7e1;
  border-radius: .7rem;
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
  background: #fff;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid var(--ring);
  border-color: rgba(var(--brand-rgb), .55);
  box-shadow: 0 6px 18px rgba(var(--brand-rgb), .12);
}

/* Slot picker: tidy fieldset + “chips” */
.slot-fieldset { margin: .2rem 0 0; padding: 0; border: 0; }
.slot-fieldset > legend {
  font-weight: 700; color: var(--ink-soft);
  margin: 0 0 .5rem;
}

.slot-grid {
  min-height: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  gap: .55rem;
  align-items: start;
}

/* Time chips with micro-interactions */
.slot-btn {
  width: 100%;
  padding: .62rem .75rem;
  border-radius: 12px;
  border: 1px solid #dbe1ef;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  box-shadow: 0 2px 8px rgba(2,8,23,.04);
  transition: transform .06s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.slot-btn:hover { background: #f8fafc; box-shadow: 0 10px 22px rgba(2,8,23,.10); }
.slot-btn:active { transform: translateY(1px); }
.slot-btn[aria-pressed="true"] {
  border-color: rgba(var(--brand-rgb), .6);
  background: rgba(var(--brand-rgb), .08);
  box-shadow: 0 12px 28px rgba(var(--brand-rgb), .22);
  outline: 2px solid var(--ring);
}
.slot-btn:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

/* Primary CTA */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: .8rem;
  background: var(--brand);
  color: #fff; border: 1px solid transparent;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(20,184,166,.25);
  transition: background .18s ease, box-shadow .2s ease, transform .06s ease;
}
.btn:hover { background: var(--brand-dark); box-shadow: 0 16px 34px rgba(20,184,166,.30); transform: translateY(-1px); }
.btn[disabled]{ opacity:.65; cursor:not-allowed; transform:none; }

/* Toast (kept from your page styles) – add subtle lift when visible */
#toast.show { box-shadow: 0 12px 26px rgba(2,8,23,.18); }

/* Dark mode niceties */
@media (prefers-color-scheme: dark){
  .booking-form {
    background: linear-gradient(180deg,#0b1220,#0b1220);
    border-color: rgba(255,255,255,.08);
  }
  .slot-btn {
    background:#0e172a; border-color: rgba(255,255,255,.1); color:#e6edf6;
  }
  .slot-btn:hover { background:#111d33; }
}

/* Reduced motion: respect user preference */
@media (prefers-reduced-motion: reduce){
  .slot-btn, .btn { transition: none !important; }
}
