/* ================================================
   eMotion Siargao — Design System
   Fonts: Outfit (headings) + DM Sans (body)
   ================================================ */

@font-face {
  font-family: 'Outfit';
  src: url('../uploads/fonts/outfit-v15-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../uploads/fonts/outfit-v15-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../uploads/fonts/outfit-v15-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../uploads/fonts/outfit-v15-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../uploads/fonts/outfit-v15-latin-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../uploads/fonts/dm-sans-v17-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../uploads/fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../uploads/fonts/dm-sans-v17-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../uploads/fonts/dm-sans-v17-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../uploads/fonts/dm-sans-v17-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---- Variables ---- */
:root {
  --teal:        #3E8E94;
  --dark:        #0D2B2E;
  --sand:        #F5F2EB;
  --pale-teal:   #C8E2E4;
  --reef:        #5B8C85;
  --orange:      #FF6B35;
  --orange-dark: #D45420;
  --whatsapp:    #25D366;
  --muted:       #4A5A58;
  --border:      #E0DBD0;
  --white:       #FFFFFF;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-pill: 100px;
  --shadow:      0 2px 16px rgba(13,43,46,.10);
  --shadow-md:   0 6px 32px rgba(13,43,46,.15);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--sand);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 700; }
h5 { font-size: 1rem; font-weight: 600; }
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--reef);
}
.eyebrow.light { color: var(--pale-teal); }
p { color: var(--muted); }
p + p { margin-top: 1em; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,53,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 6px 28px rgba(255,107,53,.45);
}

.btn-ghost-teal {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal);
}
.btn-ghost-teal:hover {
  background: var(--teal);
  color: #fff;
}

.btn-ghost-white {
  background: transparent;
  border-color: rgba(255,255,255,.7);
  color: #fff;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

.btn-whatsapp {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1DB954;
  border-color: #1DB954;
}

.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s, box-shadow .3s;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.nav-logo img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  margin: 0 auto;
  margin-left: 40px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.nav-secondary { color: rgba(255,255,255,.5); font-size: 0.85rem; }
.nav-cta { margin-left: auto; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 99;
  padding: 40px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-menu a.nav-secondary { font-size: 1rem; color: rgba(255,255,255,.6); font-weight: 400; }
.mobile-menu .btn-primary { margin-top: 24px; width: 100%; justify-content: center; font-size: 1.1rem; }

/* Sticky mobile booking bar */
.mobile-booking-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 98;
  background: var(--dark);
  padding: 10px 12px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.1);
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.mobile-booking-bar a { flex: 1; justify-content: center; min-width: 0; }

/* ---- Floating WhatsApp ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 97;
  background: var(--whatsapp);
  border-radius: 50%;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  position: relative;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 28px;
  background: var(--border);
}
.trust-item img { height: 28px; width: auto; opacity: 0.8; }
.trust-stars { color: #F4A81E; font-size: 0.9rem; letter-spacing: 0.05em; }
.trust-label { font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--dark); }
.trust-sublabel { font-size: 0.72rem; color: var(--muted); }
.trust-google-badge {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  transition: transform 8s ease-out;
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1.04); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,43,46,.80) 0%,
    rgba(13,43,46,.55) 55%,
    rgba(13,43,46,.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
}
.hero-content .eyebrow { margin-bottom: 16px; }
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-review {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-review-stars { color: #F4A81E; font-size: 1rem; }
.hero-review-text {
  color: rgba(255,255,255,.75);
  font-size: 0.85rem;
  font-style: italic;
  max-width: 280px;
}

/* ---- Sections ---- */
.section { padding: 88px 80px; }
.section-sm { padding: 56px 80px; }
.section-dark { background: var(--dark); color: #fff; }
.section-dark h2 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.7); }
.section-dark .eyebrow { color: var(--pale-teal); }
.section-teal { background: var(--teal); color: #fff; }
.section-teal h2 { color: #fff; }
.section-teal p { color: rgba(255,255,255,.8); }
.section-teal .eyebrow { color: rgba(255,255,255,.6); }
.section-pale { background: var(--pale-teal); }

.section-header { margin-bottom: 56px; }
.section-header .eyebrow { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; max-width: 560px; margin-top: 14px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 14px auto 0; }

.container { max-width: 1240px; margin: 0 auto; }

/* ---- Activity Cards (Homepage) ---- */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.activity-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  cursor: pointer;
}
.activity-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.activity-card:hover .activity-card-bg { transform: scale(1.06); }
.activity-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,43,46,.90) 0%, rgba(13,43,46,.3) 50%, transparent 100%);
}
.activity-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
}
.activity-card-content .eyebrow { color: var(--pale-teal); margin-bottom: 8px; }
.activity-card-content h3 { color: #fff; margin-bottom: 8px; font-size: 1.5rem; }
.activity-card-content p { color: rgba(255,255,255,.75); font-size: 0.9rem; margin: 0; }
.activity-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 12px;
}
.activity-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.activity-price span { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,.6); }
.activity-card .btn-sm {
  flex-shrink: 0;
  padding: 9px 18px;
  font-size: 0.78rem;
}

