/* SplashDispatch • Snorkeling Landing Page */

:root {
  --bg: #031a2a;
  --ink: #0b1220;
  --text: #0d2230;
  --muted: #355a66;
  --card: #ffffff;
  --aqua: #0ec5da;
  --teal: #0aa1b0;
  --deep: #052d52;
  --coral: #ff6b6b;
  --sun: #ffd166;
  --sea: #09a7bd;
  --violet: #7b5cff;
  --lime: #9cff57;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 120% -10%, rgba(123,92,255,0.15), transparent 60%),
              radial-gradient(900px 700px at -10% -20%, rgba(9,167,189,0.18), transparent 60%),
              linear-gradient(180deg, #031a2a 0%, #05314e 100%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header removed */

.chip {
  --c: #ffffff;
  color: var(--c);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.chip:hover { transform: translateY(-1px); background: rgba(255,255,255,0.18);} 
.chip--wa { --c: #eafff8; }
.chip--sms { --c: #e9f6ff; }
.chip--call { --c: #fffef0; }

/* Hero */
.hero { position: relative; padding: 72px 0 48px; color: #e6fbff; overflow: hidden; }
/* (hero logo removed) */
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(115%) contrast(102%); }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background:
  radial-gradient(600px 200px at 20% 10%, rgba(255, 209, 102, 0.24), transparent 60%),
  radial-gradient(800px 400px at 70% -10%, rgba(14,197,218,0.35), transparent 60%),
  linear-gradient(180deg, rgba(3,26,42,0.55), rgba(3,26,42,0.75));
  mix-blend-mode: multiply;
}
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; align-items: center; }
.hero-copy .eyebrow { color: #c8f7ff; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; font-size: 12px; opacity: .9; }
.hero-copy h1 { margin: 8px 0 8px; font-size: clamp(30px, 5vw, 56px); line-height: 1.02; letter-spacing: .2px; text-shadow: 0 8px 30px rgba(0,0,0,.35); }
.hero-copy .tagline { margin: 4px 0 16px; color: var(--sun); font-size: 18px; font-weight: 800; letter-spacing: .2px;
  text-shadow: 0 6px 16px rgba(0,0,0,.35), 0 1px 0 rgba(0,0,0,.35); }

.social-proof { display: inline-flex; align-items: center; gap: 10px; margin: 6px 0 14px; padding: 8px 12px; border-radius: 999px;
  color: #042330; font-weight: 900; letter-spacing: .2px;
  background: linear-gradient(135deg, #fff3b8, #ffe893 50%, #fffdf2 140%);
  box-shadow: 0 10px 24px rgba(3,26,42,.25), inset 0 1px 0 rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.35);
}
.social-proof .stars { color: #ffb400; text-shadow: 0 1px 0 rgba(255,255,255,.6); font-size: 16px; }
.social-proof .count { font-size: 14px; }
.badges { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.badge { padding: 8px 12px; border-radius: 999px; font-weight: 600; font-size: 12px; color: #052d52; background: #eaffff; border: 1px solid rgba(0,0,0,0.06); }

.hero-card {
  background: linear-gradient(180deg, #ffffff, #f8feff);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.card-title { margin: 0 0 8px; font-size: 18px; color: var(--deep); }
.request-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 650; font-size: 12px; color: #0a3853; letter-spacing: .2px; }
.field input, .field select, .field textarea {
  appearance: none; width: 100%; padding: 10px 12px; border-radius: 12px; border: 1px solid #d7eef4;
  background: #fff; color: #0d2230; outline: none; box-shadow: 0 1px 0 #ffffff inset, 0 0 0 4px rgba(14,197,218,0); transition: box-shadow .18s ease, border-color .18s ease;
}
.field textarea { resize: vertical; min-height: 70px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #9be9f3; box-shadow: 0 1px 0 #ffffff inset, 0 0 0 4px rgba(14,197,218,0.2); }
.btn-primary {
  grid-column: 1 / -1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px; border-radius: 12px; border: 0; cursor: pointer;
  color: #042330; font-weight: 800; letter-spacing: .2px; font-size: 15px; text-transform: none;
  background: linear-gradient(135deg, var(--sun), #fff6a6 40%, #fefefe 140%),
              linear-gradient(135deg, rgba(9,167,189,.35), rgba(255,107,107,.25));
  box-shadow: 0 10px 18px rgba(255, 209, 102, 0.35), 0 10px 24px rgba(14, 197, 218, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-primary:hover { transform: translateY(-1px); filter: saturate(110%); box-shadow: 0 12px 22px rgba(255, 209, 102, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.85); }

.micro { margin: 6px 0 0; font-size: 12px; color: #406274; }
.alt-contact { grid-column: 1 / -1; }
.policy { grid-column: 1 / -1; color: #6f8e9b; }

/* Success confirmation card (after form submit) */
.success-card { color: #0d2230; }
.success-card h3 { margin: 0 0 8px; color: #073047; }
.hero-card .success-card, .hero-card .success-card p { color: #0d2230 !important; }
.hero-card .success-card h3 { color: #073047 !important; }
.success-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }

/* Section shape dividers */
.shape { position: relative; height: 80px; }
.shape svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.shape--bottom { margin-top: 16px; }

/* Water report */
.report { padding: 40px 0 20px; color: #e7fbff; }
.report h2 { margin: 0 0 6px; font-size: 22px; }
.report .sub { margin: 0 0 14px; color: #bfefff; opacity: .9; }
.report-cards { display: grid; grid-template-columns: 1fr; gap: 14px; justify-items: center; }
.report-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px; padding: 14px; backdrop-filter: blur(6px) saturate(140%);
}
.report-title { margin: 0; font-size: 13px; color: #e3faff; opacity: .95; }
.report-value { margin: 6px 0 0; font-size: 24px; font-weight: 800; }
.report-hint { margin: 2px 0 0; font-size: 12px; color: #bfefff; opacity: .9; }

/* Consolidated factors + recommendation */
.report-factors { list-style: none; margin: 8px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.report-factors li { font-size: 14px; color: #eaffff; }
/* Redesigned wrapper + items */
.report-wrap {
  position: relative;
  padding: 16px;
  border-radius: 16px;
  width: min(900px, 100%);
  margin-inline: auto;
  background:
    radial-gradient(800px 400px at 120% -20%, rgba(14,197,218,0.16), transparent 60%),
    radial-gradient(600px 300px at -20% 120%, rgba(255,209,102,0.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 10px 30px rgba(2, 18, 30, 0.25), inset 0 1px 0 rgba(255,255,255,0.5);
  backdrop-filter: blur(6px) saturate(140%);
}
.report-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.report-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: .6px; color: #c8f7ff; opacity: .9; font-weight: 800; }
.report-title { margin: 2px 0 6px; font-size: 16px; color: #ffffff; }
.rf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.rf-item { display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.22);
}
.rf-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 999px; font-size: 18px; background: rgba(14,197,218,0.18); box-shadow: inset 0 1px 0 rgba(255,255,255,0.6); }
.rf-meta { line-height: 1.1; }
.rf-k { font-size: 12px; color: #e3faff; opacity: .95; }
.rf-v { font-size: 16px; font-weight: 800; color: #ffffff; margin-top: 2px; }
.report-reco { margin-top: 12px; padding: 12px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.24);
  background: linear-gradient(135deg, rgba(255,209,102,0.3), rgba(14,197,218,0.25));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.reco-label { display: inline-flex; align-items: center; gap: 6px; padding: 4px 8px; border-radius: 999px; font-size: 12px; font-weight: 900; color: #042330;
  background: linear-gradient(135deg, #fff3b8, #fff0a1 60%, #ffffff);
  box-shadow: 0 4px 12px rgba(3,26,42,.25), inset 0 1px 0 rgba(255,255,255,.85);
  margin-right: 8px;
}
.reco-text { color: #ffffff; font-weight: 800; text-shadow: 0 1px 0 rgba(0,0,0,.25); }
/* Report snippet & micro-CTA */

/* Responsive layout for factor grid */
@media (max-width: 900px) {
  .rf-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .rf-grid { grid-template-columns: 1fr; }
}

/* Gallery */
.gallery { background: #f9feff; color: var(--text); padding: 32px 0 24px; position: relative; }
.gallery h2 { margin: 0 0 8px; font-size: 22px; }
.gallery .sub { margin: 0 0 16px; color: #5a7481; }
.grid-gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.g-item { position: relative; border-radius: 12px; overflow: hidden; border: 0; box-shadow: 0 4px 12px rgba(0,0,0,.08); grid-column: span 2; }
.g-item.g-wide { grid-column: span 3; }
.g-item.g-tall { grid-row: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(112%) contrast(102%); transition: transform .35s ease; }
.g-item:hover img { transform: scale(1.04); }
.g-item figcaption { position: absolute; left: 10px; bottom: 10px; background: rgba(3,26,42,.6); color: #eaffff; padding: 6px 10px; border-radius: 999px; font-size: 12px; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.2); }

/* Boats */
.boats { background: #f9feff; color: var(--text); padding: 28px 0; }
.boats h2 { margin: 0 0 8px; font-size: 22px; }
.boats .sub { margin: 0 0 14px; color: #5a7481; }
.boat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.boat { background: #ffffff; border: 1px solid #edf6f9; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 16px rgba(0,0,0,.06); display: grid; grid-template-rows: auto 1fr; }
.boat-media img { width: 100%; height: 180px; object-fit: cover; display: block; }
.boat-body { padding: 12px; }
.boat h3 { margin: 0 0 4px; font-size: 16px; }
.boat-meta { margin: 0 0 4px; color: #5a7481; font-size: 13px; }
.boat-price { margin: 0 0 8px; font-weight: 800; color: #073047; }
.boat-cta { display: flex; gap: 8px; flex-wrap: wrap; }
@media (max-width: 980px) { .boat-grid { grid-template-columns: 1fr; } }

/* Desktop rectangular mosaic layout */
@media (min-width: 1024px) {
  .grid-gallery {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: 6px;
  }
  .grid-gallery > .g-item { grid-column: auto; grid-row: auto; }
  /* Tall left, then a balanced 6+3 on top and 3+3+3 on bottom */
  .grid-gallery > .g-item:nth-child(1) { grid-column: 1 / span 3; grid-row: 1 / span 2; }
  .grid-gallery > .g-item:nth-child(2) { grid-column: 4 / span 6; grid-row: 1; }
  .grid-gallery > .g-item:nth-child(3) { grid-column: 10 / span 3; grid-row: 1; }
  .grid-gallery > .g-item:nth-child(4) { grid-column: 4 / span 3; grid-row: 2; }
  .grid-gallery > .g-item:nth-child(5) { grid-column: 7 / span 3; grid-row: 2; }
  .grid-gallery > .g-item:nth-child(6) { grid-column: 10 / span 3; grid-row: 2; }
}

/* How it works */
.how { padding: 36px 0 20px; background: #f9feff; color: var(--text); }
.how h2 { margin: 0 0 14px; font-size: 22px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { background: #ffffff; border: 1px solid #edf6f9; border-radius: 14px; padding: 16px; box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
.step-icon { font-size: 20px; }
.step h3 { margin: 8px 0 4px; font-size: 16px; }
.step p { margin: 0; color: #5a7481; font-size: 14px; }

/* Trust */
.trust { padding: 32px 0; color: #e7fbff; }
.trust-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trust-card { background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05)); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; padding: 16px; box-shadow: 0 10px 20px rgba(0,0,0,0.12); }
.trust-card h3 { margin: 6px 0 6px; color: #ffffff; }
.trust-card p { margin: 0; color: #d7faff; }
.tc-icon { font-size: 22px; }

/* FAQ */
.faq { padding: 36px 0 48px; background: #f9feff; }
.faq h2 { margin: 0 0 14px; font-size: 22px; }
.faqs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.faqs details { background: #ffffff; border: 1px solid #edf6f9; border-radius: 12px; padding: 12px 14px; box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
.faqs summary { cursor: pointer; font-weight: 700; color: #103a4d; }
.faqs p { margin: 8px 0 0; color: #5a7481; }

/* Bottom CTA */
.cta-final { background: #f9feff; padding: 24px 0 40px; }

/* Footer */
.site-footer { color: #cfefff; background: linear-gradient(180deg, #05314e, #031a2a); border-top: 1px solid rgba(255,255,255,0.1); }
.footer-inner { padding: 20px 0 28px; text-align: center; }
.footer-brand { color: #e7fbff; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footer-logo { display: none; height: 48px; width: auto; }
.footer-brand.has-logo .footer-logo { display: block; }
.footer-brand.has-logo .brand-mark { display: none; }
.foot-copy { margin: 0 0 6px; color: #c5f3ff; }
.foot-legal { margin: 0; color: #a8e9fb; font-size: 12px; opacity: .9; }

/* Sticky mobile CTA */


/* Background flourishes */
.bg-waves { position: fixed; inset: 0; z-index: -1; background:
  radial-gradient(1000px 600px at -10% 110%, rgba(14,197,218,0.25), transparent 60%),
  radial-gradient(800px 600px at 110% -10%, rgba(14,197,218,0.2), transparent 60%),
  radial-gradient(700px 400px at 50% -20%, rgba(255,209,102,0.15), transparent 60%);
}

.bubbles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  mask-image: linear-gradient(to bottom, black 60%, transparent);
}
.bubbles::before, .bubbles::after {
  content: ""; position: absolute; inset: 0; background-repeat: repeat; opacity: .25; animation: float 18s linear infinite;
}
.bubbles::before {
  background-image: radial-gradient(circle at 20% 120%, rgba(255,255,255,0.12) 0 2px, transparent 2px);
  background-size: 150px 150px;
}
.bubbles::after {
  background-image: radial-gradient(circle at 60% 130%, rgba(255,255,255,0.12) 0 2px, transparent 2px);
  background-size: 180px 180px; animation-duration: 24s;
}
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-40px); } }

/* Floating chat bubble */
.fab-wrap { position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0)); z-index: 999; }
.fab { position: relative; width: 62px; height: 62px; border-radius: 999px; border: 0; cursor: pointer; display: grid; place-items: center;
  background: radial-gradient(60% 60% at 30% 20%, #fff9c7, #ffd166 60%),
              radial-gradient(60% 60% at 70% 80%, rgba(14,197,218,.45), rgba(14,197,218,.2));
  box-shadow: 0 12px 24px rgba(3,26,42,.35), 0 0 0 6px rgba(14,197,218,0.12);
  color: #042330; font-size: 24px; transition: transform .18s ease, box-shadow .18s ease; }
.fab:hover { transform: translateY(-2px); box-shadow: 0 16px 28px rgba(3,26,42,.45), 0 0 0 8px rgba(14,197,218,0.16); }
.fab:focus-visible { outline: 3px solid #9be9f3; outline-offset: 3px; }
.fab::after { content: ""; position: absolute; inset: 0; border-radius: 999px; box-shadow: 0 0 0 0 rgba(14,197,218,.45); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(14,197,218,.45);} 70%{ box-shadow: 0 0 0 18px rgba(14,197,218,0);} 100%{ box-shadow: 0 0 0 0 rgba(14,197,218,0);} }

.fab-menu { position: absolute; right: 0; bottom: 76px; display: grid; gap: 8px; padding-bottom: 6px;
  transform-origin: 85% 100%; transform: translateY(8px) scale(.96); opacity: 0; pointer-events: none;
}
.fab-wrap.open .fab-menu { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; transition: transform .18s ease, opacity .18s ease; }

.fab-item { display: inline-flex; align-items: center; justify-content: center; min-width: 130px; height: 42px; padding: 0 14px;
  border-radius: 999px; text-decoration: none; font-weight: 800; font-size: 14px; letter-spacing: .2px;
  color: #042330; box-shadow: 0 8px 16px rgba(3,26,42,.18), inset 0 1px 0 rgba(255,255,255,.8); border: 1px solid rgba(0,0,0,.03);
}
.fab-wa { background: linear-gradient(135deg, #e9fff3, #c7ffdf); }
.fab-sms { background: linear-gradient(135deg, #e6f9ff, #c6efff); }
.fab-call { background: linear-gradient(135deg, #fff1ef, #ffd6cf); }
.fab-item.is-disabled { opacity: .5; pointer-events: none; }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .request-form { grid-template-columns: 1fr; }
  .report-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .faqs { grid-template-columns: 1fr; }
  .grid-gallery { grid-template-columns: 1fr 1fr; }
  .g-item.g-wide { grid-column: span 2; }
}
