/* ══════════════════════════════════════════
   index.css — homepage only
   ══════════════════════════════════════════ */


/* ── CONTACT SECTION TAG OVERRIDE ── */
#contact .section-tag {
  color: #a84d00;
}



/* ── HERO ── */
    /* replace the existing #hero rule */
#hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ocean);
  padding: 0;
  padding-bottom: 90px; /* keep space for stats bar */
}
   .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11,61,107,0.85) 0%,
    rgba(11,61,107,0.4) 60%,
    rgba(26,111,168,0.6) 100%
  );
  z-index: 1;
}
    
    .hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1160px;   /* aligns with the rest of the page */
  margin: 0 auto;

  padding: 0 40px 80px;
  animation: heroIn 1s ease both;
}

.hero-en{
  max-width: 760px;   /* keeps the text column narrow */
}
    @keyframes heroIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;

  background: none;
  border: none;
  padding: 0;

  color: rgba(255,255,255,0.92);   /* readable */
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;

  text-shadow: 0 2px 14px rgba(0,0,0,0.45); /* ensures contrast on photo */
  margin-bottom: 18px;
}
    #hero h1 {
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    #hero h1 em { font-style: italic; color: var(--sunset); }
    
    .hero-sub{
  color: rgba(255,255,255,0.85);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 460px;
  margin-bottom: 22px;
}
    /* HERO BUTTONS (updated) */
.hero-btns{
  display:flex;
  gap:0px;
  flex-wrap:wrap;
  align-items:center;
}

/* HERO PRIMARY CTA – identical to pricing */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  gap:12px;              /* was smaller before */
  padding: 16px 32px;

  border-radius:14px;
  font-size:14px;
  font-weight:700;
  letter-spacing:.2px;
  text-decoration:none;

  color:#fff;

  background: linear-gradient(90deg, #f77f3a 0%, #e05c12 60%, #c44a0a 100%);
  box-shadow: 0 14px 34px rgba(247,127,58,0.30);

  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}

.btn-primary svg{
  width:18px;
  height:18px;
  flex-shrink:0;
  opacity:.9;
}

.btn-primary:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 20px 44px rgba(247,127,58,0.40);
}
.btn-primary:active{ transform: translateY(0); }

.btn-ghost{
  --btn-h: 48px;
  height: var(--btn-h);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding: 0 18px;
  border-radius: 999px;
  text-decoration:none;

  background: rgba(255,255,255,0.10);
  color:#fff;
  border: 1px solid rgba(255,255,255,0.28);
  

  font-size:15px;
  font-weight:500;

  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.btn-ghost:hover{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.42);
  transform: translateY(-2px);
}

/* Mobile: full-width buttons */
@media (max-width: 680px){

  /* Buttons */
  .hero-btns{ width:100%; }
  .btn-primary, .btn-ghost{ width:100%; }

  /* Headline refinement */
  #hero h1{
    font-size: 2.3rem;
    line-height: 1.12;
  }

  /* Paragraph refinement */
  .hero-sub{
    font-size: 15px;
    line-height: 1.45;
    max-width: 100%;
    margin-bottom: 20px;
  }

  /* Remove top tag for cleaner mobile */
  .hero-tag{
    display:none;
  }

}

    /* Stats bar */
    .stats-bar {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 3;
      background: rgba(255,255,255,0.96);
      display: flex;
      justify-content: center;
      gap: 0;
    }
    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 18px 48px;
      border-right: 1px solid rgba(11,61,107,0.1);
      animation: heroIn 1s ease both;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Poppins', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--sunset);
    }
    .stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; }

    /* ── ITINERARY ── */
    #itinerary { background: #fff; }
    .itinerary-list { position: relative; }
    .itinerary-list::before {
      content: '';
      position: absolute;
      left: 28px; top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--sunset), var(--ocean-light));
    }

/* TRUST STRIP */

.trust-strip{
  margin:18px 14px 8px 14px;
  max-width:900px;
  padding:12px 16px;

  background:#fff;
  border-radius:22px;

  border:1px solid rgba(11,61,107,0.15);

  display:grid;
  grid-template-columns:repeat(2,1fr);

  column-gap:18px;
  row-gap:8px; /* reduced vertical space */
}