/* ---- Feature Grid (Why eMotion) ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: box-shadow .25s, transform .25s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--pale-teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 2; }
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; }

/* ---- Stats ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.85rem; color: var(--muted); }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.testimonial-card .quote-mark {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--pale-teal);
  position: absolute;
  top: 12px; left: 20px;
  font-weight: 800;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
  padding-top: 20px;
  font-style: italic;
}
.testimonial-meta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 38px; height: 38px;
  background: var(--pale-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--teal);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.85rem; color: var(--dark); }
.testimonial-source { font-size: 0.75rem; color: var(--muted); }
.testimonial-stars { color: #F4A81E; font-size: 0.8rem; }

/* ---- Tour Cards ---- */
.tour-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tour-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  position: relative;
}
.tour-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.tour-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(255,107,53,.15);
}
.tour-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}
.tour-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.tour-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,43,46,.4) 0%, transparent 60%);
}
.tour-card-body { padding: 24px; }
.tour-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.tour-tag {
  background: var(--pale-teal);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.03em;
}
.tour-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.tour-card-body p { font-size: 0.88rem; color: var(--muted); margin-bottom: 20px; }
.tour-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.tour-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}
.tour-price .currency { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.tour-price .unit { font-size: 0.8rem; font-weight: 400; color: var(--muted); margin-left: 4px; }
.tour-includes {
  font-size: 0.8rem;
  color: var(--reef);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tour-card .btn { width: 100%; justify-content: center; }

.tour-included-note {
  text-align: center;
  padding: 20px;
  background: rgba(200,226,228,.3);
  border-radius: var(--radius-sm);
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-grid .g-item {
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
  overflow: hidden;
  cursor: pointer;
}
.gallery-grid .g-item:hover { opacity: .9; }
.gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .g-item:nth-child(4) { grid-column: span 2; }

/* ---- FAQ Accordion ---- */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.faq-sidebar h2 { margin-bottom: 16px; }
.faq-sidebar p { font-size: 0.95rem; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: color .2s;
}
.faq-question:hover { color: var(--teal); }
.faq-question .faq-icon {
  width: 24px; height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, transform .3s;
}
.faq-question.open .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
  transform: rotate(45deg);
}
.faq-icon svg { width: 12px; height: 12px; stroke: var(--teal); fill: none; stroke-width: 2.5; }
.faq-question.open .faq-icon svg { stroke: #fff; }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---- Dark guide section ---- */
.guide-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.guide-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.guide-perk {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.guide-perk .perk-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-bottom: 12px;
}
.guide-perk h5 { color: #fff; font-size: 0.9rem; margin-bottom: 4px; }
.guide-perk p { font-size: 0.82rem; color: rgba(255,255,255,.55); }
.guide-phone {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}
.guide-phone-frame {
  background: #111;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.guide-phone-screen {
  background: var(--dark);
  border-radius: 28px;
  overflow: hidden;
  height: 500px;
  background-size: cover;
  background-position: center;
}
.guide-phone-caption {
  text-align: center;
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
  font-style: italic;
}

.progression-steps {
  display: flex;
  gap: 0;
  margin-top: 36px;
}
.progress-step {
  flex: 1;
  padding: 16px 20px;
  border-left: 2px solid rgba(255,255,255,.1);
  position: relative;
}
.progress-step:first-child { border-left: none; padding-left: 0; }
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 8px;
}
.progress-step h5 { color: #fff; font-size: 0.88rem; margin-bottom: 4px; }
.progress-step p { font-size: 0.78rem; color: rgba(255,255,255,.5); }

/* ---- Location / CTA section ---- */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.final-cta-image {
  height: 380px;
  background-size: cover;
  background-position: center 40%;
  position: relative;
}
.final-cta-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,43,46,.3) 0%, rgba(13,43,46,.7) 100%);
}
.final-cta-content {
  padding: 72px 80px;
  text-align: center;
}
.final-cta-content h2 { color: #fff; margin-bottom: 16px; }
.final-cta-content p { color: rgba(255,255,255,.7); margin-bottom: 36px; font-size: 1.05rem; }
.final-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
}

.location-strip {
  background: rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 36px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.location-item { }
.location-item .eyebrow { color: var(--pale-teal); margin-bottom: 8px; }
.location-item p { color: rgba(255,255,255,.6); font-size: 0.9rem; line-height: 1.7; }

/* ---- Footer ---- */
footer {
  background: var(--dark);
  padding: 60px 80px 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
  margin-top: 16px;
  max-width: 280px;
}
.footer-logo { height: 40px; margin-bottom: 4px; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.footer-social a:hover { background: rgba(255,255,255,.16); }
.footer-social svg { width: 18px; height: 18px; fill: rgba(255,255,255,.6); }
.footer-col h5 {
  color: rgba(255,255,255,.3);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  transition: color .2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-col .contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,.6);
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-col .contact-item svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,.25);
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: .1s; }
.fade-up.delay-2 { transition-delay: .2s; }
.fade-up.delay-3 { transition-delay: .3s; }
.fade-up.delay-4 { transition-delay: .4s; }
.fade-up.delay-5 { transition-delay: .5s; }

/* ---- Fear removal section ---- */
.fear-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.fear-text .eyebrow { margin-bottom: 12px; }
.fear-text h2 { margin-bottom: 20px; }
.gear-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}
.gear-card-icon {
  width: 48px; height: 48px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gear-card-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; }
