/* =====================================================================
   Everglades Boat Tours — Main Stylesheet
   Modeled on Triton Charters design language.
   Brand palette consistent with evergladesareatours.com network.
   ===================================================================== */

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

:root {
  --navy: #081a33;
  --navy-mid: #163354;
  --navy-light: #1e4a7a;
  --teal: #0e8fa0;
  --teal-light: #12b0c5;
  --orange: #e8720c;
  --orange-light: #f4892a;
  --white: #ffffff;
  --bg-tint: #C8DDEC;   /* light muted navy/teal background (replaces white on sections/cards) */
  --off-white: #DAE7F0;
  --gray-light: #edf1f5;
  --gray-text: #2d3f4a;
  --dark-text: #111f2e;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark-text); background: var(--bg-tint); overflow-x: hidden; font-size: 17px; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.container { width: 95%; max-width: 1200px; margin: 0 auto; padding: 0 2.5%; }

/* ── TOPBAR ── */
.topbar { background: var(--navy); padding: 0.4rem 2rem; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-head); font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.85); flex-wrap: wrap; gap: 0.4rem; }
.topbar a { color: rgba(255,255,255,0.85); transition: color 0.2s; display: flex; align-items: center; gap: 0.35rem; }
.topbar a:hover { color: var(--teal-light); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.topbar-sep { color: rgba(255,255,255,0.2); }
@media (max-width: 600px) { .topbar-text { display: none; } .topbar { padding: 0.4rem 1rem; } .topbar-left, .topbar-right { gap: 0.9rem; } }

/* ── NAV ── */
nav { background: var(--bg-tint); padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 70px; box-shadow: 0 2px 16px rgba(13,34,64,0.1); position: sticky; top: 0; z-index: 100; flex-wrap: wrap; gap: 0.5rem; }
.nav-logo { display: flex; align-items: center; height: 70px; gap: 0.65rem; }
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-main { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--navy); }
.nav-logo-sub { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }
.nav-links { display: flex; align-items: center; list-style: none; flex-wrap: wrap; }
.nav-links a { display: block; padding: 0 0.75rem; height: 70px; line-height: 70px; font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--navy); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--teal); }
.nav-links li.nav-book a { background: var(--orange); color: var(--white); padding: 0 1.25rem; margin-left: 0.4rem; }
.nav-links li.nav-book a:hover { background: var(--orange-light); }

/* ── BUTTONS ── */
.btn-primary { background: var(--orange); color: var(--white); font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem 1.75rem; display: inline-block; transition: background 0.2s; cursor: pointer; border: none; }
.btn-primary:hover { background: var(--orange-light); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem 1.75rem; border: 2px solid rgba(255,255,255,0.55); display: inline-block; transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }
.btn-navy { background: var(--navy); color: var(--white); font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.75rem 1.6rem; display: inline-block; transition: background 0.2s; }
.btn-navy:hover { background: var(--navy-light); }
.btn-teal { background: var(--teal); color: var(--white); font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 0.75rem 1.6rem; display: inline-block; transition: background 0.2s; }
.btn-teal:hover { background: var(--teal-light); }
.btn-white { background: var(--white); color: var(--teal); font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.85rem 1.75rem; display: inline-block; transition: all 0.2s; }
.btn-white:hover { background: var(--navy); color: var(--white); }

