:root {
  --navy: #0B2545;
  --navy-soft: #13335E;
  --gold: #E29B3A;
  --gold-soft: #F4C76B;
  --cream: #F7F4EE;
  --muted: #5A6478;
  --line: #E6E2D9;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-weight: 600; }

p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------ Header (dark, matches logo) ------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.nav .logo img {
  height: 72px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ------------ Buttons ------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-soft);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -12px rgba(11, 37, 69, 0.4);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -12px rgba(226, 155, 58, 0.5);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -12px rgba(37, 211, 102, 0.5);
}

/* ------------ Lang switch (on dark header) ------------ */
.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.lang-switch button {
  background: transparent;
  border: 0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.2s;
}
.lang-switch button:hover { color: #fff; }
.lang-switch button.active {
  background: var(--gold);
  color: #0B0B0B;
}

/* ------------ Hero ------------ */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(244, 199, 107, 0.18), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(11, 37, 69, 0.05), transparent 70%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 37, 69, 0.06);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

.hero h1 .gold { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 24px 0 36px;
  max-width: 540px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stats .stat strong {
  display: block;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 2rem;
  color: var(--navy);
}
.hero-stats .stat span { font-size: 0.85rem; color: var(--muted); }

/* hero card visual */
.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow:
    0 30px 80px -30px rgba(11, 37, 69, 0.25),
    0 10px 30px -15px rgba(11, 37, 69, 0.1);
  position: relative;
}

.hero-card-img {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 20px;
}

.hero-card .route {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.hero-card .route + .route { border-top: 1px solid var(--line); }
.hero-card .route .pin { width: 36px; height: 36px; border-radius: 50%; background: rgba(226, 155, 58, 0.12); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.hero-card .route .meta { flex: 1; }
.hero-card .route .meta b { display: block; font-size: 0.95rem; color: var(--navy); }
.hero-card .route .meta span { font-size: 0.8rem; color: var(--muted); }
.hero-card .route .price {
  display: flex; flex-direction: column; align-items: flex-end;
  line-height: 1.05; gap: 2px;
}
.hero-card .route .price .from-tag {
  font-size: 0.6rem; color: var(--gold); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.hero-card .route .price .amount {
  font-weight: 700; color: var(--navy); font-size: 1rem;
  font-family: 'Outfit', sans-serif;
}

/* ------------ Sections ------------ */
.section { padding: 100px 0; }
.section-title { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-eyebrow { color: var(--gold); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }

/* ------------ Services ------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -25px rgba(11, 37, 69, 0.2);
  border-color: var(--gold);
}
.service-card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--navy);
}

/* ------------ Routes ------------ */
.routes-section { background: var(--cream); }
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.route-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -25px rgba(11, 37, 69, 0.25);
}
.route-card .img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.route-card .body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.route-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.route-card .duration { font-size: 0.85rem; color: var(--muted); margin-bottom: 12px; }
.route-card .r-footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--line);
  background: transparent;
}
.route-card .price {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1;
}
.route-card .price .from-label {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}
.route-card .price .amount {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.7rem;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.route-card .arrow {
  color: var(--gold); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding-bottom: 4px;
}

/* ------------ Booking ------------ */
.booking-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.booking-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 30px 80px -40px rgba(11, 37, 69, 0.25);
  border: 1px solid var(--line);
  max-width: 880px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--navy);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(226, 155, 58, 0.15);
}
.field textarea { resize: vertical; min-height: 90px; }

.submit-row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.submit-note { font-size: 0.85rem; color: var(--muted); }

/* ------------ Why ------------ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 24px;
}
.why-card .icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(226, 155, 58, 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
}

/* ------------ SEO content ------------ */
.seo-section { background: #fff; padding: 100px 0; }
.seo-intro { max-width: 820px; margin: 0 auto 80px; text-align: center; }
.seo-intro h2 { margin-bottom: 24px; }
.seo-intro p { font-size: 1.05rem; line-height: 1.75; color: var(--muted); }
.seo-intro p + p { margin-top: 16px; }

.seo-destinations h2 { text-align: center; margin-bottom: 16px; }
.seo-destinations .lead { text-align: center; max-width: 720px; margin: 0 auto 48px; color: var(--muted); }

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin-bottom: 80px;
}
.seo-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--navy);
  position: relative;
  padding-left: 18px;
}
.seo-item h3::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.seo-item p { color: var(--muted); line-height: 1.7; font-size: 0.96rem; }

