/* Vina Travel — lotus-led hospitality palette. */
:root {
  --red: #a8121b;
  --red-dark: #7f0d14;
  --gold: #c9972a;
  --gold-soft: #f3dca3;
  --ivory: #fffaf1;
  --paper: #fffdf8;
  --ink: #191715;
  --muted: #6e6259;
  --line: #e8ddd0;
  --jade: #0b7668;
  --shadow: 0 18px 50px rgba(48, 30, 20, .14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.logo {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 36px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, .92);
  border-bottom: 1px solid rgba(232, 221, 208, .82);
  backdrop-filter: blur(18px);
}
.nav .links { display: flex; gap: 22px; font-size: 15px; }
.nav .links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}
.nav .links a:hover { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.call {
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.lang {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--red);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 7px 14px;
}

.hero {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-photo {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 11, 8, .78), rgba(24, 11, 8, .28) 50%, rgba(24, 11, 8, .08)),
    linear-gradient(0deg, rgba(25, 15, 8, .24), rgba(25, 15, 8, 0));
}
.hero-copy {
  max-width: 680px;
  padding: 118px 36px 120px;
  position: relative;
  z-index: 1;
}
.eyebrow {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 660px;
}
.hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
  margin: 22px 0 30px;
  max-width: 560px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.cta {
  align-items: center;
  background: var(--red);
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  text-decoration: none;
}
.cta:hover { background: var(--red-dark); }
.cta.ghost {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .42);
  backdrop-filter: blur(12px);
}
.cta.wide { width: 100%; }
.trust-panel {
  align-items: stretch;
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 8px;
  bottom: 34px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  max-width: 560px;
  overflow: hidden;
  position: absolute;
  right: 36px;
  z-index: 2;
}
.trust-panel div {
  background: rgba(255, 250, 241, .8);
  padding: 18px 20px;
}
.trust-panel b { display: block; font-size: 24px; line-height: 1; }
.trust-panel span { color: var(--muted); display: block; font-size: 13px; margin-top: 5px; }

.route-strip {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto minmax(260px, 1.4fr);
  padding: 22px 36px;
}
.route-code {
  color: var(--gold-soft);
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.route-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  position: relative;
}
.route-line::after {
  background: var(--gold-soft);
  border-radius: 999px;
  content: "";
  height: 8px;
  position: absolute;
  right: 8%;
  top: -3px;
  width: 8px;
}
.route-note { color: rgba(255, 255, 255, .74); font-size: 14px; }

.feature,
.guide,
.quote,
.contact {
  padding: 72px 36px;
}
.feature {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
}
.feature-docs {
  background:
    radial-gradient(circle at 18% 15%, rgba(201, 151, 42, .16), transparent 30%),
    var(--ivory);
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
}
.feature-media img {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}
.feature-copy { max-width: 640px; }
.feature-copy .eyebrow,
.guide-copy .eyebrow,
.quote-intro .eyebrow,
.contact-panel .eyebrow {
  color: var(--red);
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: 0;
}
.feature-copy p:not(.eyebrow),
.guide-copy p,
.quote-intro p {
  color: var(--muted);
  font-size: 18px;
  margin-top: 16px;
}
.proof-grid,
.doc-list,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.proof-grid span,
.doc-list span,
.chips span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 13px;
}
.proof-grid span:first-child,
.chips span:first-child { border-color: rgba(11, 118, 104, .34); color: var(--jade); }

.guide {
  align-items: center;
  background: #fff;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
}
.guide img {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.quote {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .74), rgba(255, 250, 241, .94)),
    url("/assets/family-airport.jpg") center / cover fixed;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(280px, .7fr) minmax(340px, 680px);
}
.quote-intro {
  align-self: start;
  background: rgba(255, 253, 248, .88);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 8px;
  padding: 28px;
}
.quote-card {
  background: rgba(255, 253, 248, .96);
  border: 1px solid rgba(232, 221, 208, .82);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 28px;
}
.svc-toggle { display: flex; gap: 8px; margin-bottom: 18px; }
.svc-opt {
  background: #f5ede4;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  flex: 1;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  min-height: 44px;
  padding: 10px 12px;
}
.svc-opt.active {
  background: #fff;
  border-color: var(--red);
  color: var(--red);
}
#quote-form label {
  color: var(--ink);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 13px;
}
#quote-form label span { display: block; margin-bottom: 6px; }
#quote-form input,
#quote-form select,
#quote-form textarea {
  background: #f6f0e9;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}
