
:root{
  --ink:#071124;
  --muted:#667085;
  --orange:#ff6b12;
  --orange2:#ff8b38;
  --green:#0fc36b;
  --green2:#049b58;
  --line:#e8eef6;
  --soft:#f6f9fc;
  --shadow:0 20px 60px rgba(13,25,42,.14);
  --radius:20px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--ink);
  background:#fff;
}
a{text-decoration:none;color:inherit}
img{max-width:100%}
.header{
  height:82px;
  padding:0 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  position:sticky;
  top:0;
  z-index:60;
  box-shadow:0 1px 0 rgba(7,17,36,.08);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:230px;
}
.brand img{
  width:58px;
  height:58px;
  object-fit:contain;
}
.brand-mark{
  width:58px;
  height:58px;
  border:2px solid var(--orange);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#078f72;
  font-weight:900;
  font-size:22px;
  position:relative;
  background:#fff;
}
.brand-mark span{
  position:absolute;
  bottom:8px;
  font-size:7px;
  color:var(--orange);
}
.brand-copy strong{
  display:block;
  font-size:25px;
  letter-spacing:-.8px;
  line-height:1;
}
.brand-copy small{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:14px;
}
.nav{
  display:flex;
  gap:28px;
  align-items:center;
  font-size:14px;
  font-weight:800;
  white-space:nowrap;
}
.nav a:hover{color:var(--orange)}
.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}
.icon-btn{
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid #dce8e3;
  display:grid;
  place-items:center;
  color:#08a762;
  background:#fff;
  font-weight:900;
}
.quote-btn{
  height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 28px;
  border-radius:13px;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#fff;
  font-weight:900;
  box-shadow:0 12px 30px rgba(255,107,18,.28);
}
.menu-btn{display:none;border:0;background:none;font-size:28px}