/* ── HERO ── */
.hero { position: relative; height: 88vh; min-height: 520px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../images/roseate-spoonbills-flying.jpg') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,34,64,0.85) 0%, rgba(13,34,64,0.6) 50%, rgba(13,34,64,0.25) 100%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 5%; max-width: 680px; }
.hero-tag { display: inline-block; background: var(--teal); color: var(--white); font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0.9rem; margin-bottom: 1.1rem; }
.hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; color: var(--white); line-height: 1.12; margin-bottom: 1rem; letter-spacing: -0.02em; }
.hero h1 span { color: var(--teal-light); }
.hero-sub { font-family: var(--font-head); font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.85); margin-bottom: 1.1rem; font-weight: 400; }
.hero p { font-size: 1.1rem; font-weight: 400; color: rgba(255,255,255,0.9); line-height: 1.75; margin-bottom: 1.75rem; max-width: 520px; }
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 4rem 5% 3.5rem; color: var(--white); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('../images/pelican-mangrove-tree.jpg') center/cover; opacity: 0.18; }
.page-hero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.page-hero-tag { display: inline-block; background: var(--teal); color: var(--white); font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.85rem; margin-bottom: 1rem; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 0.9rem; letter-spacing: -0.02em; }
.page-hero p { font-size: 1.08rem; color: rgba(255,255,255,0.88); line-height: 1.7; max-width: 700px; margin-bottom: 1.5rem; }
.page-hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--teal); padding: 1.1rem 5%; display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.85rem; }
.trust-stars { display: flex; gap: 3px; }
.trust-star { width: 22px; height: 22px; background: #ffe066; clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.trust-text { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--white); }
.trust-text span { font-weight: 400; opacity: 0.9; font-size: 0.95em; }
.trust-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.25); }
.trust-book { font-family: var(--font-head); font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: var(--white); color: var(--teal); padding: 0.5rem 1.25rem; transition: all 0.2s; white-space: nowrap; }
.trust-book:hover { background: var(--navy); color: var(--white); }

/* ── SECTIONS SHARED ── */
.section-label { font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 0.5rem; }
.section-h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: var(--navy); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 0.9rem; }
.section-p { font-size: 1.05rem; font-weight: 400; color: var(--gray-text); line-height: 1.8; margin-bottom: 1.25rem; }

/* ── INTRO ── */
.intro-section { padding: 4rem 0; background: var(--bg-tint); }
.intro-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.intro-text .mission { font-size: 1.05rem; font-style: italic; color: var(--navy); font-weight: 400; line-height: 1.7; border-left: 3px solid var(--teal); padding-left: 1.25rem; margin-bottom: 1.5rem; }
.intro-text p { font-size: 1.05rem; color: var(--gray-text); line-height: 1.85; font-weight: 400; margin-bottom: 1rem; }
.intro-text p strong { color: var(--navy); font-weight: 600; }
.intro-img { position: relative; }
.intro-img img { width: 100%; height: 420px; object-fit: cover; }
.intro-badge { position: absolute; bottom: -1rem; left: -1rem; background: var(--navy); color: var(--white); padding: 1.25rem 1.5rem; }
.intro-badge-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--teal-light); line-height: 1; }
.intro-badge-label { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-top: 0.2rem; }

