/* ============================================================
   BELIZEAN BLUE SAFARIS — REDESIGNED STYLESHEET
   Reference: Belizean Blue Safaris competitor design
   Palette:
     Navy Deep:  #0a4a6e
     Teal:       #1a9bae
     Teal Light: #5bc8e8
     Accent:     #1db8c8
     Text Dark:  #1a2e3a
     Text Mid:   #4a6070
     BG White:   #ffffff
     BG Light:   #f4f8fa
     BG Alt:     #eef5f8
   Fonts: Barlow Condensed (headings) | Inter (body)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy:         #0a4a6e;
  --navy-mid:     #0d6190;
  --teal:         #1a9bae;
  --teal-light:   #5bc8e8;
  --accent:       #1db8c8;
  --gold:         #F0AC1D;
  --text-dark:    #1a2e3a;
  --text-mid:     #4a6070;
  --text-light:   #7a9aaa;
  --bg-white:     #ffffff;
  --bg-light:     #f4f8fa;
  --bg-alt:       #eef5f8;
  --border:       rgba(0,0,0,.09);
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.18);
  --transition:   0.25s cubic-bezier(.4,0,.2,1);
  --footer-bg:    #0a2a40;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: .02em;
  line-height: 1.05;
  font-weight: 800;
}

/* ---------- Utility ---------- */
.container { width: min(1160px, 94%); margin-inline: auto; }
.section    { padding: 72px 0; }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }

/* Hero CTA button — teal filled */
.btn-hero {
  background: var(--teal);
  color: #fff;
  border: 2px solid var(--teal);
  box-shadow: 0 4px 18px rgba(26,155,174,.35);
  font-size: 1.05rem;
  padding: .8rem 2.2rem;
}
.btn-hero:hover {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 8px 28px rgba(10,74,110,.4);
}

/* Outline teal button */
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  font-size: 1rem;
  padding: .65rem 1.8rem;
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: #fff;
}

/* WhatsApp button */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-size: .9rem;
  padding: .6rem 1.4rem;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { background: #1ebe5a; box-shadow: 0 6px 20px rgba(37,211,102,.45); }

/* Send inquiry */
.btn-send {
  background: var(--teal);
  color: #fff;
  width: 100%;
  font-size: 1rem;
  padding: .85rem;
  border-radius: var(--radius-sm);
  letter-spacing: .12em;
}
.btn-send:hover { background: var(--navy); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg,
.logo-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-top {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .06em;
  color: var(--navy);
  text-transform: uppercase;
}
.logo-top em {
  font-style: normal;
  color: var(--teal);
}
.logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--text-mid);
  text-transform: uppercase;
  margin-top: 1px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .9rem 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu a:hover { background: var(--bg-light); color: var(--teal); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,25,45,.72) 0%,
    rgba(5,25,45,.55) 60%,
    rgba(5,25,45,.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 700px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero-badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* ============================================================
   HAPPENING NOW (PROMOTIONS CAROUSEL)
   ============================================================ */
.promo-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--navy);
}

.promo-track {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.promo-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  background: linear-gradient(
    to top,
    rgba(5, 25, 45, 0.90) 0%,
    rgba(5, 25, 45, 0.55) 55%,
    rgba(5, 25, 45, 0.10) 100%
  );
  color: #fff;
  z-index: 2;
}

.promo-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: .4rem;
}

.promo-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: .5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.promo-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(.875rem, 1.5vw, 1rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  max-width: 550px;
  line-height: 1.5;
}

.promo-cta {
  align-self: flex-start;
}

.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 74, 110, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.promo-arrow:hover {
  background: var(--navy);
  border-color: var(--teal-light);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(10, 74, 110, 0.5);
}

.promo-arrow:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 2px;
}

.promo-arrow--prev {
  left: 1.25rem;
}

.promo-arrow--next {
  right: 1.25rem;
}

.promo-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 5;
  align-items: center;
}

.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}

.promo-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.promo-dot.active {
  background: var(--teal-light);
  transform: scale(1.25);
  opacity: 1;
}

.promo-dot:focus-visible {
  outline: 2px solid var(--teal-light);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .promo-carousel {
    aspect-ratio: 16 / 11;
  }
  .promo-overlay {
    padding: 1.5rem;
  }
  .promo-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  .promo-arrow--prev {
    left: .75rem;
  }
  .promo-arrow--next {
    right: .75rem;
  }
  .promo-dots {
    bottom: 1rem;
  }
}