.trust-item{
  display:flex;
  align-items:center;
  gap:6px;

  font-size:12px;
  font-weight:500;
  color:#2b3f54;

  white-space:normal;
  word-break:break-word;
  min-width:0;
}

.trust-icon{
  width:22px; /* smaller icon bubble */
  height:22px;

  border-radius:50%;
  background:rgba(11,61,107,0.08);

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;
}

.trust-icon svg{
  width:10px;
  height:10px;
  stroke:#1a6fa8;
}

/* desktop */

@media (min-width:900px){

  .trust-strip{
    margin-left:auto;
    margin-right:auto;

    grid-template-columns:repeat(4,1fr);

    column-gap:16px;
    row-gap:0;
  }

  .trust-item{
    justify-content:center;
    font-size:11.5px;
  }

}

    /* ── ITINERARY HEADER VISUAL ── */
.itinerary-visual{
  margin: 40px 0 60px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}


.itinerary-visual img{
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
  display: block;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(11,61,107,0.12);
}

/* subtle fade overlay for polish */
.itinerary-visual::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to top,
    rgba(11,61,107,0.25),
    transparent 60%
  );
  pointer-events:none;
  border-radius: 18px;
}

/* Itinerary lead link — same style as route links */
#itinerary{
  padding-top: 34px;
}
#itinerary .section-lead a,
#itinerary .section-lead a:visited{
  color: var(--ocean);
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: rgba(247,127,58,0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .18s ease, text-decoration-color .18s ease;
}

/* mobile spacing */
@media (max-width: 768px){
  .itinerary-visual{
    margin: 30px 0 40px;
  }
}
    .stop {
      display: flex;
      gap: 32px;
      margin-bottom: 48px;
      position: relative;
      animation: fadeUp 0.6s ease both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .stop-num {
      width: 58px;
      min-width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--sunset);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 600;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 16px rgba(247,127,58,0.35);
    }
    .stop-body { flex: 1; padding-top: 12px; }
    .stop-time { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #a34d00; margin-bottom: 4px; font-weight: 500; }
    .stop-body h3 { font-size: 1.4rem; color: var(--ocean); margin-bottom: 6px; font-family: 'Poppins', sans-serif; font-weight: 700; }
    .stop-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
    .stop-duration {
      display: inline-block;
      background: rgba(247,127,58,0.15);
      color: #a34d00;
      font-size: 11px;
      padding: 3px 10px;
      border-radius: 20px;
      margin-top: 8px;
      letter-spacing: 0.5px;
    }
    .stop-img {
      width: 160px;
      min-width: 160px;
      height: 110px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
    /* ── Itinerary patch: smaller circles + scroll reveal + better images ── */

/* smaller number circles */
.stop-num{
  width: 42px;
  min-width: 42px;
  height: 42px;
  font-size: 17px;
}

/* make line align with new circle size */
.itinerary-list::before{
  left: 20px;
}

/* remove always-on animation; we’ll reveal via JS */
.stop{
  animation: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
  will-change: opacity, transform;
}
.stop.is-in{
  opacity: 1;
  transform: translateY(0);
}

/* bigger + clickable images on desktop (no layout change) */
.stop-img{
  width: 220px;
  min-width: 220px;
  height: 140px;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform .22s ease;
}
.stop-img:hover{ transform: scale(1.03); }

/* mobile safety: stack cleanly */
@media (max-width: 768px){
  .itinerary-list::before{ left: 20px; }
  .stop{
    gap: 16px;
    margin-bottom: 34px;
  }
  .stop-img{
    width: 100%;
    min-width: 0;
    height: 190px;
    margin-top: 10px;
  }
  .itinerary-visual{
    margin: 30px -20px 40px;
    border-radius: 0;
  }

  .itinerary-visual img{
    height: 250px;
    border-radius: 0;
  }
}

/* Final itinerary step */

.stop:last-child .stop-num{
  background: var(--ocean);
  color:#fff;
}

.stop:last-child h3{
  color: var(--ocean);
}



/* accessibility */
@media (prefers-reduced-motion: reduce){
  .stop{ transition:none; transform:none; opacity:1; }
  .stop-img{ transition:none; }
}

/* ── INCLUDED (modern + more depth / eye-catching) ── */
#included{
  color:#fff;
  position: relative;
  overflow: hidden;

  /* richer layered background */
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(247,127,58,0.10), transparent 55%),
    radial-gradient(900px 700px at 85% 30%, rgba(11,61,107,0.14), transparent 60%),
    radial-gradient(700px 600px at 60% 110%, rgba(11,95,154,0.18), transparent 55%),
    linear-gradient(180deg, #0b3d6b 0%, #082d52 40%, #061e38 100%);
}

/* soft vignette for premium depth */
#included::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 500px at 50% 0%, transparent 35%, rgba(0,0,0,0.26) 100%);
  pointer-events:none;
  z-index:0;
}

