/* ============================================================
   EcoFun Adventures — Rocky Point Boat Tours
   Style guide palette + typography (Satisfy / Montserrat / DM Sans)
   ============================================================ */

:root {
  --navy: #0D2B4D;
  --teal: #00A6B7;
  --aqua: #2EC4CE;
  --orange: #FF7A3D;
  --sunshine: #FFC857;
  --sky: #E6F6FB;
  --sand: #F2F4F7;
  --white: #FFFFFF;
  --text: #2B3A4A;
  --shadow: 0 10px 30px rgba(13, 43, 77, 0.12);
  --radius: 14px;
  --font-script: 'Satisfy', cursive;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: var(--teal); text-decoration: none; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; }

.script { font-family: var(--font-script); color: var(--teal); font-size: 1.6rem; font-weight: 400; }

.section-head { text-align: center; margin-bottom: 2.6rem; }
.section-head .script { display: block; margin-bottom: .2rem; }
.section-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: .14em;
}
.section-head p { max-width: 640px; margin: .8rem auto 0; color: #5a6b7d; }

section { padding: 4.5rem 0; }
.bg-sand { background: var(--sand); }
.bg-sky { background: var(--sky); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .85rem 1.7rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: #ff6a24; }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: #0095a5; }
.btn-outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1fb857; }
.btn-sm { padding: .55rem 1.15rem; font-size: .75rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: var(--sky);
  font-size: .8rem;
  padding: .4rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: var(--sunshine); font-weight: 500; }
.topbar .tb-group { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 14px rgba(13, 43, 77, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem 0;
  gap: 1rem;
}
.nav-logo img { height: 62px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--navy);
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); border-color: var(--aqua); }
.nav-links .btn { border-bottom: none; color: var(--white); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero slider ---------- */
.hero {
  position: relative;
  height: min(78vh, 680px);
  min-height: 540px;
  overflow: hidden;
  padding: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .9s ease;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13,43,77,.82) 0%, rgba(13,43,77,.55) 45%, rgba(13,43,77,.18) 100%);
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 3rem;
  align-items: center;
  width: min(1180px, 92%);
  margin: 0 auto;
}
.hero-text { color: var(--white); }
.hero-text .script { color: var(--sunshine); font-size: 1.9rem; }
.hero-text h1, .hero-text h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: .3rem 0 .9rem;
}
.hero-text p { max-width: 480px; font-size: 1.05rem; color: var(--sky); margin-bottom: 1.6rem; }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; }

/* Tour card floating on hero */
.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(13, 43, 77, .35);
  max-width: 380px;
  justify-self: end;
}
.hero-card img { height: 190px; width: 100%; object-fit: cover; }
.hero-card-body { padding: 1.1rem 1.3rem 1.3rem; }
.hero-card-body h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; }
.hero-card-meta {
  display: flex;
  gap: 1rem;
  font-size: .8rem;
  color: #5a6b7d;
  margin: .45rem 0 .7rem;
  flex-wrap: wrap;
}
.hero-card-meta strong { color: var(--orange); font-size: .95rem; }
.hero-card-actions { display: flex; gap: .6rem; }

/* Slider controls */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.55);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background .15s ease;
  display: grid;
  place-items: center;
}
.hero-arrow:hover { background: var(--teal); border-color: var(--teal); }
.hero-arrow.prev { left: 1.2rem; }
.hero-arrow.next { right: 1.2rem; }
.hero-dots {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: .55rem;
}
.hero-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.hero-dots button.active { background: var(--sunshine); transform: scale(1.25); }

