﻿:root {
  --bg: #f4f6f9;
  --bg-soft: #eef2f7;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --line: #d8e0eb;
  --line-strong: #c6d1df;
  --text: #192536;
  --muted: #627287;
  --accent: #1f3650;
  --accent-strong: #122339;
  --accent-soft: #e8eef6;
  --accent-soft-strong: #d8e2ef;
  --whatsapp: #25d366;
  --whatsapp-dark: #149e47;
  --shadow: 0 18px 40px rgba(18, 35, 57, 0.08);
  --shadow-soft: 0 10px 24px rgba(18, 35, 57, 0.05);
  --radius: 24px;
  --radius-sm: 18px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background:
    radial-gradient(circle at top right, rgba(31, 54, 80, 0.08), transparent 24%),
    linear-gradient(180deg, #fafbfd 0%, #f4f6f9 48%, #eef2f7 100%);
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg { max-width: 100%; }

.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.glass {
  background: var(--surface);
  border: 1px solid rgba(216, 224, 235, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 246, 249, 0.96);
  border-bottom: 1px solid rgba(216, 224, 235, 0.95);
  box-shadow: 0 10px 26px rgba(18, 35, 57, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  justify-self: end;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #36506d);
  box-shadow: var(--shadow-soft);
}

.brand-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-title {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--accent-strong);
  line-height: 1.15;
}

.brand-sub {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
  max-width: 30ch;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 0;
  overflow-x: auto;
  scrollbar-width: none;
  min-width: 0;
}

.nav-menu::-webkit-scrollbar { display: none; }

.quick-links {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.nav-link,
.ghost-btn,
.lang-toggle,
.primary-btn,
.wa-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-link,
.ghost-btn,
.lang-toggle {
  background: rgba(255, 255, 255, 0.86);
  color: var(--accent);
}

.nav-link:hover,
.ghost-btn:hover,
.lang-toggle:hover,
.primary-btn:hover,
.wa-inline:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.nav-link.active {
  background: linear-gradient(180deg, #f4f7fb 0%, var(--accent-soft) 100%);
  border-color: var(--accent-soft-strong);
  color: var(--accent-strong);
}

.primary-btn,
.wa-inline {
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

.primary-btn { background: linear-gradient(135deg, #24415f, var(--accent-strong)); }
.wa-inline { background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)); }
.lang-toggle { min-width: 52px; }

.hero { padding: 28px 0 16px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.hero-copy,
.hero-side,
.panel,
.cta-box,
.booking-card,
.footer-card,
.note-box,
.step-card,
.service-card,
.route-card,
.country-card,
.faq-item {
  border-radius: 28px;
}

.hero-copy,
.hero-side,
.panel,
.cta-box,
.booking-card,
.footer-card {
  padding: 26px;
  position: relative;
}

.hero-copy::before,
.hero-side::before,
.panel::before,
.cta-box::before,
.booking-card::before,
.footer-card::before {
  content: "";
  position: absolute;
  inset-inline: 22px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 54, 80, 0.2), transparent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.eyebrow strong { color: var(--accent-strong); }
.eyebrow .en-sub {
  color: var(--muted);
  font-size: 11px;
  direction: ltr;
}

h1 {
  margin: 16px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  line-height: 1.15;
  color: var(--accent-strong);
  letter-spacing: -0.03em;
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  line-height: 1.2;
  color: var(--accent-strong);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--accent-strong);
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 58ch;
}

.hero-note,
.section-head p,
.footer-copy,
.footer-note,
.trust-line,
.route-card p,
.step-card p,
.service-card p,
.country-card p,
.faq-item p,
.cta-box p,
.field-help,
.route-meta,
.booking-summary,
.note-box p {
  color: var(--muted);
}

.hero-actions,
.footer-actions,
.quick-links,
.flag-badges,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-side {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(181, 138, 82, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hero-side::after {
  content: "";
  position: absolute;
  inset: auto auto -30px -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 50, 74, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-icon,
.icon-wrap {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: linear-gradient(180deg, #f3f7fb 0%, var(--accent-soft) 100%);
  border: 1px solid var(--accent-soft-strong);
}

.hero-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
}

.hero-icon svg,
.icon-wrap svg,
.floating-wa svg,
.nav-link svg,
.ghost-btn svg,
.primary-btn svg,
.wa-inline svg,
.lang-toggle svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.route-badge {
  margin-top: 18px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f6f8fb 100%);
  border: 1px solid var(--line);
}

.flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.flag-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.flag-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(31, 54, 80, 0.12);
}

.section { padding: 12px 0 18px; }
.section-shell { display: grid; gap: 16px; }
.section-head { display: grid; gap: 6px; }
.section-head p { margin: 0; max-width: 62ch; font-size: 0.95rem; }

.section-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  position: relative;
}

.section-head h2::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(31, 54, 80, 0.16));
}

.service-grid,
.route-grid,
.country-grid,
.steps,
.footer-grid,
.field-grid,
.compact-list {
  display: grid;
  gap: 16px;
}

.service-grid,
.route-grid,
.country-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.compact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer-grid { grid-template-columns: 1.3fr 0.9fr 1.1fr; }

.service-card,
.route-card,
.country-card,
.step-card,
.note-box,
.faq-item {
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.service-card::before,
.route-card::before,
.country-card::before,
.step-card::before,
.note-box::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(31, 54, 80, 0.88), rgba(31, 54, 80, 0.12));
}

.country-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

.country-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.country-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--accent-strong);
}