#included .container{ position:relative; z-index:1; }

#included .section-tag{ color: var(--sunset); }
#included .section-title{ color:#fff; }
#included .section-lead{
  color: rgba(255,255,255,0.78);
  max-width: 640px;
}

/* layout */
.included-wrap{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  margin-top: 44px;
  align-items: start;
}

/* ── VALUE CARD (featured / eye-catching) ── */
.value-card{
  position: relative;
  border-radius: 20px;
  padding: 22px 20px 18px;

  background: linear-gradient(135deg,
    rgba(247,127,58,0.20) 0%,
    rgba(11,61,107,0.15) 45%,
    rgba(11,61,107,0.10) 100%
  );

  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.26),
    0 0 0 1px rgba(255,255,255,0.06) inset;

  
  transform: translateY(-6px);
}

/* sheen */
.value-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 20px;
  background: linear-gradient(120deg,
    rgba(255,255,255,0.18) 0%,
    transparent 42%,
    transparent 62%,
    rgba(255,255,255,0.10) 100%
  );
  opacity:.55;
  pointer-events:none;
}

/* glow edge */
.value-card::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: 20px;
  background: linear-gradient(90deg,
    rgba(247,127,58,0.45),
    rgba(247,127,58,0.40),
    rgba(247,127,58,0.18)
  );
  filter: blur(12px);
  opacity:.32;
  z-index:-1;
  pointer-events:none;
}

.value-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.value-badge{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;

  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 800;

  background: linear-gradient(90deg, #f77f3a 0%, #ffaa5e 50%, #f77f3a 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 10px 26px rgba(247,127,58,0.22);
}

.value-chip{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
}

.value-title{
  font-family: 'Poppins', sans-serif;
  font-size: 1.58rem;
  line-height: 1.15;
  margin: 0 0 8px;
  color:#fff;
}

.value-sub{
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.80);
  max-width: 42ch;
}

.value-pills{
  list-style:none;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.value-pills li{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.90);

  background: linear-gradient(180deg, rgba(247,127,58,0.10), rgba(0,119,204,0.10));
  border: 1px solid rgba(247,127,58,0.22);
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

#route-timeline{
  background:#fff;
}

.timeline{
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:relative;
  margin-top:30px;
}

.timeline::before{
  content:"";
  position:absolute;
  top:16px;
  left:0;
  right:0;
  height:2px;
  background:rgba(11,61,107,0.15);
}

.timeline-stop{
  position:relative;
  text-align:center;
  flex:1;
}

.timeline-stop .dot{
  width:14px;
  height:14px;
  background:var(--sunset);
  border-radius:50%;
  display:block;
  margin:0 auto 10px auto;
  border:3px solid #fff;
  box-shadow:0 0 0 2px rgba(11,61,107,0.15);
}

.timeline-stop p{
  font-size:13px;
  color:var(--text-muted);
  font-weight:500;
}


/* ── GALLERY (reuses existing #imgModal lightbox) ── */
#gallery { background:#FFFFFF; 
border-top: 1px solid rgba(10,61,98,0.08);
  border-bottom: 1px solid rgba(10,61,98,0.06); }

/* Featured full-width hero */
.gallery-feature{
  border-radius: 14px;
  overflow: hidden;
  background: var(--foam);
  aspect-ratio: 16/9;
  margin-bottom: 12px;
  cursor: zoom-in;
}
.gallery-feature img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gallery-feature:hover img{ transform: scale(1.03); }

/* Grid stays clean under hero */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:12px;
  aspect-ratio:4/3;
  background:var(--foam);
  cursor:zoom-in;
}


