:root{
  --navy:#0b2b4c;
  --navy-2:#123d68;
  --green:#198754;
  --green-dark:#12643f;
  --orange:#e67e22;
  --cream:#fff8ef;
  --ink:#182230;
  --muted:#64748b;
  --line:#e5e7eb;
  --surface:#ffffff;
  --radius:18px;
  --shadow:0 18px 45px rgba(11,43,76,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:#fff;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  line-height:1.65;
}
img{max-width:100%;height:auto}
a{color:var(--navy-2)}
a:hover{color:var(--green-dark)}
h1,h2,h3,h4,h5,h6{
  color:var(--navy);
  font-weight:800;
  letter-spacing:-.02em;
}
h1{font-size:clamp(2.25rem,5vw,4.7rem);line-height:1.02}
h2{font-size:clamp(1.75rem,3vw,2.75rem);line-height:1.15}
p{margin-bottom:1rem}
.section-pad{padding:76px 0}
.section-heading{max-width:820px;margin:0 auto 42px}
.section-heading p{color:var(--muted);font-size:1.05rem}
.section-kicker{
  display:inline-block;
  margin-bottom:10px;
  color:var(--green-dark);
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.section-kicker.light{color:#b8f0d1}
.skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  z-index:99999;
  background:#fff;
  padding:10px 14px;
}
.skip-link:focus{left:10px;top:10px}
.brand-logo,.footer-logo{object-fit:contain}

.navbar{
  --bs-navbar-padding-y:.65rem;
}
.navbar .nav-link{
  color:var(--ink);
  font-weight:700;
}
.navbar .nav-link:hover{color:var(--green-dark)}
.nav-wa{
  border-radius:999px;
  padding:.7rem 1rem!important;
  color:#fff!important;
}

.hero-section{
  position:relative;
  overflow:hidden;
  padding:82px 0 78px;
  color:#fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,196,111,.34), transparent 30%),
    radial-gradient(circle at 20% 0%, rgba(50,180,120,.18), transparent 28%),
    linear-gradient(135deg, #081f38 0%, #0d355c 56%, #165d54 100%);
}
.hero-section:after{
  content:"";
  position:absolute;
  inset:auto -10% -190px auto;
  width:620px;
  height:420px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  transform:rotate(-12deg);
}
.hero-section .container{position:relative;z-index:2}
.hero-section h1{color:#fff;margin:14px 0 22px}
.eyebrow{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#d9ffeb;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.08em;
}
.hero-lead{
  max-width:780px;
  color:#e7eef7;
  font-size:1.16rem;
}
.hero-points span{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#f8fafc;
  font-weight:650;
  min-height:100%;
}
.hero-price{
  display:inline-block;
  padding:14px 16px;
  border-radius:14px;
  background:#fff;
  color:var(--navy);
}
.hero-price .small-label{
  display:block;
  color:var(--muted);
  font-size:.82rem;
  font-weight:700;
}
.hero-price strong{font-size:2rem}
.hero-price span{font-weight:700}
.hero-price small{display:block;color:var(--muted)}
.availability-note{color:#cfeee0;font-size:.92rem}
.hero-card{
  padding:28px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:24px;
  background:rgba(255,255,255,.96);
  color:var(--ink);
  box-shadow:0 24px 70px rgba(0,0,0,.22);
}
.hero-card h2{color:var(--navy)}
.check-list{padding-left:0;list-style:none}
.check-list li{
  position:relative;
  padding:8px 0 8px 28px;
}
.check-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:8px;
  color:var(--green);
  font-weight:900;
}

.answer-box{
  padding:30px;
  border:1px solid #dfe8e4;
  border-left:6px solid var(--green);
  border-radius:var(--radius);
  background:#f7fffb;
  box-shadow:var(--shadow);
}
.answer-box p{font-size:1.08rem}

.feature-card,.destination-card,.pickup-card,.review-card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:var(--surface);
  box-shadow:0 8px 28px rgba(15,23,42,.05);
}
.feature-card .feature-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border-radius:14px;
  background:#e7f7ef;
  color:var(--green-dark);
  font-weight:900;
}
.feature-card p,.destination-card p,.pickup-card p{color:var(--muted);margin-bottom:0}

.price-table-wrap,.comparison-table-wrap{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
}
.price-table-wrap thead th{
  background:var(--navy);
  color:#fff;
  border:0;
  padding:16px;
}
.price-table-wrap td{padding:15px 16px}
.price-table-wrap tbody tr:nth-child(1){background:#f2fff8}
.price-notes{
  max-width:900px;
  margin:0 auto;
  padding:20px 22px;
  border-radius:14px;
  background:var(--cream);
  border:1px solid #f5ddbd;
}

.benefit-list{list-style:none;padding-left:0}
.benefit-list li{
  position:relative;
  padding:10px 0 10px 30px;
  border-bottom:1px dashed #e7e7e7;
}
.benefit-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--green);
  font-weight:900;
}
.muted-list li:before{content:"•";color:var(--orange);font-size:1.35rem;top:5px}

.route-strip{
  display:flex;
  align-items:stretch;
  justify-content:center;
  flex-wrap:wrap;
  gap:9px;
}
.route-strip div{
  display:flex;
  align-items:center;
  padding:12px 14px;
  border-radius:12px;
  background:#f2f7fb;
  border:1px solid #dce8f1;
  color:var(--navy);
  font-weight:800;
}
.route-strip span{align-self:center;color:var(--green);font-weight:900}
.infographic-wrap{
  margin:0;
  padding:12px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow:var(--shadow);
}
.infographic-wrap img{border-radius:14px}
.infographic-wrap figcaption{
  padding:12px 8px 4px;
  color:var(--muted);
  font-size:.92rem;
  text-align:center;
}

.destination-card span{
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  margin-bottom:15px;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  font-weight:900;
}
.destination-card h3{font-size:1.2rem}

.comparison-section{
  background:linear-gradient(135deg,#0b2b4c,#114b4a);
}
.comparison-section h2{color:#fff}
.comparison-table-wrap{max-width:900px;margin:0 auto;border-color:rgba(255,255,255,.18)}
.comparison-table-wrap th{
  background:#eef8f4;
  color:var(--navy);
  padding:16px;
}
.comparison-table-wrap td{padding:14px 16px}

.review-card .stars{
  color:#f0a51a;
  letter-spacing:.08em;
  margin-bottom:12px;
}
.review-card p{color:var(--ink)}
.review-card strong{color:var(--navy)}

.faq-accordion{max-width:900px}
.faq-accordion .accordion-item{
  border:1px solid var(--line);
  margin-bottom:12px;
  border-radius:14px!important;
  overflow:hidden;
}
.faq-accordion .accordion-button{
  font-weight:800;
  color:var(--navy);
  background:#fff;
}
.faq-accordion .accordion-button:not(.collapsed){
  color:var(--green-dark);
  background:#f2fff8;
}

.closing-section{
  padding:0 0 76px;
}
.closing-card{
  padding:40px;
  color:#fff;
  border-radius:26px;
  background:linear-gradient(135deg,#102d4c,#196447);
  box-shadow:var(--shadow);
}
.closing-card h2{color:#fff}
.closing-card p{color:#e4f0ec}
.booking-format{
  display:inline-block;
  padding:14px 16px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:.94rem;
}

.related-card{
  display:flex;
  flex-direction:column;
  gap:5px;
  height:100%;
  padding:20px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  text-decoration:none;
  box-shadow:0 5px 18px rgba(15,23,42,.04);
}
.related-card strong{color:var(--navy)}
.related-card span{color:var(--muted);font-size:.9rem}
.related-card:hover{
  transform:translateY(-2px);
  border-color:#b8d8ca;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}

.site-footer{
  padding:32px 0;
  color:#dbe7ef;
  background:#071a2c;
}
.site-footer a{color:#e8f3f7;text-decoration:none}
.site-footer a:hover{text-decoration:underline}
.site-footer span{margin:0 5px}

.sticky-wa-wrap{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:1030;
  display:flex;
  align-items:center;
  gap:8px;
}
.sticky-wa-label{
  padding:9px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--navy);
  font-size:.82rem;
  font-weight:800;
  box-shadow:0 8px 25px rgba(0,0,0,.15);
}
.sticky-wa-btn{
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#25D366;
  color:#fff!important;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 10px 26px rgba(0,0,0,.22);
}

.btn-success{
  --bs-btn-bg:#198754;
  --bs-btn-border-color:#198754;
  --bs-btn-hover-bg:#12643f;
  --bs-btn-hover-border-color:#12643f;
  font-weight:800;
}
.btn{border-radius:12px}
.bg-light{background:#f7f9fb!important}

@media (max-width:991.98px){
  .hero-section{padding-top:58px}
  .navbar-collapse{padding:14px 0}
  .nav-wa{margin-top:6px}
}
@media (max-width:767.98px){
  .section-pad{padding:58px 0}
  .closing-card{padding:28px 22px}
  .sticky-wa-label{display:none}
  .sticky-wa-wrap{right:14px;bottom:14px}
  .route-strip{justify-content:flex-start}
  .route-strip span{display:none}
  .route-strip div{flex:1 1 calc(50% - 9px)}
}
@media (prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important;transition:none!important;animation:none!important}
}