#quote-form textarea { min-height: 96px; resize: vertical; }
#quote-form input:focus,
#quote-form select:focus,
#quote-form textarea:focus {
  background: #fff;
  border-color: var(--red);
  outline: none;
}
.split {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.split.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.rush-row {
  align-items: center;
  cursor: pointer;
  display: flex !important;
  gap: 10px;
}
.rush-row input { width: auto !important; }
.rush-row span { display: inline !important; margin: 0 !important; }
[hidden] { display: none !important; }
.qfoot {
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}
.status {
  font-size: 14px;
  margin-top: 10px;
  min-height: 1.4em;
  text-align: center;
}
.status.ok { color: #1f7a3d; font-weight: 800; }
.status.err { color: var(--red); font-weight: 800; }
button:disabled { cursor: not-allowed; opacity: .55; }

.contact {
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 580px);
}
.contact > img {
  align-self: stretch;
  border-radius: 8px;
  min-height: 480px;
  object-fit: cover;
  width: 100%;
}
.contact-panel {
  align-self: center;
  max-width: 620px;
}
.contact-panel h2 { color: #fff; }
.contact-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}
.contact-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  color: #fff;
  display: block;
  min-height: 96px;
  padding: 18px;
  text-decoration: none;
}
a.contact-card:hover { border-color: rgba(243, 220, 163, .8); }
.contact-card b { display: block; font-size: 18px; line-height: 1.2; }
.contact-card span {
  color: rgba(255, 255, 255, .72);
  display: block;
  font-size: 13px;
  margin-top: 8px;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  padding: 30px 36px 42px;
  text-align: center;
}
.footer .logo { display: inline-block; margin-bottom: 8px; }
.foot-call { margin: 8px 0; }
.foot-call a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}
.footer nav { margin-top: 10px; }
.footer a { color: var(--muted); }

/* doc pages (privacy/support) */
.doc {
  margin: 0 auto;
  max-width: 760px;
  padding: 34px 24px 70px;
}
.doc h1 { font-size: 30px; margin: 18px 0 6px; }
.doc h2 { font-size: 20px; margin: 24px 0 8px; }
.doc p,
.doc li { color: #3a3a3c; font-size: 15px; margin-bottom: 8px; }
.doc ul { padding-left: 22px; }
.doc .muted { color: var(--muted); font-size: 13px; }
.doc a { color: var(--red); }

@media (max-width: 1020px) {
  .nav { padding: 13px 20px; }
  .nav .links { display: none; }
  .hero { min-height: 610px; }
  .hero-copy { padding: 88px 22px 170px; }
  .hero h1 { font-size: 48px; }
  .trust-panel {
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: none;
  }
  .route-strip,
  .feature,
  .feature-docs,
  .guide,
  .quote,
  .contact {
    grid-template-columns: 1fr;
  }
  .route-strip { padding: 20px; }
  .feature,
  .guide,
  .quote,
  .contact { padding: 52px 20px; }
  .feature-docs .feature-media { order: -1; }
  .quote { background-attachment: scroll; }
}

@media (max-width: 640px) {
  .call span { display: none; }
  .hero { min-height: 680px; }
  .hero-photo { object-position: 62% center; }
  .hero h1 { font-size: 38px; }
  .hero-copy p:not(.eyebrow) { font-size: 17px; }
  .hero-cta { align-items: stretch; flex-direction: column; }
  .trust-panel {
    grid-template-columns: 1fr;
  }
  .route-strip {
    grid-template-columns: 1fr;
  }
  .route-line { min-height: 28px; width: 1px; }
  h2 { font-size: 31px; }
  .split,
  .split.three,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .svc-toggle { flex-direction: column; }
  .contact > img { min-height: 320px; }
}

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