/* ── TOURS GRID ── */
.tours-section { padding: 4rem 0; background: var(--off-white); }
.tours-header { text-align: center; margin-bottom: 2.5rem; }
.tours-header .section-p { max-width: 620px; margin: 0 auto 0; }
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.tour-card { background: var(--white); overflow: hidden; box-shadow: 0 2px 12px rgba(13,34,64,0.07); transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(13,34,64,0.13); }
.tour-card-img { width: 100%; height: 200px; object-fit: cover; }
.tour-card-body { padding: 1.25rem 1.25rem 1rem; flex: 1; display: flex; flex-direction: column; }
.tour-tag { display: inline-block; font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.55rem; margin-bottom: 0.6rem; background: var(--teal); color: var(--white); }
.tour-tag.hot { background: var(--orange); }
.tour-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 0.4rem; }
.tour-card p { font-size: 1rem; color: var(--gray-text); line-height: 1.7; font-weight: 400; flex: 1; margin-bottom: 1rem; }
.tour-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 1px solid var(--gray-light); }
.tour-price { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.tour-price span { font-weight: 400; font-size: 0.85rem; color: var(--gray-text); }
.tour-link { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: var(--orange); letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
.tour-link:hover { color: var(--navy); }

/* MIBT-style reviews strip */
.reviews-strip { background: var(--bg-tint); border-bottom: 1px solid var(--gray-light); padding: 56px 0; }
.reviews-strip .container { display: flex; align-items: stretch; gap: 24px; flex-wrap: wrap; }
.review-excellent-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 32px; background: var(--white); border: 1px solid var(--gray-light); border-radius: 8px; flex-shrink: 0; }
.review-excellent-badge .badge-label { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: 6px; }
.review-excellent-badge .badge-stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; margin-bottom: 6px; }
.review-excellent-badge .badge-score { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.review-excellent-badge .badge-count { font-size: 12px; color: var(--gray-text); margin-bottom: 2px; }
.review-excellent-badge .badge-source { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); }
.review-cards-scroll { display: flex; gap: 18px; flex: 1; padding-bottom: 0; -webkit-overflow-scrolling: touch; }
.review-cards-scroll::-webkit-scrollbar { height: 8px; }
.review-cards-scroll::-webkit-scrollbar-track { background: transparent; }
.review-cards-scroll::-webkit-scrollbar-thumb { background: rgba(14,143,160,0.4); border-radius: 4px; }
.review-card-item { background: var(--white); border: 1px solid var(--gray-light); border-radius: 8px; padding: 24px 28px; flex: 1 1 0; min-width: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.review-card-item .rc-name { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.review-card-item .rc-stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.review-card-item .rc-text { font-size: 14px; color: var(--gray-text); line-height: 1.65; }
@media (max-width: 768px) {
  .reviews-strip .container { flex-direction: column; }
  .review-cards-scroll { flex-direction: column; overflow-x: visible; scroll-snap-type: none; }
  .review-card-item { min-width: 100%; padding: 20px; scroll-snap-align: none; }
  .review-excellent-badge { padding: 20px; }
}
/* EK-style Book Now / Learn More card buttons */
.tour-card-btns { display: flex; gap: 8px; padding: 0 1.25rem 1.25rem; }
.tour-card-btns .btn-card { flex: 1; display: inline-block; padding: 9px 12px; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; border-radius: 30px; border: 2px solid transparent; transition: all 0.25s ease; text-align: center; }
.tour-card-btns .btn-book { background: var(--orange); color: var(--white); border-color: var(--orange); }
.tour-card-btns .btn-book:hover { background: var(--orange-light); border-color: var(--orange-light); transform: translateY(-1px); }
.tour-card-btns .btn-learn { background: transparent; color: var(--navy); border-color: var(--navy); }
.tour-card-btns .btn-learn:hover { background: var(--navy); color: var(--white); }

/* ── NO AIRBOATS DIFFERENTIATOR ── */
.airboats-section { padding: 4rem 0; background: var(--bg-tint); }
.airboats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.airboats-text .mission { font-size: 1.05rem; font-style: italic; color: var(--navy); font-weight: 500; line-height: 1.7; border-left: 3px solid var(--orange); padding-left: 1.25rem; margin-bottom: 1.5rem; }
.airboats-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.airboats-list-item { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 1rem; color: var(--gray-text); line-height: 1.6; }
.airboats-list-icon { width: 22px; height: 22px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.airboats-list-icon svg { width: 12px; height: 12px; stroke: white; fill: none; stroke-width: 3; }
.airboats-img img { width: 100%; height: 460px; object-fit: cover; }

/* ── TESTIMONIALS ── */
.testi-section { padding: 4rem 0; background: var(--navy); }
.testi-header { text-align: center; margin-bottom: 2.5rem; }
.testi-header .section-label { color: var(--teal-light); }
.testi-header .section-h2 { color: var(--white); }
.testi-header .section-p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testi-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 2.25rem; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 0.9rem; }
.testi-star { width: 18px; height: 18px; background: var(--orange); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.testi-tour { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 0.75rem; }
.testi-text { font-size: 1.15rem; color: rgba(255,255,255,0.92); line-height: 1.75; font-style: italic; margin-bottom: 1.25rem; font-weight: 400; }
.testi-bar { width: 28px; height: 2px; background: var(--teal); margin-bottom: 0.75rem; }
.testi-name { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; color: var(--white); }
.testi-meta { font-size: 0.88rem; color: rgba(255,255,255,0.45); margin-top: 0.15rem; }

/* ── ABOUT / GUIDES ── */
.about-section { padding: 4rem 0; background: var(--bg-tint); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-img img { width: 100%; height: 460px; object-fit: cover; }
.about-text p { font-size: 1.02rem; color: var(--gray-text); line-height: 1.85; font-weight: 400; margin-bottom: 1rem; }
.about-text p strong { color: var(--navy); font-weight: 600; }
.credentials { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.cred-item { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 1rem; color: var(--gray-text); line-height: 1.5; }
.cred-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.guide-cards { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.guide-card { background: var(--off-white); padding: 1.1rem 1.25rem; border-left: 3px solid var(--teal); }
.guide-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.guide-desc { font-size: 1rem; color: var(--gray-text); line-height: 1.65; font-weight: 400; }

/* ── WHY US ── */
.why-section { padding: 4rem 0; background: var(--off-white); }
.why-header { text-align: center; margin-bottom: 2.5rem; }
.why-header .section-p { max-width: 580px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.why-card { background: var(--white); padding: 2rem 1.75rem; box-shadow: 0 2px 10px rgba(13,34,64,0.06); transition: box-shadow 0.2s; }
.why-card:hover { box-shadow: 0 6px 24px rgba(13,34,64,0.12); }
.why-icon { width: 48px; height: 48px; background: rgba(14,143,160,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.why-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.why-card h4 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 0.45rem; }
.why-card p { font-size: 1rem; color: var(--gray-text); line-height: 1.7; font-weight: 400; }

/* ── TOUR DETAIL PAGE ── */
.tour-detail { padding: 3.5rem 0; background: var(--bg-tint); }
.tour-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; }
.tour-detail-main h2 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--navy); margin: 1.75rem 0 1rem; line-height: 1.25; }
.tour-detail-main h2:first-child { margin-top: 0; }
.tour-detail-main p { font-size: 1.05rem; color: var(--gray-text); line-height: 1.85; margin-bottom: 1rem; }
.tour-detail-main ul { margin: 0.75rem 0 1rem 1.25rem; }
.tour-detail-main ul li { font-size: 1.05rem; color: var(--gray-text); line-height: 1.85; margin-bottom: 0.4rem; }
.tour-sidebar { background: var(--off-white); padding: 1.75rem; border-top: 4px solid var(--teal); position: sticky; top: 90px; }
.tour-sidebar-label { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.4rem; }
.tour-sidebar h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; line-height: 1.3; }
.tour-fact { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid rgba(13,34,64,0.08); font-size: 0.95rem; }
.tour-fact:last-of-type { border-bottom: none; }
.tour-fact-label { font-family: var(--font-head); font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.tour-fact-val { color: var(--gray-text); text-align: right; }
.tour-sidebar-cta { margin-top: 1.25rem; }
.tour-sidebar-cta .btn-primary { width: 100%; text-align: center; padding: 1rem 1.25rem; font-size: 0.85rem; }
.tour-sidebar-note { margin-top: 0.75rem; font-size: 0.85rem; color: var(--gray-text); text-align: center; line-height: 1.5; }

/* ── TOUR HIGHLIGHTS ── */
.tour-highlights { padding: 3.5rem 0; background: var(--off-white); }
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.highlight-card { background: var(--white); padding: 1.75rem 1.25rem; text-align: center; box-shadow: 0 2px 10px rgba(13,34,64,0.06); }
.highlight-icon { width: 52px; height: 52px; background: rgba(14,143,160,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.9rem; color: var(--teal); font-size: 1.4rem; font-weight: 800; font-family: var(--font-head); }
.highlight-card h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.highlight-card p { font-size: 0.95rem; color: var(--gray-text); line-height: 1.6; }

/* ── PHOTO GRID ── */
.photo-grid-section { padding: 3.5rem 0; background: var(--bg-tint); }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 2rem; }
.photo-grid-item { aspect-ratio: 1; overflow: hidden; }
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.photo-grid-item:hover img { transform: scale(1.05); }
.photo-grid-section h2 { text-align: center; }

/* ── RELATED TOURS ── */
.related-section { padding: 3.5rem 0; background: var(--off-white); }
.related-section h2 { text-align: center; margin-bottom: 2rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* ── FAQ ── */
.faq-section { padding: 4rem 0; background: var(--bg-tint); }
.faq-header { text-align: center; margin-bottom: 2rem; }
.faq-header .section-p { max-width: 580px; margin: 0 auto; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.25rem 0; font-family: var(--font-head); font-size: 1.02rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q:hover { color: var(--teal); }
.faq-q-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--teal); transition: transform 0.3s; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1.25rem; font-size: 1rem; color: var(--gray-text); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── CTA BANNER ── */
.cta-section { position: relative; overflow: hidden; padding: 4.5rem 5%; text-align: center; background: var(--teal); }
.cta-section::before { content: ''; position: absolute; inset: 0; background: url('../images/kayaks-shell-beach.jpg') center/cover; opacity: 0.18; }
.cta-inner { position: relative; z-index: 1; }
.cta-section .section-label { color: rgba(255,255,255,0.8); }
.cta-section h2 { font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 0.9rem; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.08rem; line-height: 1.8; max-width: 580px; margin: 0 auto 2rem; font-weight: 400; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-section { padding: 4rem 0; background: var(--off-white); }
.contact-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; }
.contact-cards { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-card { background: var(--white); padding: 1rem 1.25rem; display: flex; align-items: flex-start; gap: 0.9rem; box-shadow: 0 1px 6px rgba(13,34,64,0.06); }
.contact-card-icon { width: 38px; height: 38px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-icon svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 1.8; }
.contact-label { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.2rem; }
.contact-val { font-size: 1rem; color: var(--dark-text); line-height: 1.5; }
.contact-val a { color: var(--dark-text); }
.contact-btns { margin-top: 1.25rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.map-box { background: var(--navy); height: 340px; position: relative; overflow: hidden; }
.map-box img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.map-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
.map-pin { width: 18px; height: 18px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 7px rgba(232,114,12,0.28); }
.map-text { background: rgba(13,34,64,0.88); color: white; font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; padding: 0.55rem 1.1rem; text-align: center; line-height: 1.4; }

/* ── CERTIFICATIONS ── */
.certs-section { padding: 2.5rem 5%; background: var(--bg-tint); border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); }
.certs-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0; }
.cert-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 2rem; border-right: 1px solid var(--gray-light); }
.cert-item:last-child { border-right: none; }
.cert-item svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; stroke-width: 1.3; flex-shrink: 0; }
.cert-label { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gray-text); line-height: 1.35; max-width: 100px; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 3.5rem 5% 2rem; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand-name { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 0.15rem; }
.footer-brand-sub { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.9rem; }
.footer-desc { font-size: 1rem; color: rgba(255,255,255,0.48); line-height: 1.75; font-weight: 400; max-width: 270px; }
.footer-col h5 { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col a { font-size: 1rem; color: rgba(255,255,255,0.92); font-weight: 400; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.28); font-weight: 400; }
.footer-bottom a { color: rgba(255,255,255,0.28); }
.footer-bottom a:hover { color: rgba(255,255,255,0.85); }

/* ── HAMBURGER MENU ── */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 200; flex-shrink: 0; }
.hamburger span { display: block; width: 100%; height: 3px; background: var(--navy); border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 150; flex-direction: column; padding: 100px 2rem 2rem; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu ul li a { display: block; padding: 1.1rem 0; font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.02em; transition: color 0.2s; }
.mobile-menu ul li a:hover { color: var(--teal-light); }
.mobile-menu-book { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-menu-book a { display: block; text-align: center; font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 1rem; }
.mobile-menu-book .btn-book-mobile { background: var(--orange); color: white; }
.mobile-menu-book .btn-gift-mobile { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.mobile-menu-contact { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-menu-contact a { color: rgba(255,255,255,0.6); font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .topbar { justify-content: center; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { height: auto; padding: 0.9rem 1.5rem; }
  .hero-content { padding: 0 5%; max-width: 100%; }
  .intro-inner, .airboats-inner, .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .intro-img img, .airboats-img img, .about-img img { height: 320px; }
  .intro-badge { left: 0; bottom: 0; }
  .tours-grid, .related-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .tour-detail-grid { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .certs-inner { gap: 0.5rem; }
  .cert-item { padding: 0.5rem 1rem; }
}
@media (max-width: 600px) {
  .trust-bar { gap: 1rem; padding: 0.9rem 5%; }
  .trust-sep { display: none; }
  .tours-grid, .related-grid, .why-grid, .highlights-grid, .photo-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.85rem; }
  .hero p { font-size: 1.02rem; }
  .page-hero { padding: 3rem 5% 2.5rem; }
}
