@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #f5f7f9;
  --surface: #ffffff;
  --surface-2: #eaf0f6;
  --ink: #0f1720;
  --muted: #5d6876;
  --green: #0a4372;
  --green-2: #1c6ca8;
  --gold: #c8a96a;
  --line: rgba(10, 67, 114, 0.12);
  --shadow: 0 24px 60px rgba(10, 43, 72, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #f6f8fa;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-shell {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(245, 247, 249, 0.92);
  border-bottom: 1px solid rgba(10, 67, 114, 0.1);
}

.site-header__inner {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.logo {
    width: auto;
    height: 52px;
    max-width: 150px;
    object-fit: contain;
    flex-shrink: 0;
}
.logo--footer {
    height: 44px;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a[aria-current="page"], .site-nav a:hover { color: var(--green); }

.site-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn, .site-btn, .sticky-book, .whatsapp-fab {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}
.btn:hover, .site-btn:hover, .sticky-book:hover, .whatsapp-fab:hover { transform: translateY(-1px); }

.btn-primary, .site-btn, .sticky-book {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 30px rgba(15, 95, 60, 0.24);
  font-weight: 700;
}
.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}
.btn {
  min-height: 52px;
  padding: 0.85rem 1.35rem;
}
.btn-sm {
  min-height: 44px;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.mobile-panel {
  display: none;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 1rem;
}
.mobile-panel a { display: block; padding: 0.75rem 0; text-decoration: none; color: var(--muted); font-weight: 600; }
.mobile-panel.is-open { display: block; }

.hero {
    position: relative;
    min-height: 100vh;

    background-image: url('../assets/SUV.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}
.hero__card, .panel, .content-card, .fleet-card, .tour-card, .info-card, .booking-card, .section-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(15,23,32,0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.hero__copy {
  padding: 1rem 0;
}
.eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.hero .eyebrow { color: #d9b96a; }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,0.88); }
.hero h1, .section-title {
  letter-spacing: -0.05em;
  margin: 0.65rem 0 0;
  line-height: 0.98;
}
.hero h1 { font-size: clamp(2.8rem, 6vw, 5.8rem); max-width: 11ch; }
.lead {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 60ch;
}
.hero__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.4rem; }

.hero__visual {
  min-height: 600px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: url("https://commons.wikimedia.org/wiki/Special:FilePath/Hunza-Valley.jpg?width=1400") center/cover no-repeat;
}
.hero__stats {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat {
  padding: 0.95rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.stat strong { display: block; font-size: 1.1rem; }
.stat span { color: rgba(255,255,255,0.78); font-size: 0.86rem; }

.section {
  padding: 4.5rem 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.section-title { font-size: clamp(2rem, 3.5vw, 3.4rem); }
.section-copy { color: var(--muted); max-width: 58ch; line-height: 1.75; }

.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.content-card, .info-card, .fleet-card, .tour-card, .booking-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.fleet-card, .tour-card { transition: transform 180ms ease, box-shadow 180ms ease; }
.fleet-card:hover, .tour-card:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(15, 23, 32, 0.12); }
.fleet-card:hover .card-media img, .tour-card:hover .card-media img { transform: scale(1.03); }

.card-media { aspect-ratio: 4 / 3; background: var(--surface-2); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 220ms ease; }
.card-body { padding: 1.15rem; }
.meta { color: var(--green); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.card-body h3, .card-body h4 { margin: 0.5rem 0; font-size: 1.15rem; }
.card-body p { color: var(--muted); line-height: 1.7; }

.feature-list, .bullet-list { padding: 0; margin: 0.9rem 0 0; list-style: none; }
.feature-list li, .bullet-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0.45rem 0;
  color: var(--muted);
}
.feature-list li::before, .bullet-list li::before {
  content: "•";
  color: var(--gold);
  font-weight: 900;
}

.booking-card { padding: 1.25rem; }
.booking-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.75rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.82rem; font-weight: 700; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15,23,32,0.12);
  padding: 0.95rem 1rem;
  font: inherit;
  background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: center;
}

.badge-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1rem; }
.badge {
  border: 1px solid rgba(15,23,32,0.1);
  background: #fff;
  color: var(--muted);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.filter-btn {
  border: 1px solid rgba(15,23,32,0.1);
  background: #fff;
  color: var(--muted);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.filter-btn.is-active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.footer {
  margin-top: 4.5rem;
  background: #0a1c2e;
  color: #d9e2ea;
}
.footer__top, .footer__bottom {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}
.footer__top {
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.25rem;
}
.footer h3 { margin: 0 0 0.9rem; color: #fff; }
.footer a { color: #b6c6bb; text-decoration: none; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0 1.4rem;
  color: #95a899;
  font-size: 0.92rem;
}

.sticky-book {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  padding: 0.95rem 1.15rem;
}
.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 5.2rem;
  z-index: 70;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.3);
}

.section-divider {
  height: 1px;
  background: rgba(15,23,32,0.12);
}

.page-hero {
  padding: 4rem 0 2rem;
}
.page-hero__panel {
  border-radius: 32px;
  padding: 2rem;
  background: #0d2c47;
  color: #fff;
  box-shadow: var(--shadow);
}
.page-hero__panel p { color: rgba(255,255,255,0.82); max-width: 66ch; line-height: 1.8; }

.tour-hero {
  border-radius: 30px;
  overflow: hidden;
  min-height: 430px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.tour-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(6, 14, 24, 0.35);
}
.tour-hero__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem;
  color: #fff;
  z-index: 1;
}

.section-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 1024px) {
  .hero__grid, .split, .footer__top, .grid-4, .grid-3, .booking-grid, .section-form { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 840px) {
  .site-nav, .site-actions { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .hero__grid, .split, .grid-2, .grid-3, .grid-4, .booking-grid, .section-form, .footer__top { grid-template-columns: 1fr; }
  .hero__visual { min-height: 420px; }
  .hero { padding-top: 2rem; }
  .section-head { align-items: start; flex-direction: column; }
}
@media (max-width: 560px) {
  .site-header__inner, .site-shell, .footer__top, .footer__bottom { width: min(var(--container), calc(100% - 1rem)); }
  .hero h1 { max-width: 100%; }
  .hero__stats { grid-template-columns: 1fr; }
  .sticky-book { left: 1rem; right: 1rem; bottom: 1rem; }
  .whatsapp-fab { bottom: 5.25rem; }
}
/* Hero Slideshow */

.hero {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    border-radius: 30px;
}


.slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: white;
    z-index: 2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg, rgba(6, 16, 28, 0.86) 0%, rgba(6, 16, 28, 0.68) 38%, rgba(6, 16, 28, 0.38) 68%, rgba(6, 16, 28, 0.18) 100%);
}