.keyword-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #eef3f8 0%, #f8fbfe 100%);
  border: 1px solid #cfdae6;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.lead strong,
.route-card strong,
.country-card strong,
.cta-box strong,
.panel strong,
.note-box strong,
.faq-item strong {
  color: var(--accent-strong);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.booking-card { display: grid; gap: 18px; }
.booking-form { display: grid; gap: 16px; }
.field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field-group { display: grid; gap: 8px; }

.field-group label {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
}

.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  padding: 13px 14px;
  min-height: 52px;
  resize: vertical;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field-group select:focus,
.field-group textarea:focus {
  border-color: #92a8c1;
  box-shadow: 0 0 0 4px rgba(36, 54, 77, 0.08);
}

.field-group textarea { min-height: 120px; }
.booking-summary {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f9fbfd 0%, #eef3f8 100%);
  border: 1px solid var(--line);
  font-size: 0.94rem;
}

.route-badge strong,
.note-box strong {
  color: var(--accent-strong);
}

.note-box,
.step-card {
  padding: 18px;
}

.step-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 900;
  margin-bottom: 14px;
}

.faq-wrap {
  display: grid;
  gap: 14px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--accent-strong);
  list-style: none;
}

.faq-item p { margin: 12px 0 0; }
.faq-item summary::-webkit-details-marker { display: none; }

.footer {
  padding: 18px 0 32px;
}

.footer-card {
  display: grid;
  gap: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--accent);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--accent-strong);
}

.trust-line {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

.floating-wa {
  position: fixed;
  inset-inline-start: 20px;
  inset-block-end: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  box-shadow: 0 18px 34px rgba(20, 158, 71, 0.25);
  z-index: 70;
}

body.lang-en {
  direction: ltr;
}

body.lang-en .brand,
body.lang-en .quick-links {
  justify-self: auto;
}

body.lang-en .nav {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

body.lang-en .brand-sub {
  max-width: 34ch;
}

body.lang-en .section-head h2::after {
  inset-inline-start: auto;
  inset-inline-end: 0;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .service-grid,
  .route-grid,
  .country-grid,
  .footer-grid,
  .compact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .nav {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .brand,
  .quick-links {
    justify-self: stretch;
  }

  .quick-links {
    justify-content: space-between;
  }

  .nav-menu {
    justify-content: flex-start;
  }

  .hero-grid,
  .split,
  .service-grid,
  .route-grid,
  .country-grid,
  .steps,
  .footer-grid,
  .field-grid,
  .compact-list {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-side,
  .panel,
  .cta-box,
  .booking-card,
  .footer-card {
    padding: 22px;
  }

  h1 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
  }
}
