:root {
  --brand-blue: #06499f;
  --brand-blue-dark: #03367f;
  --brand-blue-deep: #02265f;
  --brand-blue-soft: #edf4ff;
  --brand-red: #e9141c;
  --brand-red-dark: #c70e15;
  --brand-red-soft: #fff0f1;
  --ink: #10213d;
  --ink-2: #334766;
  --muted: #697891;
  --line: #dce6f3;
  --surface: #ffffff;
  --surface-2: #f5f8fc;
  --shadow: 0 18px 50px rgba(3, 54, 127, 0.11);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--max-width)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.section-muted { background: var(--surface-2); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 999px;
  color: var(--brand-blue-dark); background: var(--brand-blue-soft);
  font-weight: 800; font-size: 0.82rem; letter-spacing: .04em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; background: var(--brand-red); border-radius: 50%; }
.section-title { margin: 14px 0 12px; font-size: clamp(2rem, 3.4vw, 3.5rem); line-height: 1.08; letter-spacing: -0.045em; }
.section-copy { max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,230,243,.9);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 172px; height: 72px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 10px 12px; border-radius: 10px; font-size: .94rem; font-weight: 700; color: var(--ink-2); transition: .2s ease; }
.nav a:hover, .nav a.active { color: var(--brand-blue-dark); background: var(--brand-blue-soft); }
.nav-cta { margin-left: 8px; }
.menu-toggle { display: none; border: 0; background: transparent; width: 46px; height: 46px; border-radius: 10px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; transition: .2s; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 20px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 800; transition: .2s ease;
}
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark)); box-shadow: 0 12px 25px rgba(6,73,159,.24); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(6,73,159,.30); }
.btn-outline { border-color: #cdd9e9; background: #fff; color: var(--brand-blue-dark); }
.btn-outline:hover { border-color: var(--brand-red); color: var(--brand-red-dark); background: var(--brand-red-soft); }

.hero {
  position: relative; overflow: hidden;
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 85% 8%, rgba(233,20,28,.13), transparent 32%),
    radial-gradient(circle at 5% 95%, rgba(6,73,159,.11), transparent 30%),
    #fff;
}
.hero::after { content: ""; position: absolute; right: -100px; top: 30px; width: 360px; height: 360px; border: 60px solid rgba(6,73,159,.07); border-radius: 50%; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(3rem, 6vw, 5.7rem); line-height: .98; letter-spacing: -.065em; margin: 16px 0 20px; }
.hero h1 span { color: var(--brand-red); }
.hero p { color: var(--ink-2); font-size: clamp(1.03rem, 1.6vw, 1.23rem); max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: var(--muted); font-size: .92rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: "✓"; color: #fff; background: var(--brand-blue); width: 20px; height: 20px; display: inline-grid; place-items: center; border-radius: 50%; font-size: .7rem; font-weight: 900; }
.hero-card { position: relative; border-radius: 34px; background: linear-gradient(160deg, var(--brand-blue), var(--brand-blue-deep)); color: #fff; padding: 34px; box-shadow: var(--shadow); min-height: 495px; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; inset: auto -20% -35% 20%; height: 360px; background: radial-gradient(circle, rgba(233,20,28,.72), transparent 65%); }
.hero-card-logo { width: 195px; border-radius: 16px; background: #fff; padding: 8px 10px; }
.hero-card h2 { margin: 56px 0 14px; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.05; position: relative; }
.hero-card p { color: #dce8fa; position: relative; }
.hero-card .route { position: absolute; right: 24px; bottom: 24px; left: 24px; padding: 18px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); border-radius: 18px; font-weight: 700; }

.stats { margin-top: -26px; position: relative; z-index: 4; }
.stats-wrap { display: grid; grid-template-columns: repeat(4,1fr); background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; }
.stat { padding: 25px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 1.7rem; color: var(--brand-blue-dark); line-height: 1; margin-bottom: 7px; }
.stat span { color: var(--muted); font-size: .9rem; }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px; transition: .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #c8d9ee; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--brand-blue-soft); color: var(--brand-blue-dark); font-size: 1.35rem; font-weight: 900; margin-bottom: 18px; }
.card h3 { margin: 0 0 9px; font-size: 1.17rem; color: var(--brand-blue-deep); }
.card p { margin: 0; color: var(--muted); }
.link-arrow { display: inline-flex; margin-top: 16px; color: var(--brand-blue-dark); font-weight: 800; }

.process { counter-reset: step; }
.process-card { position: relative; padding-top: 64px; }
.process-card::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 22px; left: 26px; color: var(--brand-red); font-weight: 900; letter-spacing: .05em; }

.dest-card { min-height: 285px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; color: #fff; border-radius: 24px; padding: 26px; background: linear-gradient(150deg,var(--brand-blue),var(--brand-blue-deep)); }
.dest-card::before { content: attr(data-code); position: absolute; top: -24px; right: 12px; font-size: 8rem; font-weight: 900; opacity: .075; letter-spacing: -.08em; }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,.55)); }
.dest-card > * { position: relative; z-index: 2; }
.dest-card .flag { font-size: 2.3rem; margin-bottom: auto; filter: saturate(1.05); }
.dest-card h3 { margin: 0; font-size: 1.8rem; }
.dest-card p { color: #dce8fa; margin: 7px 0 0; }
.dest-card:hover { transform: translateY(-4px); }

.banner { background: linear-gradient(125deg, var(--brand-blue-deep), var(--brand-blue)); color: #fff; border-radius: 30px; padding: 42px; display: flex; align-items: center; justify-content: space-between; gap: 30px; overflow: hidden; position: relative; }
.banner::after { content: ""; position: absolute; width: 250px; height: 250px; border-radius: 50%; background: rgba(233,20,28,.55); right: -110px; top: -100px; }
.banner > * { position: relative; z-index: 2; }
.banner h2 { margin: 0 0 8px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.banner p { margin: 0; color: #dce8fa; }

.page-hero { padding: 72px 0 56px; background: linear-gradient(135deg,var(--brand-blue-soft),#fff 55%,var(--brand-red-soft)); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.7rem, 5vw, 4.7rem); margin: 12px 0; line-height: 1; letter-spacing: -.055em; }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 1.08rem; }
.breadcrumbs { font-size: .9rem; color: var(--muted); }
.breadcrumbs span { color: var(--brand-blue-dark); font-weight: 700; }

.service-detail { display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: start; }
.service-detail .icon-box { margin: 0; }
.service-detail h3 { margin-top: 3px; }

.destination-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line); }
.destination-detail:nth-child(even) .destination-visual { order: 2; }
.destination-visual { min-height: 330px; border-radius: 28px; background: linear-gradient(145deg,var(--brand-blue-deep),var(--brand-blue)); color: #fff; display: grid; place-items: center; position: relative; overflow: hidden; }
.destination-visual .flag { font-size: 7rem; z-index: 2; }
.destination-visual::after { content: attr(data-name); position: absolute; bottom: 4px; right: 18px; font-size: clamp(3.5rem,8vw,7rem); font-weight: 900; opacity: .08; text-transform: uppercase; }
.destination-copy h2 { margin: 0 0 10px; font-size: 2.1rem; color: var(--brand-blue-deep); }
.destination-copy p { color: var(--muted); }
.pill-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.pill { border: 1px solid #cdd9e9; border-radius: 999px; padding: 7px 11px; font-size: .86rem; font-weight: 700; background: #fff; }

.coming-soon { min-height: 58vh; display: grid; place-items: center; text-align: center; padding: 80px 20px; }
.coming-card { max-width: 760px; border: 1px solid var(--line); border-radius: 30px; padding: 58px; box-shadow: var(--shadow); background: #fff; position: relative; overflow: hidden; }
.coming-card::before { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: var(--brand-blue-soft); top: -80px; right: -60px; }
.coming-card h1 { font-size: clamp(2.6rem,6vw,4.8rem); margin: 12px 0; line-height: 1; }
.coming-card p { color: var(--muted); font-size: 1.08rem; }

.testimonial { position: relative; min-height: 250px; }
.quote-mark { font-size: 4rem; line-height: 1; color: rgba(233,20,28,.20); font-family: Georgia, serif; position: absolute; right: 20px; top: 14px; }
.person { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,var(--brand-blue-soft),#cfddf0); display: grid; place-items: center; font-weight: 900; color: var(--brand-blue-dark); }
.person strong { display: block; }
.person span { color: var(--muted); font-size: .86rem; }
.placeholder { color: #8795aa !important; font-style: italic; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
.contact-cards { display: grid; gap: 14px; margin-top: 26px; }
.contact-item { border: 1px solid var(--line); border-radius: 16px; padding: 18px; display: grid; grid-template-columns: 42px 1fr; gap: 13px; }
.contact-item .icon-box { width: 42px; height: 42px; margin: 0; border-radius: 12px; }
.contact-item strong { display: block; margin-bottom: 2px; color: var(--brand-blue-deep); }
.contact-item a, .contact-item span { color: var(--muted); word-break: break-word; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 30px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #cdd9e9; border-radius: 12px; padding: 13px 14px; background: #fff; outline: none; transition: .2s; }
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand-blue); box-shadow: 0 0 0 4px rgba(6,73,159,.11); }
.form-status { margin: 12px 0 0; font-size: .92rem; min-height: 24px; }

.faq { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.faq-btn { width: 100%; border: 0; background: #fff; padding: 18px 20px; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-weight: 800; }
.faq-btn::after { content: "+"; font-size: 1.5rem; color: var(--brand-red); }
.faq-item.open .faq-btn::after { content: "−"; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-content p { padding: 0 20px 20px; margin: 0; color: var(--muted); }

.site-footer { margin-top: 40px; background: linear-gradient(135deg, var(--brand-blue-deep), #031b42); color: #fff; }
.footer-main { padding: 58px 0 36px; display: grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap: 34px; }
.footer-logo { width: 190px; background: #fff; border-radius: 15px; padding: 6px 10px; }
.footer-main p, .footer-main a { color: #c8d8ee; }
.footer-main h4 { margin: 4px 0 14px; color: #fff; }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.13); padding: 18px 0; color: #9fb6d5; font-size: .88rem; display: flex; justify-content: space-between; gap: 18px; }

.reveal { opacity: 0; transform: translateY(18px); transition: .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .menu-toggle { display: inline-block; }
  .nav { position: absolute; top: 82px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 12px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; }
  .nav-cta { margin-left: 0; }
  .hero-grid, .contact-layout, .destination-detail { grid-template-columns: 1fr; }
  .hero-card { min-height: 420px; }
  .stats-wrap { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-4, .grid-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-main { grid-template-columns: repeat(2,1fr); }
  .destination-detail:nth-child(even) .destination-visual { order: initial; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .section { padding: 66px 0; }
  .brand img { width: 145px; height: 64px; }
  .nav-wrap { min-height: 72px; }
  .nav { top: 72px; left: 14px; right: 14px; }
  .hero { padding: 66px 0 54px; }
  .hero h1 { font-size: clamp(2.75rem,15vw,4.15rem); }
  .hero-card { min-height: 390px; padding: 25px; }
  .hero-card h2 { margin-top: 42px; }
  .stats { margin-top: 18px; }
  .grid-4, .grid-3, .grid-2, .form-grid, .footer-main { grid-template-columns: 1fr; }
  .stats-wrap { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .banner { align-items: flex-start; flex-direction: column; padding: 30px; }
  .page-hero { padding: 56px 0 44px; }
  .coming-card { padding: 38px 24px; }
  .form-card { padding: 22px; }
  .field.full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
