:root{
  --bg: #f7fbff;
  --ink: #07131f;
  --muted: rgba(7,19,31,.68);

  --ocean: #1b8fb8;
  --ocean-2: #0b6f93;
  --card: rgba(255,255,255,.72);
  --border: rgba(7,19,31,.10);

  --radius: 22px;
  --shadow: 0 20px 60px rgba(7,19,31,.12);
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(27,143,184,.18), transparent 60%),
              radial-gradient(1200px 700px at 80% 0%, rgba(11,111,147,.12), transparent 55%),
              var(--bg);
}

.container{ max-width:1100px; margin:0 auto; padding:0 18px; }

.nav{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(247,251,255,.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.brand{ display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--ink); font-weight:700; }
.brand img{ width:38px; height:38px; border-radius:10px; }
.nav-links{ display:flex; align-items:center; gap:18px; }
.nav-links a{ color:var(--ink); text-decoration:none; font-weight:600; font-size:14px; opacity:.9; }
.nav-links a:hover{ opacity:1; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  font-weight:700; text-decoration:none;
  border:1px solid transparent;
}
.btn-primary{ background: linear-gradient(135deg, var(--ocean), var(--ocean-2)); color:white; box-shadow: var(--shadow); }
.btn-ghost{ background: rgba(255,255,255,.65); border-color: var(--border); color:var(--ink); }
.btn-small{ padding:10px 14px; border-radius:12px; }

.hero{ padding:56px 0 0; }
.hero-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap:28px; align-items:center; }
.eyebrow{ color:var(--muted); font-weight:700; letter-spacing:.02em; margin:0 0 10px; }
.hero h1{ margin:0 0 10px; font-size:46px; line-height:1.05; }
.lead{ margin:0 0 18px; color:var(--muted); max-width:52ch; }
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 10px; }

.trust{ display:flex; gap:18px; margin-top:18px; flex-wrap:wrap; }
.trust-item{
  padding:12px 14px; border-radius:16px;
  background: rgba(255,255,255,.6);
  border:1px solid var(--border);
}
.trust-item strong{ display:block; }
.trust-item span{ color:var(--muted); font-size:13px; }

.hero-media{ position:relative; min-height:360px; }
.hero-card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card img{ width:100%; height:360px; object-fit:cover; display:block; }
.hero-card-mini{
  position:absolute; right:-8px; bottom:-18px; width:56%;
  transform: rotate(1.2deg);
}
.hero-card-mini img{ height:180px; }

.wave{
  margin-top:44px;
  height:120px;
  background: radial-gradient(800px 180px at 50% 0%, rgba(27,143,184,.18), transparent 70%),
              linear-gradient(to bottom, transparent, rgba(7,19,31,.03));
  border-top: 1px solid rgba(7,19,31,.06);
}

