/* =========================================================
   DHARTI HOLIDAYS — design tokens
   Concept: the boarding pass / ticket stub — the one artifact
   everyone in the travel world recognizes. Package cards,
   nav, and section markers borrow its perforated edge,
   route-code typography, and dashed flight-path line.
   ========================================================= */

:root {
  --navy: #0B2545;
  --navy-deep: #071A33;
  --gold: #C9962B;
  --gold-light: #E4B84F;
  --red: #C4272B;
  --paper: #FAF6ED;
  --white: #FFFFFF;
  --ink: #1C2430;
  --slate: #5B6472;
  --line: #E4DCC8;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, sans-serif;
  --font-label: "Space Grotesk", monospace;

  --radius: 4px;
  --max-w: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

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

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

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

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
}

h2 { font-size: clamp(28px, 4vw, 42px); margin-top: 10px; }
h3 { font-size: 22px; }

p { color: var(--slate); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { box-shadow: 0 8px 20px rgba(201,150,43,0.35); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { box-shadow: 0 8px 20px rgba(11,37,69,0.25); }

/* ---------- Header / Nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,237,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; border-radius: 50%; }
.brand-text { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--navy); line-height: 1.1; }
.brand-text span { display: block; font-family: var(--font-label); font-size: 10px; letter-spacing: 0.16em; color: var(--gold); font-weight: 600; margin-top: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
}
.nav-links a:hover { color: var(--gold); }

/* Nav pill buttons */
.nav-pill {
  font-family: var(--font-label);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 14px 7px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--navy);
  white-space: nowrap;
  transition: all 0.15s ease;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.nav-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: color 0.15s ease;
}
.nav-pill-icon svg { width: 17px; height: 17px; }
.nav-pill-label { line-height: 1; }
.nav-pill:hover { border-color: var(--gold); background: var(--paper); color: var(--navy); transform: translateY(-1px); }
.nav-pill:hover .nav-pill-icon { color: var(--gold); }
.nav-pill-highlight {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep) !important;
  box-shadow: 0 4px 12px rgba(201,150,43,0.3);
}
.nav-pill-highlight .nav-pill-icon { color: var(--navy-deep); }
.nav-pill-highlight:hover { background: var(--gold-light); border-color: var(--gold-light); }
.nav-pill-highlight:hover .nav-pill-icon { color: var(--navy-deep); }