/* ============================================================
   SECTION TITLE (shared)
   ============================================================ */
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .5rem;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-intro {
  font-size: .92rem;
  color: var(--text-mid);
  margin-top: .6rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.section-footnote {
  margin-top: 1.5rem;
  font-size: .78rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  line-height: 1.6;
}

/* Colored underline accent for section titles */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--teal);
  margin: .5rem auto 0;
  border-radius: 2px;
}
.section-header:not(.text-center) .section-title::after {
  margin-left: 0;
}

/* ============================================================
   INLAND ADVENTURES
   ============================================================ */
#inland {
  background: var(--bg-white);
}

/* Inland Inclusions Bar */
.inland-inclusions-bar {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.4rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.inland-inclusions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.inland-inclusion-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.inland-inclusion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.inland-inclusion-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--teal);
}

@media (max-width: 768px) {
  .inland-inclusions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 0.5rem;
  }
  .inland-inclusion-item {
    font-size: 0.92rem;
    justify-content: flex-start;
  }
}

/* Cave Tubing Packing Checklist Callout */
.packing-callout {
  background: linear-gradient(135deg, rgba(26, 155, 174, 0.08) 0%, rgba(91, 200, 232, 0.12) 100%);
  border: 1.5px solid rgba(26, 155, 174, 0.35);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.packing-callout-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.packing-callout-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.packing-callout-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.packing-callout-items {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.packing-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(26, 155, 174, 0.25);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.packing-icon {
  font-size: 1.05rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .packing-callout {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
  }
  .packing-callout-items {
    gap: 0.6rem;
    width: 100%;
  }
  .packing-item {
    font-size: 0.82rem;
    padding: 4px 10px;
  }
}

/* Top 3 featured photo cards */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.featured-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--bg-white);
}
.featured-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.featured-img {
  height: 180px;
  overflow: hidden;
}
.featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.featured-card:hover .featured-img img { transform: scale(1.07); }

.featured-info {
  padding: .75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}

.featured-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  letter-spacing: .02em;
}

.featured-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}

/* List-style inland tours */
.inland-list {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.inland-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.4rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.inland-item:last-child { border-bottom: none; }
.inland-item:hover { background: var(--bg-light); }

.inland-item-left {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.inland-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.inland-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
}

.inland-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  letter-spacing: .01em;
}

.inland-desc {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 1px;
}

.inland-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  white-space: nowrap;
}

.inland-item--best-value {
  background: rgba(26,155,174,.04);
  border-left: 3px solid var(--teal);
}

.best-value-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26,155,174,.12);
  padding: .15rem .55rem;
  border-radius: 50px;
  margin-left: .4rem;
  vertical-align: middle;
}

/* ============================================================
   SEA & REEF EXPERIENCES
   ============================================================ */
#sea {
  background: var(--bg-light);
}

.sea-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.sea-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.sea-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.sea-card-img {
  height: 130px;
  overflow: hidden;
}
.sea-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.sea-card:hover .sea-card-img img { transform: scale(1.08); }

.sea-card-info {
  padding: .6rem .85rem .75rem;
}

.sea-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--text-dark);
  letter-spacing: .01em;
  line-height: 1.2;
  margin-bottom: 2px;
}

.sea-card-detail {
  font-size: .72rem;
  color: var(--text-light);
  margin-bottom: 3px;
  line-height: 1.4;
}

.sea-card-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}

.sea-card-price--quote {
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal);
  font-family: 'Inter', sans-serif;
}

.sea-card--charter {
  border: 2px solid var(--teal);
}

/* ============================================================
   PRIVATE BOAT SHUTTLE
   ============================================================ */
#shuttle {
  background: var(--bg-white);
}

.shuttle-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Routes */
.shuttle-routes {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}

.shuttle-route {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem 1.1rem;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.shuttle-route:hover { box-shadow: var(--shadow-sm); }

.route-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.route-dot--teal  { background: var(--teal); }
.route-dot--blue  { background: var(--navy-mid); }
.route-dot--navy  { background: var(--navy); }

.route-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  color: var(--text-dark);
}
.route-from { font-weight: 600; }
.route-arrow { color: var(--teal); font-size: .85rem; }
.route-to { color: var(--text-mid); }