/* ---------- Tour cards grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.6rem;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(13,43,77,.18); }
.tour-card-img { position: relative; }
.tour-card-img img { height: 200px; width: 100%; object-fit: cover; }
.tour-badge {
  position: absolute;
  top: .9rem;
  left: .9rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem .75rem;
  border-radius: 50px;
}
.tour-badge.teal { background: var(--teal); }
.tour-card-body { padding: 1.25rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.tour-card-body h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .45rem; }
.tour-card-body p { font-size: .9rem; color: #5a6b7d; flex: 1; }
.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: .9rem 0 1rem;
  font-size: .8rem;
  color: #5a6b7d;
}
.tour-meta .price { font-family: var(--font-head); font-weight: 800; color: var(--orange); font-size: 1.15rem; }
.tour-meta .price span { font-size: .7rem; font-weight: 600; color: #5a6b7d; display: block; }
.tour-card-actions { display: flex; gap: .6rem; }
.tour-card-actions .btn { flex: 1; }

/* ---------- Why choose us ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--aqua);
}
.feature:nth-child(even) { border-bottom-color: var(--orange); }
.feature-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--sky);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
}
.feature h3 { font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.feature p { font-size: .88rem; color: #5a6b7d; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.about-img img { height: 100%; object-fit: cover; }
.about-content .script { font-size: 1.7rem; }
.about-content h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); text-transform: uppercase; letter-spacing: .1em; margin: .2rem 0 1rem; }
.about-content p { color: #5a6b7d; margin-bottom: 1rem; }
.about-stats { display: flex; gap: 2.2rem; margin: 1.5rem 0; flex-wrap: wrap; }
.stat h3 { font-size: 1.9rem; color: var(--teal); }
.stat span { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: #5a6b7d; font-family: var(--font-head); font-weight: 600; }

/* ---------- Boats ---------- */
.boats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
}
.boat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 45% 55%;
}
.boat-card img { height: 100%; min-height: 230px; object-fit: cover; }
.boat-card-body { padding: 1.5rem 1.5rem 1.6rem; }
.boat-card-body h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .05em; }
.boat-card-body .boat-type { font-family: var(--font-script); color: var(--teal); font-size: 1.15rem; display: block; margin-bottom: .55rem; }
.boat-card-body p { font-size: .88rem; color: #5a6b7d; margin-bottom: .8rem; }
.boat-specs { list-style: none; font-size: .84rem; color: var(--navy); }
.boat-specs li { padding: .28rem 0; border-bottom: 1px dashed #dde5ec; }
.boat-specs li:last-child { border-bottom: none; }
.boat-specs strong { font-family: var(--font-head); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--teal); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(115deg, var(--navy) 30%, #14486e 100%);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  padding: 3.2rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(46, 196, 206, .15);
}
.cta-banner .script { color: var(--sunshine); font-size: 1.8rem; }
.cta-banner h2 { color: var(--white); text-transform: uppercase; letter-spacing: .1em; font-size: clamp(1.4rem, 3vw, 2rem); margin: .3rem 0 1.4rem; }
.cta-banner .hero-cta { justify-content: center; }

/* ---------- Under construction banner (reusable) ---------- */
.construction-banner {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  background: linear-gradient(115deg, var(--navy) 30%, #14486e 100%);
  border-radius: var(--radius);
  padding: 1.8rem 2.2rem;
  color: var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 2.2rem;
}
.construction-banner .script { color: var(--sunshine); font-size: 1.5rem; }
.construction-banner h2 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  margin: .15rem 0 .55rem;
}
.construction-banner p { color: var(--sky); font-size: .95rem; margin-bottom: .9rem; max-width: 560px; }
.construction-banner .hero-cta { gap: .7rem; }
@media (max-width: 640px) {
  .construction-banner { flex-direction: column; text-align: center; padding: 1.6rem 1.4rem; }
  .construction-banner .hero-cta { justify-content: center; }
}

/* ---------- Language switch (visual only, pending i18n) ---------- */
.lang-switch {
  display: inline-flex;
  gap: .3rem;
  align-items: center;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
  padding: .16rem;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: .34rem;
  background: transparent;
  border: 1px solid transparent;
  color: var(--sky);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .64rem;
  letter-spacing: .06em;
  padding: .16rem .55rem .16rem .2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
  opacity: .75;
}
.lang-btn svg {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .45);
  display: block;
}
.lang-btn.active {
  background: var(--teal);
  color: var(--white);
  opacity: 1;
  box-shadow: 0 2px 8px rgba(0, 166, 183, .45);
}
.lang-btn:hover:not(.active) { opacity: 1; border-color: rgba(255, 255, 255, .35); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 5.5rem 0 4.5rem;
  color: var(--white);
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,43,77,.78), rgba(13,43,77,.6));
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); text-transform: uppercase; letter-spacing: .12em; font-size: clamp(1.7rem, 4vw, 2.6rem); }
.page-hero .script { color: var(--sunshine); }
.page-hero p { color: var(--sky); max-width: 620px; margin: .7rem auto 0; }

