/* ===== Design tokens ===== */
:root {
  --saffron: #f97316;
  --saffron-dark: #ea580c;
  --ink: #1c2434;
  --ink-soft: #4b5563;
  --teal: #0f766e;
  --cream: #fff7ed;
  --bg: #ffffff;
  --bg-alt: #fbf6ef;
  --line: #ece4d8;
  --shadow: 0 18px 40px -18px rgba(28, 36, 52, 0.25);
  --radius: 16px;
  --maxw: 1160px;
  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--bg); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-family: var(--font-head);
  font-size: 0.95rem; cursor: pointer; border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary { background: var(--saffron); color: #fff; box-shadow: 0 10px 22px -10px rgba(249,115,22,.7); }
.btn--primary:hover { background: var(--saffron-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--saffron); color: var(--saffron-dark); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); }
.btn--block { width: 100%; margin-top: 14px; }

/* ===== Topbar ===== */
.topbar { background: var(--ink); color: #e7ecf5; font-size: 0.85rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; padding: 9px 20px; flex-wrap: wrap; gap: 8px; }
.topbar__contact { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 7px; color: #e7ecf5; }
.topbar__contact a:hover { color: var(--saffron); }
.topbar__note { color: #b9c2d4; }

/* ===== Header ===== */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__logo { height: 78px; width: auto; display: block; }
.brand__logo--footer { height: 90px; }
.brand__mark { width: 44px; height: 44px; border-radius: 12px; background: var(--saffron); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 18px -8px rgba(249,115,22,.8); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: var(--font-head); font-size: 1.25rem; color: var(--ink); }
.brand__text small { font-size: 0.72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--saffron-dark); font-weight: 600; }

.nav { display: flex; gap: 26px; }
.nav a { font-weight: 500; color: var(--ink-soft); font-size: 0.96rem; position: relative; }
.nav a:hover { color: var(--ink); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--saffron); transition: width .25s ease; }
.nav a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero { background: linear-gradient(180deg, var(--cream), #fff); padding: 70px 0 90px; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px; align-items: center; }
.pill { display: inline-block; background: #fff; border: 1px solid var(--line); color: var(--saffron-dark); padding: 7px 16px; border-radius: 999px; font-weight: 600; font-size: 0.85rem; box-shadow: var(--shadow); }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; margin: 22px 0 18px; }
.hero h1 span { color: var(--saffron); }
.hero__content > p { color: var(--ink-soft); font-size: 1.08rem; max-width: 520px; }
.hero__actions { display: flex; gap: 14px; margin: 30px 0 36px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero__stats strong { font-family: var(--font-head); font-size: 1.7rem; color: var(--ink); display: block; }
.hero__stats span { color: var(--ink-soft); font-size: 0.9rem; }

.hero__media { position: relative; }
.hero__media img { border-radius: 24px; box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.hero__badge { position: absolute; left: 18px; bottom: 18px; background: #fff; padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow); }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.2); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } }

/* ===== Booking bar ===== */
.book { margin-top: -50px; position: relative; z-index: 5; }
.book__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 14px; align-items: end; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select { padding: 11px 13px; border: 1px solid var(--line); border-radius: 10px; font-family: var(--font-body); font-size: 0.95rem; background: #fff; color: var(--ink); }
.field input:focus, .field select:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(249,115,22,.15); }
.book__submit { height: 46px; white-space: nowrap; }
.book__msg { margin-top: 14px; color: var(--teal); font-weight: 600; min-height: 1.2em; text-align: center; }

/* ===== Sections ===== */
.section { padding: 86px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.eyebrow { color: var(--saffron-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: 0.8rem; }
.section__head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; margin: 12px 0; }
.section__head p { color: var(--ink-soft); }

.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

/* Services */
.service { padding: 30px 26px; }
.service__icon { width: 56px; height: 56px; border-radius: 14px; background: var(--cream); color: var(--saffron-dark); display: grid; place-items: center; margin-bottom: 18px; }
.service h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service p { color: var(--ink-soft); font-size: 0.95rem; }

/* Fleet */
.fleet { overflow: hidden; }
.fleet__img { aspect-ratio: 16/11; overflow: hidden; background: var(--bg-alt); }
.fleet__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.fleet:hover .fleet__img img { transform: scale(1.06); }
.fleet__body { padding: 20px 22px 24px; }
.tag { display: inline-block; background: var(--cream); color: var(--saffron-dark); font-weight: 600; font-size: 0.75rem; padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .06em; }
.fleet__body h3 { margin: 12px 0 6px; font-size: 1.25rem; }
.fleet__body p { color: var(--ink-soft); font-size: 0.92rem; }
.fleet__meta { display: flex; justify-content: space-between; margin-top: 14px; font-weight: 600; color: var(--ink); font-size: 0.92rem; }

/* Destinations */
.dest { position: relative; border-radius: var(--radius); overflow: hidden; display: block; box-shadow: var(--shadow); }
.dest img { aspect-ratio: 4/5; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest:hover img { transform: scale(1.08); }
.dest__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; color: #fff; background: linear-gradient(180deg, transparent 35%, rgba(20,26,40,.85)); }
.dest__overlay h3 { color: #fff; font-size: 1.25rem; }
.dest__overlay p { color: #ffd9b8; font-weight: 600; font-size: 0.9rem; }

/* Why us */
.why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.why__media img { border-radius: 24px; box-shadow: var(--shadow); }
.why__content h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: 12px 0 24px; }
.why__list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.why__list li { display: flex; gap: 14px; }
.why__ico { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--saffron); color: #fff; display: grid; place-items: center; font-weight: 700; }
.why__list strong { font-family: var(--font-head); }
.why__list p { color: var(--ink-soft); font-size: 0.94rem; }

/* Reviews */
.review { padding: 28px 26px; }
.stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 12px; }
.review blockquote { font-style: italic; color: var(--ink-soft); margin-bottom: 16px; }
.review figcaption { font-weight: 700; font-family: var(--font-head); color: var(--ink); }

/* CTA */
.cta { background: var(--ink); color: #fff; padding: 56px 0; }
.cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta p { color: #b9c2d4; margin-top: 8px; }
.cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Footer */
.footer { background: #14182a; color: #c5ccdb; padding: 60px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 44px; }
.brand--footer .brand__text strong, .footer h4 { color: #fff; }
.footer__about { margin-top: 14px; font-size: 0.92rem; max-width: 300px; }
.footer__col h4 { margin-bottom: 16px; font-size: 1.05rem; }
.footer__col a, .footer__col p { display: block; color: #c5ccdb; margin-bottom: 10px; font-size: 0.92rem; }
.footer__col a:hover { color: var(--saffron); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; text-align: center; font-size: 0.86rem; color: #8d96aa; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .why__inner { grid-template-columns: 1fr; }
  .why__media { order: -1; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .book__form { grid-template-columns: repeat(2, 1fr); }
  .book__submit { grid-column: 1 / -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    height: 100dvh;
    width: min(78vw, 320px);
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 90px 28px;
    gap: 22px;
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
    transform: translateX(110%);
    transition: transform .28s ease, opacity .2s ease;
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    will-change: transform;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle { display: flex; z-index: 61; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header__cta { display: none; }
  .topbar__note { display: none; }
}

@media (max-width: 560px) {
  .grid--3 { grid-template-columns: 1fr; }
  .book__form { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
}