.route-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--teal);
  white-space: nowrap;
}

/* Feature icons */
.shuttle-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 1.5rem;
}

.shuttle-feature {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
}
.sf-icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.sf-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
}

.shuttle-callout {
  background: rgba(26,155,174,.08);
  border: 1px solid rgba(26,155,174,.2);
  border-radius: var(--radius-sm);
  padding: .8rem 1.1rem;
  font-size: .85rem;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.5;
}
.shuttle-callout strong { color: var(--teal); }

.shuttle-supporting {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .2rem;
}

/* Boat image right */
.shuttle-boat-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 360px;
}
.shuttle-boat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .shuttle-boat-img {
    height: 260px;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--bg-light);
}

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

.about-title {
  text-align: left !important;
  margin-bottom: 1rem;
}
.about-title::after {
  margin-left: 0 !important;
}

.about-text p {
  color: var(--text-mid);
  font-size: .95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.about-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  font-size: .88rem;
  color: var(--text-dark);
}
.ab-icon {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
}
.ab-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal-light);
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 320px;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   INQUIRE & CONNECT
   ============================================================ */
#contact {
  background: var(--bg-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem .95rem;
  border: 1.5px solid #ccd5da;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aabbc5; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,155,174,.12);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Date picker wrapper */
.date-picker-wrap {
  position: relative;
}
.date-icon {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.date-input {
  padding-left: 2.4rem !important;
  cursor: pointer !important;
}
.date-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,155,174,.12);
}

/* Flatpickr theme overrides — match design.md palette */
.flatpickr-calendar {
  font-family: 'Inter', sans-serif;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
  background: var(--teal);
  border-color: var(--teal);
}
.flatpickr-day.inRange {
  background: rgba(26,155,174,.15);
  border-color: transparent;
  box-shadow: -5px 0 0 rgba(26,155,174,.15), 5px 0 0 rgba(26,155,174,.15);
}
.flatpickr-day.today {
  border-color: var(--teal);
}
.flatpickr-day.today:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-weekday {
  background: var(--navy);
  color: rgba(255,255,255,.9);
  fill: rgba(255,255,255,.9);
}
.flatpickr-current-month input.cur-year { color: #fff; }
.flatpickr-prev-month svg path,
.flatpickr-next-month svg path { fill: rgba(255,255,255,.8); }
.flatpickr-prev-month:hover svg path,
.flatpickr-next-month:hover svg path { fill: #fff; }



/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(26,155,174,.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,155,174,.2);
}
.form-success.show { display: block; }
.form-success .check {
  font-size: 2rem;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success p { color: var(--navy); font-weight: 600; }

/* Contact info */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contact-wa-block {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.wa-logo {
  width: 44px; height: 44px;
  background: rgba(37,211,102,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.wa-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.wa-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: .02em;
  margin-bottom: .5rem;
}

.contact-email-block {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
}
.email-label,
.fb-label,
.hours-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .3rem;
}
.email-link {
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  transition: color var(--transition);
  word-break: break-all;
}
.email-link:hover { color: var(--teal); }

.contact-facebook-block,
.contact-hours-block {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: .9rem 1.2rem;
  border: 1px solid var(--border);
}
.fb-link {
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  transition: color var(--transition);
}
.fb-link:hover { color: var(--teal); }
.hours-text {
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
}

.contact-small-print {
  font-size: .72rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--footer-bg);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.social-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: background var(--transition), color var(--transition);
}
.social-icon:hover {
  background: var(--teal);
  color: #fff;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37,211,102,.65);
}
/* Pulse ring */
.float-wa::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: ring-pulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes ring-pulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ============================================================
   ANIMATIONS (Intersection Observer driven)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sea-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .shuttle-layout,
  .about-inner,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .shuttle-boat-img { height: 260px; }
  .about-img { height: 240px; order: -1; }
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .featured-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .featured-grid .featured-card:last-child { display: none; }
  .sea-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .about-badges { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { justify-content: center; text-align: center; }
  .shuttle-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-grid .featured-card:last-child { display: block; }
  .sea-grid { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .sea-card-img { height: 105px; }
  .about-badges { grid-template-columns: 1fr; }
}
