:root {
  --navy: #071a2f;
  --navy-2: #0e2d4f;
  --blue: #1268e8;
  --blue-dark: #0b4fb6;
  --sky: #eaf4ff;
  --orange: #ff8a1f;
  --orange-dark: #e66f08;
  --white: #ffffff;
  --text: #162033;
  --muted: #64748b;
  --line: #dbe7f4;
  --green: #0e9f6e;
  --shadow: 0 18px 60px rgba(5, 30, 66, 0.14);
  --radius: 22px;
}

* { 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(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(1160px, calc(100% - 36px)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-soft { background: linear-gradient(180deg, #f7fbff 0%, #eef7ff 100%); }
.section-dark { background: var(--navy); color: #fff; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 104, 232, 0.1);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.section-dark .eyebrow { background: rgba(255,255,255,.1); color: #9cc8ff; }
h1, h2, h3, h4 { line-height: 1.14; margin: 0 0 14px; }
h1 { font-size: clamp(2.55rem, 5vw, 5.2rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2rem, 3.3vw, 3.25rem); letter-spacing: -0.04em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; }
.lead { font-size: 1.12rem; color: #d8e7f7; max-width: 720px; }
.muted { color: var(--muted); }
.center { text-align: center; }
.center .section-intro { margin-left: auto; margin-right: auto; }
.section-intro { max-width: 700px; color: var(--muted); font-size: 1.04rem; }

/* Header */
.topbar { background: #061629; color: #d8e7f7; font-size: .9rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { color: #fff; font-weight: 700; }
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219,231,244,.9);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; font-size: 1.35rem; color: var(--navy); }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px;
  background: linear-gradient(135deg, var(--blue), #0fc7c0); color: white; box-shadow: 0 10px 26px rgba(18,104,232,.25);
  transform: rotate(-4deg);
}
.brand span:last-child { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 27px; font-weight: 700; color: #314158; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta { display: inline-flex; align-items: center; gap: 9px; padding: 13px 18px; border-radius: 999px; background: var(--orange); color: #fff; font-weight: 900; box-shadow: 0 10px 30px rgba(255,138,31,.25); }
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.menu-btn { display: none; width: 45px; height: 45px; border: 0; border-radius: 12px; background: var(--sky); cursor: pointer; }

/* Hero */
.hero {
  position: relative;
  min-height: 730px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4,18,36,.96) 0%, rgba(5,30,60,.84) 48%, rgba(5,30,60,.36) 100%),
    url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=82') center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: auto -10% -170px -10%; height: 250px; border-radius: 50% 50% 0 0;
  background: white; transform: rotate(-3deg);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; padding: 96px 0 150px; }
.hero h1 span { color: #7bc1ff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 14px 21px;
  border: 0; border-radius: 999px; cursor: pointer; font-weight: 900; transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 16px 34px rgba(255,138,31,.28); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(8px); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-outline { border: 1px solid var(--line); color: var(--navy); background: #fff; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 28px; color: #dcecff; font-weight: 700; font-size: .94rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-card {
  margin-left: auto;
  max-width: 430px;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  color: var(--text);
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
}
.hero-card .call-icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 20px; background: var(--sky); color: var(--blue); font-size: 1.75rem; margin-bottom: 20px; }
.hero-card h3 { font-size: 1.65rem; }
.hero-phone { display: block; margin: 18px 0 8px; color: var(--blue); font-weight: 950; font-size: clamp(1.45rem, 3vw, 2rem); }
.hero-card small { display: block; color: var(--muted); }
.quick-form { display: grid; gap: 12px; margin-top: 22px; }
.field { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; background: white; color: var(--text); outline: none; }
.field:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(18,104,232,.1); }
textarea.field { min-height: 130px; resize: vertical; }
.form-status { min-height: 22px; margin: 6px 0 0; color: var(--green); font-weight: 700; }

/* Feature strip */
.feature-strip { position: relative; z-index: 5; margin-top: -78px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-pill { display: flex; align-items: center; gap: 16px; min-height: 126px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.feature-icon, .icon-box { flex: 0 0 auto; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: var(--sky); color: var(--blue); font-size: 1.35rem; }
.feature-pill strong { display: block; color: var(--navy); font-size: 1.08rem; }
.feature-pill span { color: var(--muted); font-size: .92rem; }

/* Cards */
.cards-3, .cards-4 { display: grid; gap: 22px; margin-top: 38px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 14px 42px rgba(5,30,66,.08); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); transition: .22s ease; }
.card .icon-box { margin-bottom: 20px; }
.card p { color: var(--muted); }
.service-card { position: relative; overflow: hidden; }
.service-card::before { content: ""; position: absolute; width: 110px; height: 110px; right: -50px; top: -50px; border-radius: 50%; background: rgba(18,104,232,.08); }

/* Destinations */
.destination-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 38px; }
.destination-card { position: relative; min-height: 370px; overflow: hidden; border-radius: 24px; background: #0a2745; box-shadow: 0 16px 46px rgba(5,30,66,.15); }
.destination-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: .45s ease; }
.destination-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 28%, rgba(2,13,27,.9) 100%); }
.destination-card:hover img { transform: scale(1.07); }
.destination-content { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 22px; color: #fff; }
.destination-country { color: #9fd0ff; font-size: .78rem; font-weight: 900; letter-spacing: .11em; }
.destination-content h3 { font-size: 1.65rem; margin-top: 3px; }
.destination-content ul { list-style: none; padding: 0; margin: 12px 0 18px; font-size: .9rem; color: #dfeeff; }
.destination-content li { display: inline; }
.destination-content li:not(:last-child)::after { content: " • "; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 900; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.image-stack { position: relative; min-height: 550px; }
.image-main { position: absolute; inset: 0 15% 0 0; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.image-main img { width: 100%; height: 100%; object-fit: cover; }
.image-badge { position: absolute; right: 0; bottom: 35px; width: 210px; padding: 22px; border-radius: 20px; background: var(--orange); color: #fff; box-shadow: 0 18px 50px rgba(255,138,31,.32); }
.image-badge strong { display: block; font-size: 2rem; line-height: 1; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; }
.check-list i { color: var(--green); margin-top: 5px; }

/* CTA */
.cta-band { overflow: hidden; position: relative; padding: 54px 0; background: linear-gradient(135deg, var(--blue) 0%, #063d8d 100%); color: #fff; }
.cta-band::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; right: -90px; top: -120px; background: rgba(255,255,255,.08); }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-inner h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
.cta-phone { white-space: nowrap; background: #fff; color: var(--blue); padding: 16px 23px; border-radius: 999px; font-weight: 950; font-size: 1.14rem; }

/* Testimonials */
.quote { font-size: 1.02rem; color: #34445a !important; }
.stars { color: #f4a522; letter-spacing: 2px; margin-bottom: 14px; }
.person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.avatar { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--sky); color: var(--blue); font-weight: 950; }
.person small { display: block; color: var(--muted); }

/* FAQ */
.faq-wrap { max-width: 860px; margin: 36px auto 0; display: grid; gap: 13px; }
.faq-item { border: 1px solid var(--line); border-radius: 17px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 21px; border: 0; background: transparent; text-align: left; font-weight: 850; color: var(--navy); cursor: pointer; }
.faq-answer { display: none; padding: 0 21px 20px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question i { transform: rotate(45deg); }

/* Inner pages */
.page-hero { padding: 92px 0; color: #fff; background: linear-gradient(115deg, rgba(5,26,51,.97), rgba(18,104,232,.78)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1800&q=82') center/cover; }
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
.breadcrumbs { margin-top: 16px; color: #cfe4ff; }
.prose { max-width: 880px; }
.prose h2 { margin-top: 36px; font-size: 1.7rem; }
.prose h3 { margin-top: 26px; }
.prose ul { padding-left: 22px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: start; }
.contact-card { padding: 30px; border-radius: 24px; background: var(--navy); color: #fff; }
.contact-item { display: flex; gap: 14px; margin-top: 24px; }
.contact-item .icon-box { background: rgba(255,255,255,.1); color: #8bc7ff; }
.form-card { padding: 34px; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }

/* Footer */
.footer { background: #041426; color: #c9d9e9; padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr 1fr; gap: 44px; }
.footer .brand { color: #fff; }
.footer h4 { color: #fff; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.disclaimer { margin-top: 36px; padding: 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; color: #9db1c5; font-size: .86rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .86rem; color: #91a5ba; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.07); }

/* Cookie */
.cookie {
  position: fixed; z-index: 100; left: 18px; right: 18px; bottom: 18px; max-width: 760px; margin: auto;
  display: none; align-items: center; justify-content: space-between; gap: 22px; padding: 18px 20px;
  border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: 0 20px 70px rgba(2,13,27,.24);
}
.cookie.show { display: flex; }
.cookie p { margin: 0; font-size: .9rem; color: var(--muted); }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie .btn { min-height: 42px; padding: 9px 15px; }

.floating-call { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: #fff; font-size: 1.35rem; box-shadow: 0 18px 40px rgba(255,138,31,.4); }
.cookie.show ~ .floating-call { bottom: 112px; }

@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 117px 18px auto; display: none; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .menu-btn { display: grid; place-items: center; }
  .nav > .nav-cta { display: none; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { margin: 0; max-width: 600px; }
  .cards-4, .destination-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .image-stack { min-height: 480px; }
}

@media (max-width: 720px) {
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-inner span:first-child { display: none; }
  .section { padding: 68px 0; }
  .hero-grid { padding: 72px 0 140px; gap: 38px; }
  .hero::after { bottom: -205px; }
  .feature-grid, .cards-3, .cards-4, .destination-grid, .form-grid { grid-template-columns: 1fr; }
  .feature-strip { margin-top: -55px; }
  .destination-card { min-height: 420px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .cookie { align-items: stretch; flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
  .floating-call { width: 56px; height: 56px; }
}
