@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --navy: #061a3a;
  --navy-2: #0a2a58;
  --blue: #075cf5;
  --cyan: #35d4eb;
  --ice: #eef6ff;
  --line: #dbe6f1;
  --text: #0a1d38;
  --muted: #5e7087;
  --white: #fff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: #fff; font-family: 'Manrope', sans-serif; font-size: 16px; line-height: 1.65; }
body.intro-active { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 1000; padding: 10px 16px; color: #fff; background: var(--blue); }
.skip-link:focus { top: 12px; }

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  background: var(--navy);
  animation: intro-screen 4s cubic-bezier(.65, 0, .35, 1) forwards;
}
.brand-intro::before,
.brand-intro::after {
  content: '';
  position: absolute;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(53,212,235,.12);
  border-radius: 50%;
}
.brand-intro::before { top: -55vw; right: -15vw; }
.brand-intro::after { bottom: -58vw; left: -20vw; }
.brand-intro img {
  position: relative;
  z-index: 2;
  width: min(620px, 74vw);
  height: auto;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  filter: drop-shadow(0 18px 45px rgba(0,0,0,.32));
  animation: intro-logo 3.5s cubic-bezier(.22, 1, .36, 1) .18s forwards;
}
.brand-intro-glow {
  position: absolute;
  width: min(680px, 80vw);
  height: 160px;
  background: rgba(7,92,245,.28);
  filter: blur(70px);
  transform: translateX(-30%);
  animation: intro-glow 1.8s ease-out .1s forwards;
}
@keyframes intro-logo {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-110px) scale(.96);
  }
  25% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0) scale(1);
  }
  80% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0) scale(1);
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 0);
    transform: translateX(110px) scale(1.02);
  }
}
@keyframes intro-screen {
  0%, 76% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
@keyframes intro-glow {
  0% { opacity: 0; transform: translateX(-45%); }
  45% { opacity: 1; }
  100% { opacity: 0; transform: translateX(35%); }
}

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(6,26,58,.09); backdrop-filter: blur(14px); }
.nav-wrap { max-width: var(--max); height: 84px; margin: auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; width: 245px; height: 64px; align-items: center; overflow: hidden; }
.brand img { display: block; width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--blue); transition: right .25s; }
.site-nav > a:hover::after { right: 0; }
.nav-cta { padding: 12px 18px; color: #fff; background: var(--blue); border-radius: 8px; }
.menu-toggle { display: none; border: 0; background: none; padding: 10px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: var(--navy); }

.hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--navy); }
.hero::after { content: ''; position: absolute; inset: auto -12% -45% 35%; height: 700px; border: 1px solid rgba(53,212,235,.18); border-radius: 50%; transform: rotate(-10deg); }
.route { position: absolute; width: 760px; height: 760px; border: 2px solid rgba(53,212,235,.10); border-radius: 49% 51% 37% 63%; pointer-events: none; }
.route-one { top: -520px; right: 2%; transform: rotate(20deg); }
.route-two { bottom: -610px; left: -160px; }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: auto; padding: 90px 24px; display: grid; grid-template-columns: 1.06fr .94fr; gap: 84px; align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--cyan); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 28px; height: 2px; margin: 0 10px 4px 0; background: var(--cyan); }
.eyebrow.blue { color: var(--blue); }
.eyebrow.light { color: var(--cyan); }
h1, h2, h3 { margin-top: 0; font-family: 'Space Grotesk', sans-serif; line-height: 1.08; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(48px, 6vw, 78px); letter-spacing: -.045em; }
h1 em { color: var(--cyan); font-style: normal; }
.hero-lead { max-width: 590px; margin: 0 0 34px; color: #c6d6e9; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { min-height: 52px; padding: 13px 22px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; border: 0; border-radius: 8px; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--blue); }
.btn-primary:hover { background: #1972ff; }
.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.28); }
.trust-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 25px; color: #91aac5; font-size: 13px; font-weight: 700; }
.trust-row span::before { content: '✓'; margin-right: 8px; color: var(--cyan); }