.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

.gallery-item:hover img{ transform:scale(1.04); }

.gallery-item::after{
  content:"+";
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  color:#fff;
  background:rgba(10,61,98,.25);
  opacity:0;
  transition:opacity .25s ease;
}

.gallery-item:hover::after{ opacity:1; }
.gallery-item::after { pointer-events: none; }

@media (max-width:768px){
  .gallery-grid{ grid-template-columns:repeat(2,1fr); gap:8px; }
}

/* ── MAIN INCLUDED BOX ── */
.included-main{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 24px 24px 18px;

  box-shadow:
    0 18px 60px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.05) inset;

 
}

.included-h{
  margin: 0 0 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.94);
  letter-spacing: .2px;
}

.included-list{
  list-style: none;
  margin: 0;
  padding: 0;

  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  position: relative;
}

.included-list li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

.included-list li::before{
  content:"✓";
  color: var(--sunset);
  font-weight: 900;
  min-width: 18px;
  margin-top: 1px;
}

/* subtle divider between columns (desktop only) */
@media (min-width: 981px){
  .included-list{
    column-gap: 28px;
  }
  .included-list::before{
    content:"";
    position:absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255,255,255,0.08);
    transform: translateX(-14px);
    pointer-events:none;
  }
}

/* small “not included” note */
.not-included{
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 12px;
}

.not-included strong{
  color: rgba(255,255,255,0.92);
  font-weight: 800;
}

/* ── RESPONSIVE ── */
@media (max-width: 980px){
  .included-wrap{ grid-template-columns: 1fr; }
  .included-list{ grid-template-columns: 1fr; }
  .included-list::before{ display:none; }
  .value-card{ transform: none; }
}

@media (max-width: 768px){
  .included-main{ padding: 20px; }
  .value-card{ padding: 20px; }
}

/* ── PERFORMANCE PATCH: mobile scroll smooth ── */
@media (max-width: 980px){

  /* 1) Kill backdrop blur on mobile (huge win) */
  .value-card,
  .included-main{
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* 2) Remove the blurred glow layer (also huge win) */
  .value-card::after{
    filter: none !important;
    opacity: .18;               /* keep some glow without blur */
  }

  /* 3) Reduce heavy shadows (less repaint) */
  .value-card{
    box-shadow:
      0 16px 44px rgba(0,0,0,0.22),
      0 0 0 1px rgba(255,255,255,0.06) inset;
  }
  .included-main{
    box-shadow:
      0 14px 40px rgba(0,0,0,0.16),
      0 0 0 1px rgba(255,255,255,0.05) inset;
  }

  /* 4) Remove the always-on transform layer */
  .value-card{ transform: none; }
}

/* ── PRICING ── */
#pricing.pricing-framer{
  position: relative;
  background: var(--sand);
  overflow: hidden;
}

/* background color “glow blobs” (no images, no libs) */
#pricing.pricing-framer::before,
#pricing.pricing-framer::after{
  content:"";
  position:absolute;
  inset:auto;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(50px);
  opacity: .55;
  pointer-events:none;
  z-index:0;
}
#pricing.pricing-framer::before{
  left: -180px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, #f77f3a, transparent 60%);
}
#pricing.pricing-framer::after{
  right: -200px;
  top: 120px;
  background: radial-gradient(circle at 30% 30%, #0b3d6b, transparent 55%);
}

#pricing .container{ position: relative; z-index: 1; }

.pricing-cards{
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
}