.section{ padding:56px 0; }
.section-alt{ background: rgba(255,255,255,.40); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.section-head h2{ margin:0 0 6px; font-size:30px; }
.section-head p{ margin:0 0 22px; color:var(--muted); }

.cards{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.card{
  text-decoration:none; color:inherit;
  background: rgba(255,255,255,.72);
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(7,19,31,.10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover{ transform: translateY(-3px); box-shadow: 0 22px 70px rgba(7,19,31,.14); }
.card-img img{ width:100%; height:190px; object-fit:cover; display:block; }
.card-body{ padding:16px; }
.card-body h3{ margin:0 0 6px; }
.card-body p{ margin:0 0 10px; color:var(--muted); }
.card-link{ font-weight:800; color: var(--ocean-2); }

.split{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:center; }
.ticks{ margin:14px 0 0; padding-left:18px; color:var(--muted); }
.photo-frame{
  background: rgba(255,255,255,.72);
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.photo-frame img{ width:100%; height:320px; object-fit:cover; display:block; }

.cta-band{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:22px;
  background: linear-gradient(135deg, rgba(27,143,184,.16), rgba(255,255,255,.70));
  border:1px solid var(--border);
  border-radius: var(--radius);
}

.footer{ padding:34px 0; color: var(--muted); }
.footer-inner{ display:flex; justify-content:space-between; align-items:center; gap:12px; border-top:1px solid var(--border); padding-top:18px; }
.footer-right a{ margin-left:14px; color:var(--muted); text-decoration:none; font-weight:700; font-size:14px; }
.footer-right a:hover{ color:var(--ink); }

@media (max-width: 900px){
  .hero-grid, .split{ grid-template-columns: 1fr; }
  .hero h1{ font-size:38px; }
  .cards{ grid-template-columns: 1fr; }
  .hero-card-mini{ position:static; width:100%; margin-top:12px; transform:none; }
}
/* ===== Hero (full-bleed image with overlay text) ===== */
.hero--image{
  position: relative;
  min-height: clamp(520px, 78vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0;
}

.hero--image .hero-media{
  position: absolute;
  inset: 0;
  background:
    url("/assets/img/hero/hero.jpg")
    center / cover
    no-repeat;
  transform: scale(1.02);
}

.hero--image .hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.55) 38%,
      rgba(0, 0, 0, 0.25) 65%,
      rgba(0, 0, 0, 0.05) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.15) 0%,
      rgba(0,0,0,.35) 100%
    );
}


.hero--image .hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(64px, 10vh, 120px) 0;
  color: rgba(255,255,255,.92);
}

.hero--image .hero-inner{
  max-width: 760px;
}

.hero--image .eyebrow{
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
  opacity: .92;
  margin: 0 0 .75rem;
}

.hero--image h1{
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
  text-shadow:
    0 4px 12px rgba(0,0,0,.45),
    0 12px 40px rgba(0,0,0,.55);
}

.hero--image .accent{
  color: #bfefff;
  text-shadow:
    0 2px 10px rgba(0,0,0,.55),
    0 0 28px rgba(191,239,255,.35);
}


.hero--image .lead{
  margin: 0 0 1.6rem;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  max-width: 62ch;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}


.hero--image .hero-cta{
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.hero--image .trust{
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.hero--image .trust-item{
  display: flex;
  gap: .45rem;
  align-items: baseline;
  padding: .55rem .75rem;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

.hero--image .trust-item strong{
  color: #fff;
}

.hero--image .trust-item span{
  opacity: .9;
  font-size: .95rem;
}

/* Mobile tweak: keep text readable */
@media (max-width: 720px){
  .hero--image .hero-overlay{
    background:
      linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.22) 60%, rgba(0,0,0,.08) 100%);
  }
  .hero--image .hero-inner{
    max-width: 100%;
  }
}
.hero--image .btn{
  box-shadow:
    0 8px 24px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.15);
}

.hero--image .btn-primary{
  background: linear-gradient(135deg, #2da7c7, #1b6f86);
  color: #fff;
}

.hero--image .btn-ghost{
  background: rgba(255,255,255,.92);
  color: #0b2b33;
}
.hero--image .trust-item{
  display: flex;
  gap: .45rem;
  align-items: baseline;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  color: #fff;
}
@media (max-width: 720px){
  .hero--image .hero-overlay{
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.62) 65%,
        rgba(0,0,0,.45) 100%
      );
  }
}
.hero--image .eyebrow{
  color: rgba(255,255,255,.78);     /* <-- THIS is the key */
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .85rem;
  margin: 0 0 .75rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.60);
}
/* ===== Tours page ===== */
.tours-hero{
  position: relative;
  min-height: clamp(320px, 46vh, 520px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.tours-hero-media{
  position:absolute;
  inset:0;
  background: url("/assets/img/hero/hero-1.jpg") center/cover no-repeat;
  transform: scale(1.02);
}

.tours-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.62) 100%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 70%, rgba(0,0,0,.05) 100%);
}

.tours-hero-content{
  position: relative;
  z-index: 2;
  padding: 74px 18px 46px;
  color: rgba(255,255,255,.92);
}