.seo-howit h2 { text-align: center; margin-bottom: 48px; }
.howit-list {
  counter-reset: howit;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.howit-list li {
  counter-increment: howit;
  background: var(--cream);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  border: 1px solid var(--line);
}
.howit-list li::before {
  content: counter(howit);
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 2.4rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
}
.howit-list h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.howit-list p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin: 0; }

@media (max-width: 960px) {
  .seo-grid { grid-template-columns: 1fr; gap: 24px; }
  .howit-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .howit-list { grid-template-columns: 1fr; }
  .seo-section { padding: 60px 0; }
  .seo-intro { margin-bottom: 56px; }
  .seo-grid { margin-bottom: 56px; }
}

/* ------------ FAQ ------------ */
.faq-section { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}
.faq-q .plus { color: var(--gold); font-size: 1.4rem; transition: transform 0.2s; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.3s; color: var(--muted); }
.faq-item.open .faq-a { padding: 0 24px 22px; max-height: 400px; }

/* ------------ CTA ------------ */
.cta-section {
  background: var(--navy);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(244, 199, 107, 0.18), transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255, 255, 255, 0.7); }
.cta-section .container { position: relative; }

/* ------------ Footer ------------ */
.footer {
  background: #08182F;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; font-size: 0.9rem; }
.footer a:hover { color: var(--gold); }
.footer .brand-tag { font-size: 0.9rem; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ------------ Floating WhatsApp ------------ */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 100;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 32px; height: 32px; }

/* ------------ Mobile ------------ */
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.2s; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .routes-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; position: absolute; top: 96px; left: 0; right: 0; background: rgba(0,0,0,0.96); flex-direction: column; padding: 24px; gap: 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-actions .btn { display: none; }
  .nav-actions .lang-switch { padding: 2px; }
  .nav-actions .lang-switch button { padding: 4px 7px; font-size: 0.7rem; }
  .section { padding: 60px 0; }
  .hero { padding: 60px 0 40px; }
  .services-grid, .routes-grid, .why-grid { grid-template-columns: 1fr; }
  .booking-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero h1 { font-size: 2.1rem; line-height: 1.2; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .hero-card { padding: 22px; }
  .hero-card-img { height: 200px; }
  .booking-card { padding: 22px 18px; }
  .submit-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .submit-row .btn { justify-content: center; }
  .container { padding: 0 18px; }
  .float-wa { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .float-wa svg { width: 28px; height: 28px; }
}

/* Tiny phones — iPhone SE / older Android */
@media (max-width: 420px) {
  .nav { height: 80px; }
  .nav .logo img { height: 60px; }
  .nav-links { top: 80px !important; }
  .nav-actions { gap: 6px; }
  .nav-actions .lang-switch { padding: 2px; }
  .nav-actions .lang-switch button { padding: 3px 5px; font-size: 0.62rem; letter-spacing: 0; }
  .hero h1 { font-size: 1.85rem; }
  .hero-eyebrow { font-size: 0.75rem; padding: 6px 12px; }
  .hero-stats { flex-wrap: wrap; gap: 16px 24px; }
  .hero-stats .stat strong { font-size: 1.6rem; }
  h2 { font-size: 1.7rem !important; }
  .hero-card { padding: 18px; }
  .hero-card-img { height: 170px; }
  .hero-card .route .meta b { font-size: 0.88rem; }
  .hero-card .route .meta span { font-size: 0.74rem; }
  .service-card { padding: 24px 22px; }
  .why-card { padding: 20px 14px; }
  .booking-card { padding: 20px 14px; border-radius: 18px; }
  .field input, .field select, .field textarea { font-size: 1rem; padding: 12px 12px; }
  .route-card .img { height: 160px; }
  .footer { padding: 48px 0 22px; }
  .footer-bottom { font-size: 0.78rem; }
  .seo-section { padding: 60px 0; }
  .seo-intro { margin-bottom: 40px; }
  .seo-intro h2 { font-size: 1.6rem; }
  .seo-intro p { font-size: 0.96rem; }
  .seo-item h3 { font-size: 1.08rem; padding-left: 14px; }
  .seo-item p { font-size: 0.9rem; }
  .howit-list li { padding: 22px; }
  .howit-list li::before { font-size: 2rem; top: 14px; right: 18px; }
  .faq-q { padding: 18px 20px; font-size: 0.92rem; }
  .faq-item.open .faq-a { padding: 0 20px 20px; }
}