.hero{
  position:relative;
  min-height:610px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:url('assets/hero.jpg') center right/cover no-repeat;
  transform:scale(1.01);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(3,10,24,.84) 0%,rgba(3,10,24,.62) 32%,rgba(3,10,24,.16) 62%,rgba(3,10,24,.03) 100%),
    linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.18));
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:720px;
  color:#fff;
  padding:70px 0 0 76px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:12px;
  background:rgba(255,255,255,.88);
  color:var(--green2);
  font-size:14px;
  font-weight:900;
  box-shadow:0 10px 26px rgba(0,0,0,.12);
  margin-bottom:22px;
}
.hero h1{
  margin:0 0 18px;
  font-size:72px;
  line-height:.95;
  letter-spacing:-3.5px;
  font-weight:900;
}
.hero h1 em{
  color:#fff;
  font-style:normal;
}
.hero .lead{
  margin:0 0 24px;
  max-width:610px;
  font-size:21px;
  line-height:1.5;
  font-weight:700;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-bottom:22px;
}
.btn{
  height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:0 30px;
  border-radius:999px;
  font-weight:900;
  font-size:16px;
  box-shadow:0 12px 34px rgba(0,0,0,.20);
  cursor:pointer;
  border:0;
}
.btn-green{background:linear-gradient(135deg,#18d978,#07b45f);color:#fff}
.btn-white{background:#fff;color:#101828}
.btn-orange{background:linear-gradient(135deg,var(--orange),var(--orange2));color:#fff}
.btn span{font-size:26px;line-height:1}
.feature-row{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  color:#fff;
  font-size:15px;
  font-weight:900;
  text-shadow:0 2px 10px rgba(0,0,0,.28);
}
.booking{
  max-width:1380px;
  margin:-56px auto 28px;
  position:relative;
  z-index:5;
  background:#fff;
  border:1px solid rgba(224,232,242,.95);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
}
.booking-grid{
  display:grid;
  grid-template-columns:1.35fr 1.35fr .8fr .8fr .75fr .95fr;
  gap:17px;
  align-items:end;
}
.booking label b{
  display:block;
  margin:0 0 10px;
  font-size:12px;
  font-weight:900;
  color:#283449;
  letter-spacing:.03em;
}
.booking input,.booking select{
  width:100%;
  height:52px;
  border:1px solid #dce4ef;
  border-radius:11px;
  padding:0 15px;
  font-size:15px;
  color:#4b5565;
  background:#fff;
}
.booking button{
  height:52px;
  border:0;
  border-radius:11px;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#fff;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 12px 28px rgba(255,107,18,.24);
}
.benefits{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid #edf1f6;
  text-align:center;
  color:#2e3b4e;
  font-weight:700;
  font-size:14px;
}
.stats{
  max-width:1380px;
  margin:0 auto 42px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:0 15px 45px rgba(17,34,56,.07);
}
.stat{
  padding:28px 34px;
  display:grid;
  grid-template-columns:68px 1fr;
  gap:18px;
  align-items:center;
}
.stat:not(:last-child){border-right:1px solid var(--line)}
.stat-icon{
  grid-row:1/4;
  width:58px;
  height:58px;
  border:1px solid #ffb177;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:28px;
  color:var(--orange);
  background:#fff8f2;
}
.stat strong{
  display:block;
  font-size:32px;
  line-height:1;
  font-weight:900;
}
.stat b{
  display:block;
  margin-top:5px;
  font-size:15px;
}
.stat small{
  display:block;
  margin-top:4px;
  color:#758196;
  font-size:13px;
}
.section{
  max-width:1180px;
  margin:0 auto;
  padding:58px 24px;
}
.section-title{
  text-align:center;
  margin-bottom:28px;
}
.section-title h1,.section-title h2{
  margin:0 0 10px;
  font-size:38px;
  letter-spacing:-1.4px;
}
.section-title p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}
.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.card{
  border:1px solid var(--line);
  border-radius:18px;
  padding:26px;
  background:#fff;
  box-shadow:0 12px 28px rgba(15,30,50,.06);
}
.card h3{
  margin:0 0 10px;
  font-size:22px;
}
.card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}
.card a{
  display:inline-flex;
  margin-top:16px;
  color:var(--orange);
  font-weight:900;
}
.partners{
  text-align:center;
  padding:36px 24px 54px;
}
.partners h2{
  margin:0 0 8px;
  font-size:30px;
  letter-spacing:-.8px;
}
.partners p{margin:0;color:var(--muted)}
.partner-row{
  max-width:880px;
  margin:28px auto 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  align-items:center;
}
.partner{
  min-height:110px;
  border:1px solid var(--line);
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:8px;
  background:#fff;
}
.partner strong{font-size:30px}
.partner small{color:#556070}
.p12 strong{color:#24a444}
.book strong{color:#111}
.get strong{
  background:var(--orange);
  color:#111;
  border-radius:10px;
  padding:8px 16px;
  font-size:24px;
}
.trust-line{
  max-width:980px;
  margin:22px auto 0;
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
  color:#079b56;
  font-weight:900;
}
.route-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.route{
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  background:linear-gradient(180deg,#fff,#fbfcff);
  box-shadow:0 10px 24px rgba(15,30,50,.05);
}
.route b{
  display:block;
  font-size:19px;
  margin-bottom:8px;
}
.route span{
  color:var(--muted);
  font-size:14px;
}
.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.review{
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  background:#fff;
  box-shadow:0 12px 28px rgba(15,30,50,.06);
}
.stars{color:#ffb000;font-size:20px;letter-spacing:1px}
.review p{color:#344054;line-height:1.65}
.review b{display:block;margin-top:14px}
.contact-wrap{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
}
.contact-card{
  border:1px solid var(--line);
  border-radius:20px;
  padding:30px;
  box-shadow:0 12px 28px rgba(15,30,50,.06);
}
.contact-list{
  display:grid;
  gap:16px;
  margin-top:20px;
}
.contact-item{
  padding:18px;
  border-radius:14px;
  background:var(--soft);
}
.contact-item b{display:block;margin-bottom:6px}
.contact-item a{color:var(--orange);font-weight:900}
.footer{
  background:#071124;
  color:#fff;
  padding:28px 48px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
}
.footer a{color:#fff}
.footer .muted{color:#c8d2df}
.page-hero{
  background:linear-gradient(135deg,#071124,#0d294d);
  color:#fff;
  padding:80px 24px;
  text-align:center;
}
.page-hero h1{
  margin:0 0 10px;
  font-size:48px;
  letter-spacing:-1.6px;
}
.page-hero p{
  margin:0 auto;
  max-width:700px;
  color:#d4deec;
  line-height:1.7;
}
@media(max-width:1100px){
  .header{padding:0 22px}
  .nav{display:none}
  .menu-btn{display:block}
  .quote-btn{display:none}
  .hero-content{padding:50px 26px 0}
  .hero h1{font-size:58px}
  .booking{margin:-70px 18px 26px}
  .booking-grid{grid-template-columns:1fr 1fr}
  .benefits,.stats{grid-template-columns:1fr 1fr}
  .card-grid,.route-grid,.review-grid{grid-template-columns:1fr 1fr}
  .contact-wrap{grid-template-columns:1fr}
}
@media(max-width:720px){
  .header{height:74px}
  .brand-copy strong{font-size:20px}
  .brand img,.brand-mark{width:50px;height:50px}
  .icon-btn{display:none}
  .hero{min-height:640px}
  .hero-content{padding:38px 18px 0}
  .hero h1{font-size:43px;letter-spacing:-2px}
  .hero .lead{font-size:17px}
  .hero-actions{flex-direction:column;align-items:flex-start}
  .btn{width:100%;max-width:335px}
  .feature-row{gap:14px}
  .booking-grid,.benefits,.stats,.card-grid,.route-grid,.review-grid,.partner-row{grid-template-columns:1fr}
  .benefits{text-align:left}
  .stat:not(:last-child){border-right:0;border-bottom:1px solid var(--line)}
  .section{padding:44px 18px}
  .footer{padding:24px 18px;text-align:center}
}
