/* Guanashuttle — static rebuild. Design faithful to the live site:
   Poppins, orange CTA #DC834E, forest-green brand, white cards, navy headings. */

:root {
  --orange: #DC834E;       /* primary CTA / brand action (from live computed styles) */
  --orange-dark: #c9703b;
  --green: #2E7D46;        /* logo / brand accent */
  --green-dark: #256237;
  --navy: #202F59;         /* headings / strong text */
  --ink: #2b2f36;
  --body: #5b6068;         /* body copy */
  --muted: #8a9099;
  --line: #e6e8ec;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-hero-tint: rgba(16, 24, 40, .46);
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 10px 30px rgba(16, 24, 40, .08);
  --shadow-lg: 0 24px 60px rgba(16, 24, 40, .16);
  --wrap: 1160px;
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--body);
  font-size: 16px; line-height: 1.65; background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { color: var(--navy); font-weight: 700; line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2rem, 5vw, 2.9rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -.01em; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
img { max-width: 100%; display: block; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 600; color: var(--orange); margin: 0 0 10px; }
.muted { color: var(--muted); }
.section { padding: clamp(48px, 7vw, 88px) 0; }
.center { text-align: center; }
.lede { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--body); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 14px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: .18s ease; white-space: nowrap; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-1px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 28px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; color: var(--navy); }
.brand img { width: 46px; height: 46px; }
.brand b { font-size: 1.12rem; letter-spacing: -.01em; }
.brand span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .97rem; }
.nav-links a:hover { color: var(--orange); }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); }
.nav-phone:hover { color: var(--orange); }
.lang { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang a { padding: 5px 11px; font-size: .82rem; font-weight: 600; color: var(--muted); }
.lang a.on { background: var(--orange); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; margin-left: 12px; }

/* Hero */
.hero { position: relative; color: #fff; }
.hero-media { position: absolute; inset: 0; background: #1a2233 center/cover no-repeat; }
.hero-media::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,24,40,.35) 0%, rgba(16,24,40,.55) 100%); }
.hero-inner { position: relative; z-index: 2; padding: clamp(70px, 12vw, 150px) 0 clamp(120px, 14vw, 180px); }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.hero-inner > p { color: rgba(255,255,255,.94); font-size: clamp(1.05rem,2vw,1.28rem); max-width: 46ch; margin-top: 14px; }
.hero .fare-empty { color: rgba(255,255,255,.92); text-shadow: 0 1px 10px rgba(0,0,0,.3); }

/* Search widget (Find Your Route) */
.search { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 12px; display: grid; grid-template-columns: 1fr 1fr 1fr .8fr auto; gap: 6px; align-items: stretch; }
.hero .search { position: relative; z-index: 3; margin-top: clamp(28px, 5vw, 44px); max-width: 1000px; }
.search-field { display: flex; align-items: center; gap: 11px; padding: 12px 16px; border-radius: 12px; }
.search-field + .search-field { border-left: 1px solid var(--line); }
.search-ico { color: var(--orange); flex: none; }
.search-field label { display: block; font-size: .74rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; }
.search-field select, .search-field input {
  border: 0; outline: 0; font-family: var(--font); font-size: .98rem; color: var(--ink);
  background: transparent; width: 100%; padding: 2px 0 0; font-weight: 500; }
.search-field select:disabled { color: var(--muted); }
.search .btn { border-radius: 12px; }
@media (max-width: 860px) {
  .search { grid-template-columns: 1fr 1fr; }
  .search-field + .search-field { border-left: 0; }
  .search .btn-search { grid-column: 1 / -1; }
}
@media (max-width: 520px) { .search { grid-template-columns: 1fr; } }

/* Fare result */
.fare-result { margin-top: 18px; }
.fare-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px 24px; display: flex; flex-wrap: wrap; align-items: center;
  gap: 18px 26px; justify-content: space-between; }
.fare-leg { font-size: 1.15rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 12px; }
.fare-leg em { color: var(--orange); font-style: normal; }
.fare-price { font-size: 1.9rem; font-weight: 700; color: var(--navy); }
.fare-price small { font-size: .8rem; font-weight: 500; color: var(--muted); }
.fare-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.fare-note { color: var(--muted); font-size: .86rem; margin: 12px 2px 0; }
.fare-empty { color: var(--muted); }

/* Feature row */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.feature .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(220,131,78,.12);
  color: var(--orange); display: grid; place-items: center; margin-bottom: 14px; }