.route-card { padding: 25px; background: rgba(12,43,83,.73); border: 1px solid rgba(91,156,229,.25); border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,.25); backdrop-filter: blur(12px); }
.card-top { display: flex; justify-content: space-between; color: #a9bdd4; font-size: 13px; }
.live-dot { color: var(--cyan); }
.live-dot::before { content: ''; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(53,212,235,.1); }
.map-abstract { position: relative; height: 260px; margin: 10px 0; }
.map-abstract svg { width: 100%; height: 100%; overflow: visible; }
.map-abstract path { fill: none; stroke: rgba(77,130,192,.35); stroke-width: 12; stroke-linecap: round; }
.map-abstract .dash { stroke: var(--cyan); stroke-width: 3; stroke-dasharray: 7 13; }
.point { position: absolute; z-index: 2; width: 14px; height: 14px; border: 3px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 8px rgba(7,92,245,.25); }
.point-a { left: 6%; bottom: 19%; }
.point-b { left: 59%; top: 31%; }
.point-c { right: 3%; top: 5%; background: var(--cyan); }
.route-labels { padding-top: 18px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; border-top: 1px solid rgba(255,255,255,.12); align-items: center; }
.route-labels div:last-child { text-align: right; }
.route-labels strong, .route-labels small { display: block; }
.route-labels strong { font-size: 14px; }
.route-labels small { color: #8fa7c0; }
.route-labels > span { color: var(--cyan); }

.section { max-width: var(--max); margin: auto; padding: 110px 24px; }
.section-head { margin-bottom: 52px; display: grid; grid-template-columns: 1fr 440px; gap: 40px; align-items: end; }
.section-head h2, .about h2, .destination h2, .quote-section h2 { margin-bottom: 0; font-size: clamp(36px, 5vw, 56px); letter-spacing: -.04em; }
.section-head > p { margin: 0 0 7px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 320px; padding: 36px; display: flex; flex-direction: column; background: #f5f8fc; border: 1px solid #edf1f6; border-radius: 14px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 45px rgba(5,27,58,.09); }
.service-card.featured { color: #fff; background: var(--blue); border-color: var(--blue); }
.service-number { position: absolute; top: 24px; right: 28px; color: #9aacc0; font-size: 12px; font-weight: 800; }
.featured .service-number { color: rgba(255,255,255,.55); }
.service-icon { width: 52px; height: 52px; margin-bottom: 50px; display: grid; place-items: center; color: var(--blue); background: #fff; border: 1px solid var(--line); border-radius: 12px; font-family: 'Space Grotesk'; font-size: 25px; font-weight: 700; }
.featured .service-icon { color: var(--navy); border: 0; }
.service-card h3 { margin-bottom: 12px; font-size: 25px; }
.service-card p { max-width: 490px; margin: 0 0 24px; color: var(--muted); }
.featured p { color: #dceaff; }
.service-card a { margin-top: auto; font-size: 14px; font-weight: 800; }
.service-card a span { margin-left: 10px; color: var(--blue); }
.featured a span { color: var(--cyan); }

.destination { color: #fff; background: var(--navy); }
.destination-inner { max-width: var(--max); margin: auto; padding: 95px 24px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: center; }
.destination-copy > p:not(.eyebrow) { max-width: 700px; color: #aec0d5; font-size: 18px; }
.destination-copy ul { padding: 0; margin: 30px 0 0; display: grid; gap: 12px; list-style: none; }
.destination-copy li span { margin-right: 10px; color: var(--cyan); }
.big-stat { padding: 30px 0 25px 50px; border-left: 1px solid rgba(255,255,255,.17); }
.big-stat span, .big-stat small { display: block; color: #95abc3; text-transform: uppercase; letter-spacing: .14em; }
.big-stat strong { display: block; color: var(--cyan); font-family: 'Space Grotesk'; font-size: clamp(70px, 9vw, 110px); line-height: 1; letter-spacing: -.08em; }

.about { position: relative; min-height: 560px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; overflow: hidden; }
.about-mark { align-self: stretch; min-height: 430px; display: grid; place-items: center; padding: 42px; background: transparent; border-radius: 18px; }
.about-mark img { display: block; width: min(100%, 470px); max-height: 360px; object-fit: contain; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.about-details { margin-top: 35px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.about-details div { padding-top: 18px; border-top: 1px solid var(--line); }
.about-details strong, .about-details span { display: block; }
.about-details strong { font-family: 'Space Grotesk'; font-size: 17px; }
.about-details span { color: var(--muted); font-size: 13px; }

.quote-section { padding: 100px max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; color: #fff; background: linear-gradient(125deg, #082654, #061a3a 70%); }
.quote-intro > p:not(.eyebrow) { color: #afc2d7; }
.direct-contact { margin-top: 35px; display: grid; gap: 12px; }
.direct-contact a { padding: 15px 0; border-top: 1px solid rgba(255,255,255,.13); }
.direct-contact span, .direct-contact strong { display: block; }
.direct-contact span { color: #829bb7; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.direct-contact strong { font-size: 16px; overflow-wrap: anywhere; }
.quote-form { padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; color: var(--text); background: #fff; border-radius: 16px; box-shadow: 0 25px 70px rgba(0,0,0,.2); }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #3e526a; font-size: 13px; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; color: var(--text); background: #f6f9fc; border: 1px solid #dce5ef; border-radius: 7px; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(7,92,245,.1); }
.field textarea { resize: vertical; }
.submit { grid-column: 1 / -1; }
.form-note { grid-column: 1 / -1; margin: -8px 0 0; color: #6e8197; font-size: 12px; text-align: center; }

.contact-strip { padding: 38px max(24px, calc((100vw - var(--max)) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--navy); background: var(--cyan); }
.contact-strip span, .contact-strip strong { display: block; }
.contact-strip > div > span { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.contact-strip strong { font-family: 'Space Grotesk'; font-size: 27px; }
.contact-strip > a { padding: 12px 18px; color: #fff; background: var(--navy); border-radius: 7px; font-weight: 800; }
.contact-strip > a span { display: inline; margin-left: 16px; }

footer { padding: 64px max(24px, calc((100vw - var(--max)) / 2)) 22px; color: #aabdd2; background: #031228; }
.footer-main { padding-bottom: 50px; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 50px; }
.footer-main img { width: 230px; }
.footer-main div > span { color: #6f88a4; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-main p { margin: 9px 0 0; }
.footer-main a:hover { color: var(--cyan); }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #6f88a4; font-size: 12px; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 84px; left: 0; right: 0; padding: 25px 24px; display: none; flex-direction: column; align-items: stretch; gap: 18px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(6,26,58,.12); }
  .site-nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero-inner, .destination-inner, .about, .quote-section { grid-template-columns: 1fr; }
  .hero-inner { gap: 45px; }
  .section-head { grid-template-columns: 1fr; gap: 10px; }
  .destination-inner, .quote-section { gap: 55px; }
  .big-stat { padding-left: 0; border-left: 0; }
  .about { gap: 55px; }
  .about-mark { min-height: 260px; padding: 28px; }
  .about-mark img { max-height: 280px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .nav-wrap { height: 72px; padding: 0 18px; }
  .brand { width: 190px; }
  .site-nav { top: 72px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 72px 20px; }
  h1 { font-size: 46px; }
  .route-card { padding: 20px; }
  .map-abstract { height: 210px; }
  .section { padding: 78px 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 305px; padding: 28px; }
  .destination-inner { padding: 75px 20px; }
  .about-details { grid-template-columns: 1fr; }
  .quote-section { padding: 75px 20px; }
  .quote-form { padding: 24px 20px; grid-template-columns: 1fr; }
  .field { grid-column: 1 / -1; }
  .contact-strip { padding: 32px 20px; flex-direction: column; align-items: stretch; }
  .contact-strip > a { text-align: center; }
  footer { padding: 55px 20px 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .brand-intro { display: none; }
}