/* main card */
.price-card--framer{
  width: 100%;
  max-width: 920px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(11,61,107,0.10);
  border-radius: 22px;
  padding: 36px 34px 28px;
  box-shadow:
    0 18px 60px rgba(11,61,107,0.12),
    0 0 0 1px rgba(255,255,255,0.45) inset;
 
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.price-card--framer:hover{
  transform: translateY(-4px);
  box-shadow:
    0 26px 80px rgba(11,61,107,0.15),
    0 0 0 1px rgba(255,255,255,0.55) inset;
  border-color: rgba(247,127,58,0.25);
}

.price-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.price-card--framer .badge{
  background: rgba(247,127,58,0.12);
  color: #0b3d6b;
  border: 1px solid rgba(247,127,58,0.22);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.chip{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(12,40,60,0.75);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(11,61,107,0.10);
}

.price-title{
  font-size: 1.25rem;
  margin: 8px 0 18px;
  color: rgba(12,40,60,0.78);
}

/* two mini cards inside */
.price-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.price-mini{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,61,107,0.10);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 30px rgba(11,61,107,0.08);
  position: relative;
  overflow:hidden;
}

/* colored top edge like Framer — BLUE ONLY */
.price-mini::before{
  content:"";
  position:absolute;
  left:0; top:0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #f77f3a, #e05c12);
  opacity: .95;
}

.price-mini.adult .mini-name{ color:#0b3d6b; }
.price-mini.child .mini-name{ color:#f77f3a; }

.mini-top{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.mini-name{
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
}

.mini-age{
  font-size: 12px;
  color: rgba(12,40,60,0.55);
}

.mini-price{
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  color: #0d2137;
}
.mini-price span{ font-size: 1.2rem; opacity: .85; }

.mini-note{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(12,40,60,0.55);
}

/* feature list */
.price-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin: 12px 0 18px;
  padding: 0;
}

.price-list li{
  font-size: 14px;
  color: rgba(12,40,60,0.62);
  padding-left: 22px;
  position: relative;
}

.price-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-weight: 800;
  color: #f77f3a;
}

.price-list li.muted{
  font-size: 13px;
  color: rgba(12,40,60,0.50);
}

/* ONE CTA button – BLUE-ONLY gradient */
.btn-book--gradient{
  display:block;
  width: min(560px, 100%);
  margin: 14px auto 0;
  text-align:center;
  color:#fff;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration:none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  background: linear-gradient(90deg, #f77f3a 0%, #e05c12 60%, #c44a0a 100%);
  box-shadow: 0 14px 34px rgba(247,127,58,0.30);
  transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}

.btn-book--gradient:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 20px 44px rgba(247,127,58,0.40);
}

.price-foot{
  text-align:center;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(12,40,60,0.55);
}
.price-foot a{
  color:#0b3d6b;
  text-decoration:none;
  font-weight: 600;
}
.price-foot a:hover{ text-decoration: underline; }

/* responsive */
@media (max-width: 720px){
  .price-card--framer{ padding: 28px 18px 22px; border-radius: 18px; }
  .price-grid{ grid-template-columns: 1fr; }
  .mini-price{ font-size: 2.85rem; }
}

/* motion safety */
@media (prefers-reduced-motion: reduce){
  .price-card--framer,
  .btn-book--gradient{ transition:none; }
  .price-card--framer:hover,
  .btn-book--gradient:hover{ transform:none; }
}

/* ── PRICING: mobile performance patch ── */
@media (max-width: 980px){

  /* 1) Remove expensive blur on big background blobs */
  #pricing.pricing-framer::before,
  #pricing.pricing-framer::after{
    filter: none !important;     /* was blur(50px) */
    opacity: .28;                /* keep glow, lighter */
  }

  /* 2) Remove backdrop blur on mobile */
  .price-card--framer{
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* 3) Slightly simplify big shadow (cheaper) */
  .price-card--framer{
    box-shadow:
      0 14px 44px rgba(11,61,107,0.10),
      0 0 0 1px rgba(255,255,255,0.45) inset;
  }
}

    /* ── FAQ ── */
    #faq { background: #fff; }

/* ROUTE GUIDE SECTION */

#route-guide{
  background: var(--foam);
}

#route-guide .section-lead a,
#route-guide .route-text a,
#route-guide .section-lead a:visited,
#route-guide .route-text a:visited{
  color: var(--ocean);
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: rgba(247,127,58,0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .18s ease, text-decoration-color .18s ease;
}

#route-guide .section-lead a:hover,
#route-guide .route-text a:hover,
#route-guide .section-lead a:focus-visible,
#route-guide .route-text a:focus-visible{
  color: var(--sunset);
  text-decoration-color: var(--sunset);
}

.route-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:start;
}

.route-text p{
  font-size:15px;
  line-height:1.9;
  color:var(--text-muted);
  margin-bottom:16px;
}

.route-text strong{
  color:var(--ocean);
}