.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201,150,43,0.10), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(196,39,43,0.12), transparent 45%);
  color: var(--white);
  padding: 26px 0 30px;
  overflow: hidden;
  position: relative;
}
.hero .wrap { display: flex; flex-direction: column; gap: 18px; }
.hero-text-block { max-width: 100%; }
.hero-text-block .lead { max-width: 60ch; }
.hero-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.hero-eyebrow { color: var(--gold-light); margin-bottom: 2px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(20px, 2.7vw, 40px);
  margin: 6px 0 8px;
  white-space: nowrap;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero p.lead { color: rgba(255,255,255,0.72); font-size: 14.5px; max-width: 70ch; margin-bottom: 14px; line-height: 1.4; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .btn { padding: 10px 20px; font-size: 12.5px; }

/* boarding pass hero visual */
/* Hero flight search form — sits beside the boarding pass card */
.hero-flight-form {
  background: var(--paper);
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 20px 44px rgba(0,0,0,0.32);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.hero-form-trip-tabs { display: flex; gap: 6px; margin-bottom: 2px; }
.hero-trip-tab {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 16px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--slate);
  cursor: pointer;
  font-weight: 700;
}
.hero-trip-tab.active { border-color: var(--gold); background: var(--white); color: var(--navy); box-shadow: 0 2px 6px rgba(201,150,43,0.25); }

.hero-form-row { display: flex; align-items: flex-end; gap: 8px; }
.hero-form-field { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.hero-form-field label { font-family: var(--font-label); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate); font-weight: 700; }
.hero-form-field input {
  font-family: var(--font-body);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  outline: none;
  width: 100%;
}
.hero-form-field input:focus { border-color: var(--gold); }
.hero-swap-btn {
  background: var(--navy);
  color: var(--gold-light);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  flex-shrink: 0;
  margin-bottom: 1px;
}
.hero-swap-btn:hover { background: var(--navy-deep); }
.hero-search-btn { width: 100%; justify-content: center; padding: 10px; margin-top: 2px; font-size: 12.5px; }
.hero-form-note { font-family: var(--font-label); font-size: 9.5px; color: var(--slate); text-align: center; margin: 0; }

.pass {
  background: var(--paper);
  border-radius: 10px;
  color: var(--ink);
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  overflow: hidden;
}
.pass-top { padding: 14px 20px 10px; display: flex; justify-content: space-between; align-items: flex-start; }
.pass-brand { font-family: var(--font-label); font-size: 10px; letter-spacing: 0.14em; color: var(--slate); text-transform: uppercase; }
.pass-brand strong { display: block; font-family: var(--font-display); font-size: 14px; color: var(--navy); letter-spacing: 0; margin-top: 2px; }
.pass-class { font-family: var(--font-label); font-size: 10px; background: var(--gold); color: var(--navy-deep); padding: 3px 9px; border-radius: 3px; letter-spacing: 0.08em; font-weight: 700; }

.pass-route { display: flex; align-items: center; justify-content: space-between; padding: 4px 20px 12px; }
.pass-city { font-family: var(--font-display); font-size: 24px; color: var(--navy); font-weight: 600; }
.pass-city small { display: block; font-family: var(--font-label); font-size: 9px; color: var(--slate); letter-spacing: 0.1em; margin-top: 3px; }
.pass-path { flex: 1; margin: 0 12px; height: 1px; border-top: 1.5px dashed var(--gold); position: relative; }
.pass-path::after { content: "✈"; position: absolute; right: -2px; top: -10px; color: var(--gold); font-size: 14px; }

.pass-divider { border-top: 1.5px dashed var(--line); position: relative; margin: 0 0; }
.pass-divider::before, .pass-divider::after {
  content: ""; position: absolute; top: -10px; width: 20px; height: 20px; background: var(--navy); border-radius: 50%;
}
.pass-divider::before { left: -10px; }
.pass-divider::after { right: -10px; }

.pass-details { display: grid; grid-template-columns: repeat(3, 1fr); padding: 12px 20px; gap: 10px; }
.pass-details div span { display: block; font-family: var(--font-label); font-size: 8.5px; letter-spacing: 0.1em; color: var(--slate); text-transform: uppercase; margin-bottom: 3px; }
.pass-details div strong { font-family: var(--font-body); font-size: 12.5px; color: var(--navy); font-weight: 600; }

.pass-strip { background: var(--navy); color: rgba(255,255,255,0.6); font-family: var(--font-label); font-size: 9.5px; letter-spacing: 0.1em; text-align: center; padding: 8px; text-transform: uppercase; }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-label); font-size: 13px; color: var(--navy); letter-spacing: 0.02em; }
.trust-item strong { font-family: var(--font-display); font-size: 20px; color: var(--gold); margin-right: 2px; }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.section-head { max-width: 640px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 16px; }

/* Package search */
.pkg-search {
  position: relative;
  max-width: 460px;
  margin-bottom: 26px;
}
.pkg-search input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 40px 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}
.pkg-search input:focus { border-color: var(--gold); }
.pkg-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--slate);
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
}
.pkg-search-clear:hover { color: var(--red); }

/* No-match fallback */
.no-match {
  background: var(--paper);
  border: 1.5px dashed var(--gold);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.no-match h3 { margin-bottom: 10px; }
.no-match p { font-size: 14.5px; margin-bottom: 24px; }
.no-match-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Package tabs */
.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.tab-btn {
  font-family: var(--font-label);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--slate);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.15s ease;
}
.tab-btn.active, .tab-btn:hover { border-color: var(--gold); color: var(--navy); background: var(--paper); }

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

/* ticket-stub package card — the signature element */
.ticket {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}
.ticket:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(11,37,69,0.12); }
.ticket-head { padding: 20px 22px 16px; display: flex; justify-content: space-between; align-items: flex-start; }
.ticket-route { font-family: var(--font-display); font-size: 21px; color: var(--navy); font-weight: 600; }
.ticket-route small { display: block; font-family: var(--font-label); font-size: 10px; color: var(--slate); letter-spacing: 0.1em; margin-top: 3px; text-transform: uppercase; }
.ticket-tag { font-family: var(--font-label); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; background: var(--paper); color: var(--gold); border: 1px solid var(--gold); padding: 4px 9px; border-radius: 3px; font-weight: 700; }