.gear-card h4 { color: #fff; font-size: 1rem; }
.gear-card p { font-size: 0.85rem; color: rgba(255,255,255,.6); }

/* ---- Lightbox ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: .7;
  transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ---- Review CTA row ---- */
.review-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.review-cta-logos {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
}

/* ---- Page-level hero scroll hint ---- */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: rgba(255,255,255,.5);
  border-radius: 2px;
  animation: scrollBob 1.8s ease infinite;
}
@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: .8; }
  50% { transform: translateX(-50%) translateY(8px); opacity: .2; }
}

/* ---- Seascooter / eBike specific ---- */
.rental-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.rental-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.rental-card h3 { margin-bottom: 8px; }
.rental-card .price-big {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin: 16px 0 6px;
}
.rental-card .price-unit { font-size: 0.85rem; color: var(--muted); }
.rental-includes-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rental-includes-list li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.88rem;
  color: var(--muted);
}
.rental-includes-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.rental-card .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .section { padding: 72px 40px; }
  .section-sm { padding: 48px 40px; }
  .hero-content { padding: 0 40px; }
  .final-cta-content { padding: 56px 40px; }
  .location-strip { padding: 36px 40px; }
  footer { padding: 48px 40px 32px; }
  .trust-bar { padding: 0 24px; }
  .trust-item { padding: 0 16px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-section { grid-template-columns: 1fr; gap: 48px; }
  .guide-phone { display: none; }
  .fear-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-booking-bar { display: flex; }
  .whatsapp-float { bottom: 80px; }
  .section { padding: 56px 20px; }
  .section-sm { padding: 36px 20px; }
  .hero-content { padding: 0 20px; max-width: 100%; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { display: none; }
  .hero-review { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust-bar { height: auto; padding: 16px 20px; flex-wrap: wrap; gap: 12px; justify-content: center; }
  .trust-item::before { display: none; }
  .activity-grid { grid-template-columns: 1fr; }
  .activity-card { height: 340px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { display: none; }
  .tour-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-grid .g-item { height: 160px; }
  .gallery-grid .g-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-grid .g-item:nth-child(4) { grid-column: span 1; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .final-cta-content { padding: 48px 20px; }
  .final-cta-image { height: 240px; }
  .location-strip { grid-template-columns: 1fr; padding: 32px 20px; gap: 28px; }
  .guide-perks { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 12px; }
  .rental-info-grid { grid-template-columns: 1fr; }
  .scroll-hint { display: none; }
  .faq-layout { gap: 24px; }
  footer { padding: 40px 20px 24px; }
  footer .mobile-padding-bottom { padding-bottom: 80px; }
}