.feature h3 { margin-bottom: 6px; }
.feature p { margin: 0; font-size: .93rem; }
@media (max-width: 820px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features { grid-template-columns: 1fr; } }

/* Quote / testimonial */
.quote { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: clamp(30px,5vw,54px); text-align: center; }
.quote p { font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 500; color: #fff; max-width: 40ch; margin: 0 auto 14px; line-height: 1.4; }
.quote cite { color: var(--orange); font-style: normal; font-weight: 600; }

/* Routes index */
.route-search-bar { display: flex; gap: 10px; flex-wrap: wrap; margin: 8px 0 26px; }
.route-search-bar input { flex: 1; min-width: 220px; padding: 13px 16px; border: 1.5px solid var(--line);
  border-radius: 12px; font-family: var(--font); font-size: 1rem; }
.route-search-bar input:focus { outline: 0; border-color: var(--orange); }
.route-groups { display: grid; gap: 26px; }
.route-group h3 { color: var(--navy); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--line); }
.route-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 10px; }
.route-item { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; background: #fff; transition: .15s; }
.route-item:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-1px); }
.route-item .to { color: var(--ink); font-weight: 500; }
.route-item .pr { color: var(--navy); font-weight: 700; white-space: nowrap; }
.route-item .pr small { color: var(--muted); font-weight: 500; }

/* About */
.about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 44px; align-items: start; }
.about-photo { margin: 0; }
.about-photo img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-photo figcaption { margin-top: 12px; font-size: .86rem; color: var(--muted); text-align: center; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 28px; } .about-photo { max-width: 420px; } }

/* Route detail page */
.route-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 40px 0 30px; }
.crumbs { font-size: .86rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); } .crumbs a:hover { color: var(--orange); }
.route-meta { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 18px; }
.route-meta .m span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.route-meta .m b { font-size: 1.15rem; color: var(--navy); }
.route-meta .m .price { color: var(--orange); }
.route-body { display: grid; grid-template-columns: 1fr 380px; gap: 44px; align-items: start; padding: 48px 0; }
.route-body .prose p { color: var(--body); }
.route-body h2 { margin-bottom: 14px; }
@media (max-width: 900px) { .route-body { grid-template-columns: 1fr; } }

/* Booking card */
.book { position: sticky; top: 92px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 24px; }
.book .book-top { border-top: 4px solid var(--orange); border-radius: 4px; margin: -24px -24px 18px; padding: 20px 24px 0; }
.book h3 { margin-bottom: 4px; }
.book-field { margin-top: 14px; }
.book-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.book-field input, .book-field select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; font-family: var(--font); font-size: 1rem; color: var(--ink); }
.book-field input:focus, .book-field select:focus { outline: 0; border-color: var(--orange); }
.book-total { display: flex; justify-content: space-between; align-items: baseline; margin: 20px 0 6px;
  padding-top: 16px; border-top: 1px dashed var(--line); }
.book-total span { color: var(--muted); font-weight: 600; }
.book-total b { font-size: 1.7rem; color: var(--navy); }
.book-lines { font-size: .84rem; color: var(--muted); }
.book-lines div { display: flex; justify-content: space-between; padding: 2px 0; }
.book-actions { margin-top: 16px; display: grid; gap: 9px; }
#paypal-buttons { margin-top: 4px; min-height: 0; }
.book-note { font-size: .8rem; color: var(--muted); margin-top: 12px; text-align: center; }

/* FAQ accordion */
.faq { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--orange); font-weight: 400; line-height: 1; flex: none; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-a { padding: 16px 22px 20px; }
.faq-a p { margin: 0; color: var(--body); }

/* Legal / terms */
.prose.legal h2 { font-size: 1.15rem; margin: 28px 0 8px; }
.prose.legal p { color: var(--body); font-size: .96rem; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 56px 0 28px; margin-top: 20px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--orange); }
.foot-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.foot-brand img { width: 52px; }
.foot-brand b { color: #fff; font-size: 1.1rem; }
.foot-links { display: grid; gap: 9px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .84rem; }
.foot-bottom .sig { color: rgba(255,255,255,.55); }
.foot-bottom .sig b { color: var(--orange); }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }

/* Mobile nav */
@media (max-width: 900px) {
  .nav-links { position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: flex-start;
    background: #fff; padding: 18px 22px; gap: 16px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-120%); transition: .25s; margin-left: 0; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-phone-top { margin-left: auto; }
}
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 56px; height: 56px;
  border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-lg); }
.wa-float:hover { color: #fff; transform: scale(1.05); }