.ticket-perf {
  border-top: 1.5px dashed var(--line);
  position: relative;
  margin: 0 22px;
}
.ticket-perf::before, .ticket-perf::after {
  content: ""; position: absolute; top: -9px; width: 18px; height: 18px; background: var(--white); border-radius: 50%; border: 1px solid var(--line);
}
.ticket-perf::before { left: -31px; }
.ticket-perf::after { right: -31px; }

.ticket-body { padding: 18px 22px; }
.ticket-body p { font-size: 14px; margin-bottom: 14px; }
.ticket-meta { display: flex; justify-content: space-between; font-family: var(--font-label); font-size: 11.5px; color: var(--slate); letter-spacing: 0.03em; margin-bottom: 16px; }
.ticket-meta strong { color: var(--navy); }
.ticket-foot { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; background: var(--paper); }
.ticket-price { font-family: var(--font-display); font-size: 19px; color: var(--navy); font-weight: 600; }
.ticket-price span { font-family: var(--font-label); font-size: 10px; color: var(--slate); display: block; text-transform: uppercase; letter-spacing: 0.08em; }
.ticket-link { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); font-weight: 700; border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-cell { background: var(--white); padding: 34px 26px; }
.service-num { font-family: var(--font-label); font-size: 11px; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 14px; }
.service-cell h3 { font-size: 18px; margin-bottom: 10px; }
.service-cell p { font-size: 14px; }
.service-links { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.service-links a { font-family: var(--font-label); font-size: 12px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--gold); }
.service-links a:hover { color: var(--navy); }

/* Why choose us */
.why { background: var(--navy); color: var(--white); }
.why .section-head p { color: rgba(255,255,255,0.65); }
.why h2 { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why-item { border-top: 2px solid var(--gold); padding-top: 18px; }
.why-item h3 { color: var(--white); font-size: 18px; margin-bottom: 8px; }
.why-item p { color: rgba(255,255,255,0.6); font-size: 14px; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card { background: var(--paper); border-radius: 8px; padding: 28px 26px; border-left: 3px solid var(--gold); }
.testi-card p.quote { color: var(--ink); font-size: 15px; font-style: italic; margin-bottom: 18px; }
.testi-name { font-family: var(--font-label); font-size: 12.5px; color: var(--navy); font-weight: 700; letter-spacing: 0.02em; }
.testi-loc { font-family: var(--font-label); font-size: 11px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.06em; }

/* Contact */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 17px; }
.contact-info-item h4 { font-size: 14px; color: var(--navy); margin-bottom: 4px; font-family: var(--font-body); font-weight: 700; }
.contact-info-item p { font-size: 14px; margin: 0; }
.contact-info-item a:hover { color: var(--gold); }

.map-frame { border-radius: 8px; overflow: hidden; margin-top: 20px; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 220px; border: 0; display: block; }

form.enquiry { background: var(--white); border-radius: 10px; padding: 36px; border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-family: var(--font-label); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate); font-weight: 600; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 90px; }
form.enquiry .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 12px; color: var(--slate); margin-top: 14px; text-align: center; }

/* Footer */
footer { background: var(--navy-deep); color: rgba(255,255,255,0.55); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr; gap: 40px; margin-bottom: 46px; }
.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.footer-brand img { width: 42px; height: 42px; border-radius: 50%; }
.footer-brand strong { font-family: var(--font-display); color: var(--white); font-size: 18px; }
.footer-col h4 { font-family: var(--font-label); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 13.5px; margin-bottom: 10px; color: rgba(255,255,255,0.55); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; font-size: 12.5px; flex-wrap: wrap; gap: 10px; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
  z-index: 200;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-panels { grid-template-columns: 1fr; }
  .pkg-grid.active { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: block; }
  header.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); flex-direction: column; padding: 20px 24px; gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .pkg-grid.active { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .trust .wrap { justify-content: flex-start; }
  section { padding: 60px 0; }
  .pass-details { grid-template-columns: 1fr 1fr; }
  .hero h1 { white-space: normal; font-size: clamp(24px, 6vw, 32px); }
}