.tours-hero .eyebrow{
  color: rgba(255,255,255,.78) !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.65);
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: .85rem;
  margin: 0 0 .6rem;
}
.tours-hero h1{
  margin: 0 0 .7rem;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  font-weight: 850;
  text-shadow: 0 10px 40px rgba(0,0,0,.55);
}
.tours-hero .accent{ color:#bfefff; }

/* grid of clickable tiles */
.tour-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tour-tile{
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.72);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(7,19,31,.10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tour-tile:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 70px rgba(7,19,31,.14);
}
.tour-img img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display:block;
}
.tour-meta{ padding: 14px 14px 16px; }
.tour-title{ font-weight: 850; margin-bottom: 4px; }
.tour-tag{ color: var(--muted); font-weight: 650; font-size: 13px; margin-bottom: 10px; }
.tour-cta{ color: var(--ocean-2); font-weight: 850; }

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
}
.modal.is-open{ display:block; }

.modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}

.modal-card{
  position: relative;
  width: min(980px, calc(100% - 28px));
  margin: 6vh auto;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 22px;
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
  overflow: hidden;
}

.modal-x{
  position:absolute;
  top: 10px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(7,19,31,.10);
  background: rgba(255,255,255,.85);
  cursor:pointer;
  font-size: 24px;
  line-height: 1;
}

.modal-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
}

.modal-media img{
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display:block;
}

.modal-body{
  padding: 22px 22px 20px;
}
.modal-body h3{
  margin: 6px 0 12px;
  font-size: 22px;
}
.modal-text p{
  margin: 0 0 12px;
  color: rgba(7,19,31,.78);
  line-height: 1.65;
}
.modal-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

@media (max-width: 980px){
  .tour-grid{ grid-template-columns: repeat(2, 1fr); }
  .modal-grid{ grid-template-columns: 1fr; }
  .modal-media img{ min-height: 260px; }
}
@media (max-width: 540px){
  .tour-grid{ grid-template-columns: 1fr; }
}
/* FORCE all hero text to be white (scoped) */
.hero--image,
.hero--image * {
  color: rgba(255,255,255,.95);
}

/* Keep hierarchy */
.hero--image .lead{
  color: rgba(255,255,255,.90);
}

.hero--image p{
  color: rgba(255,255,255,.90);
}

/* Pills / badges */
.hero--image .trust-item,
.hero--image .pill,
.hero--image .badge{
  color: #fff;
}

/* If pills have inner spans */
.hero--image .trust-item span,
.hero--image .pill span{
  color: #fff;
}
.hero--image .btn{
  color: #fff;
}

.hero--image .btn-ghost{
  color: #0b2b33; /* dark text on white button */
}
/* ===== Social Icons ===== */
.nav-socials,
.footer-socials{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav-socials a,
.footer-socials a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:999px;
  color: var(--ink);
  background: rgba(255,255,255,.65);
  border: 1px solid var(--border);
  text-decoration:none;
  transition: all .2s ease;
}

.nav-socials a:hover,
.footer-socials a:hover{
  color:#fff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); /* Instagram */
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}

.nav-socials i,
.footer-socials i{
  font-size:18px;
}
.nav-links .nav-social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:999px;
  margin-left:4px;
  background: rgba(255,255,255,.6);
  border:1px solid var(--border);
  color:var(--ink);
  transition: all .2s ease;
}

.nav-links .nav-social:hover{
  color:#fff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  transform: translateY(-2px);
}
.hero--image .nav-links .nav-social{
  background: rgba(0,0,0,.45);
  color:#fff;
  border-color: rgba(255,255,255,.25);
}
.nav-links .nav-social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:999px;
  margin-left:4px;
  background: rgba(255,255,255,.6);
  border:1px solid var(--border);
  color:var(--ink);
  text-decoration:none;
  transition: all .2s ease;
}

.nav-links .nav-social i{
  font-size:18px;
  line-height:1;
}

.nav-links .nav-social:hover{
  color:#fff;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  transform: translateY(-2px);
}