.route-card{
  background:#fff;

  border-radius:16px;
  padding:22px 22px;

  border:1px solid rgba(11,61,107,0.08);

  box-shadow:
    0 10px 26px rgba(11,61,107,0.06),
    0 2px 6px rgba(11,61,107,0.04);

  transition:transform .18s ease, box-shadow .18s ease;
}
.route-card:hover{
  transform:translateY(-3px);

  box-shadow:
    0 18px 42px rgba(11,61,107,0.10),
    0 6px 16px rgba(11,61,107,0.06);
}

.route-card h3{
  font-size:1.05rem;
  margin-bottom:14px;
  color:var(--ocean);
  font-weight:700;
}

.route-card ul{
  padding-left:18px;
}

.route-card li{
  margin-bottom:10px;
  line-height:1.75;
  color:var(--text-muted);
}

.route-card li::marker{
  color:var(--sunset);
}

@media (max-width:860px){
  .route-grid{
    grid-template-columns:1fr;
  }
}



/* COAST GUIDES */

#coast-guides{
  background: var(--sand);
}

.guides-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:20px;
}

.guide-card{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  background:#fff;
  border:1px solid rgba(11,61,107,0.08);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(11,61,107,0.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  min-width: 0;
}

.guide-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 42px rgba(11,61,107,0.10);
  border-color:rgba(11,61,107,0.14);
}

.guide-thumb{
  aspect-ratio: 5 / 3;
  overflow:hidden;
  background: var(--foam);
}

.guide-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .3s ease;
}

.guide-card:hover .guide-thumb img{
  transform:scale(1.04);
}

.guide-content{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:18px 18px 20px;
  flex:1;
  min-width: 0;
}

.guide-card h3{
  color:var(--ocean);
  font-size:1.05rem;
  line-height:1.3;
}

.guide-card p{
  font-size:14px;
  line-height:1.7;
  color:var(--text-muted);
  flex:1;
}

.guide-card span{
  font-size:13px;
  font-weight:700;
  color:var(--ocean);
}

@media (max-width:980px){
  .guides-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width:640px){
  .guides-grid{
    grid-template-columns:1fr;
  }
}

/* ── CONTACT ── */
#contact {
  background: var(--foam);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-lead {
  max-width: 520px;
  margin-bottom: 34px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,61,107,0.06);
  font-size: 18px;
  line-height: 1;
}

.contact-item-body {
  min-width: 0;
}

.contact-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-item a,
.contact-item p {
  font-size: 15px;
  color: var(--ocean);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item--meeting {
  background: #fff;
  border: 1px solid rgba(11,61,107,0.09);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(11,61,107,0.05);
}

.contact-address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ocean);
  margin: 0 0 10px;
}

.contact-note,
.contact-tip {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.contact-note {
  margin-bottom: 4px;
}

.contact-tip {
  margin-bottom: 14px;
}

.contact-note strong {
  color: var(--ocean);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(11,61,107,0.08);
  border: 1px solid rgba(11,61,107,0.12);
  color: var(--ocean);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-map-btn:hover {
  background: rgba(11,61,107,0.12);
  border-color: rgba(11,61,107,0.18);
  text-decoration: none;
  transform: translateY(-1px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(11,61,107,0.18);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--ocean-mid);
  box-shadow: 0 0 0 3px rgba(26,111,168,0.08);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-form button {
  background: #157a38;
  color: #fff;
  border: none;
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form button:hover {
  background: #0f6530;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .hero-content { padding: 0 20px 20px; }
  .stats-bar { flex-wrap: nowrap; overflow-x: auto; }
  .stat-item { padding: 14px 20px; flex: 0 0 auto; min-width: unset; }
  .stop { flex-direction: column; gap: 16px; }
  .stop-img { width: 100%; min-width: unset; height: 180px; }
  .itinerary-list::before { display: none; }
  .included-grid { grid-template-columns: 1fr; gap: 32px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-item--meeting {
    padding: 16px;
  }

  .contact-map-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #hero h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; }
  .pricing-cards { flex-direction: column; }
  #hero { padding-bottom: 70px; }
  .stat-item { padding: 14px 20px; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 11px; }
}

/* Hero content always visible */
.hero-en { display: flex; flex-direction: column; }