/* ---------- Tour detail ---------- */
.tour-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr .9fr;
  gap: 2.5rem;
  align-items: start;
}
.tour-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.tour-gallery img {
  border-radius: 10px;
  height: 130px;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform .15s ease;
}
.tour-gallery img:hover { transform: scale(1.04); }
.tour-gallery .main {
  grid-column: 1 / -1;
  height: 380px;
}
.tour-info h2 { font-size: 1.3rem; text-transform: uppercase; letter-spacing: .08em; margin: 2rem 0 .8rem; padding-bottom: .5rem; border-bottom: 3px solid var(--aqua); display: inline-block; }
.tour-info p { color: #5a6b7d; margin-bottom: .9rem; }
.check-list { list-style: none; }
.check-list li { padding: .4rem 0 .4rem 1.9rem; position: relative; color: #45586b; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .4rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--teal);
  font-weight: 700;
  font-size: .8rem;
  display: grid;
  place-items: center;
}

.booking-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.7rem 1.6rem;
  position: sticky;
  top: 100px;
  border-top: 5px solid var(--teal);
}
.booking-box .price { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--orange); }
.booking-box .price small { font-size: .85rem; color: #5a6b7d; font-weight: 600; }
.booking-box ul { list-style: none; margin: 1rem 0 1.3rem; font-size: .87rem; }
.booking-box ul li { display: flex; justify-content: space-between; padding: .45rem 0; border-bottom: 1px dashed #dde5ec; }
.booking-box ul li strong { color: var(--navy); font-family: var(--font-head); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.booking-box .btn { width: 100%; margin-bottom: .6rem; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
}
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .75rem .9rem;
  border: 1.5px solid #d6e0e8;
  border-radius: 9px;
  background: var(--sand);
  color: var(--text);
  transition: border-color .15s ease, background .15s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
.radio-row { display: flex; gap: 1.4rem; flex-wrap: wrap; padding: .4rem 0; }
.radio-row label { display: flex; align-items: center; gap: .45rem; font-size: .9rem; color: var(--text); font-family: var(--font-body); font-weight: 500; text-transform: none; letter-spacing: 0; cursor: pointer; }
.radio-row input { accent-color: var(--teal); width: 17px; height: 17px; }
.form-note { font-size: .8rem; color: #7b8a99; margin-top: .8rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2.5rem; align-items: start; }
.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px dashed #dde5ec;
  align-items: flex-start;
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: var(--sky);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.contact-item h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .15rem; }
.contact-item p, .contact-item a { font-size: .92rem; color: #5a6b7d; }
.contact-item a:hover { color: var(--teal); }
.map-frame {
  border: none;
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 2.5rem; }
.maps-grid h3 { text-align: center; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: .9rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  text-align: left;
}
.faq-q .faq-arrow {
  color: var(--teal);
  transition: transform .2s ease;
  font-size: 1.1rem;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p { padding: 0 1.4rem 1.2rem; color: #5a6b7d; font-size: .93rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #b8c9da;
  padding: 3.5rem 0 0;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 2.4rem;
  padding-bottom: 2.5rem;
}
.footer-grid h3 {
  color: var(--white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; }
.footer-grid ul li { padding: .28rem 0; }
.footer-grid a { color: #b8c9da; transition: color .15s ease; }
.footer-grid a:hover { color: var(--aqua); }
.footer-logo img { width: 150px; margin-bottom: 1rem; }
.footer-tagline { font-family: var(--font-script); color: var(--sunshine); font-size: 1.25rem; }
.footer-social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: background .15s ease;
}
.footer-social a:hover { background: var(--teal); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.1rem 0;
  text-align: center;
  font-size: .78rem;
  color: #7d93a9;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .hero { height: auto; min-height: 0; padding: 4.5rem 0 4rem; }
  .hero-card { justify-self: start; max-width: 420px; }
  .about-grid, .contact-grid, .maps-grid { grid-template-columns: 1fr; }
  .tour-detail-grid { grid-template-columns: 1fr; }
  .booking-box { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .boat-card { grid-template-columns: 1fr; }
  .boat-card img { min-height: 200px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    box-shadow: 0 14px 24px rgba(13,43,77,.12);
    padding: .6rem 1.4rem 1.2rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .7rem 0; }
  .nav-links .btn { margin-top: .6rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-arrow { display: none; }
  .tour-gallery { grid-template-columns: repeat(2, 1fr); }
  .tour-gallery .main { height: 240px; }
  .topbar .tb-group.right { display: none; }
}
