:root {
  --blue-950: #082f49;
  --blue-900: #0c3b5d;
  --blue-800: #075985;
  --blue-700: #0369a1;
  --blue-100: #e0f2fe;
  --green: #16a766;
  --green-dark: #0d8f54;
  --green-pale: #eafaf2;
  --ink: #11263b;
  --muted: #617184;
  --line: #dce5eb;
  --surface: #f6f9fb;
  --white: #fff;
  --shadow: 0 18px 50px rgba(10, 51, 78, .14);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; color: var(--ink); font-family: "Manrope", sans-serif; background: var(--white); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 92px 0; }

.site-header { position: sticky; z-index: 50; top: 0; height: 76px; background: rgba(255,255,255,.95); border-bottom: 1px solid rgba(220,229,235,.8); backdrop-filter: blur(14px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-900); font-weight: 800; font-size: 20px; letter-spacing: -.6px; white-space: nowrap; }
.brand > span:last-child > span { color: var(--green); }
.brand-mark { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 11px; color: white; background: linear-gradient(145deg, var(--blue-700), var(--green)); transform: rotate(-5deg); }
.brand-mark svg { width: 24px; fill: currentColor; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav a { position: relative; font-size: 14px; font-weight: 600; color: #41566a; transition: color .2s; }
.main-nav a::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -7px; background: var(--green); transition: right .2s; }
.main-nav a:hover { color: var(--blue-800); }
.main-nav a:hover::after { right: 0; }
.button { border: 0; border-radius: 10px; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; font-weight: 800; font-size: 14px; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid rgba(22,167,102,.28); outline-offset: 3px; }
.button-whatsapp { color: white; background: var(--green); box-shadow: 0 8px 22px rgba(22,167,102,.23); }
.button-whatsapp:hover { background: var(--green-dark); box-shadow: 0 11px 26px rgba(22,167,102,.32); }
.button-whatsapp svg { width: 20px; fill: currentColor; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px; background: var(--blue-900); transition: .25s; }

.hero { position: relative; min-height: 660px; color: white; isolation: isolate; background: url("https://images.unsplash.com/photo-1499856871958-5b9627545d1a?auto=format&fit=crop&w=2000&q=88") center 52% / cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5,40,65,.91) 0%, rgba(5,51,77,.76) 43%, rgba(4,42,65,.28) 100%); }
.hero-content { min-height: 660px; padding: 68px 0; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 76px; }
.hero-copy { padding-bottom: 18px; }
.eyebrow, .section-kicker { color: #82e6b4; font-size: 12px; font-weight: 800; letter-spacing: 1.45px; }
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow > span { width: 30px; height: 2px; background: #82e6b4; }
.hero h1 { max-width: 650px; margin: 18px 0 20px; font-size: clamp(41px, 5vw, 66px); line-height: 1.04; letter-spacing: -2.8px; }
.hero h1 em { color: #78e2aa; font-style: normal; }
.hero-copy > p { max-width: 600px; margin: 0; color: rgba(255,255,255,.86); font-size: 17px; line-height: 1.75; }
.trust-row { display: flex; gap: 24px; margin-top: 28px; font-size: 13px; font-weight: 700; }
.trust-row span { display: flex; align-items: center; gap: 7px; }
.trust-row svg { width: 20px; height: 20px; padding: 3px; border-radius: 50%; stroke: #a7f3d0; stroke-width: 2.5; fill: none; background: rgba(22,167,102,.3); }
.quote-card { padding: 28px; color: var(--ink); background: rgba(255,255,255,.97); border-radius: 20px; box-shadow: 0 25px 65px rgba(0,23,42,.28); }
.quote-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.form-kicker { color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: 1.2px; }
.quote-heading h2 { margin: 4px 0 0; font-size: 23px; letter-spacing: -.6px; }
.plane-badge { width: 44px; height: 44px; display: grid; place-items: center; color: var(--blue-700); border-radius: 50%; background: var(--blue-100); font-size: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { min-width: 0; }
.field > span:first-child { display: block; margin-bottom: 7px; color: #455a6f; font-size: 11px; font-weight: 800; }
.field-full { grid-column: 1 / -1; }
.input-wrap { min-height: 48px; display: flex; align-items: center; gap: 9px; padding: 0 12px; border: 1px solid var(--line); border-radius: 9px; background: #fbfcfd; transition: border .2s, box-shadow .2s; }
.input-wrap:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,167,102,.1); }
.input-wrap svg { flex: 0 0 auto; width: 18px; fill: none; stroke: #7390a3; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.input-wrap input, .input-wrap select { width: 100%; min-width: 0; padding: 12px 0; color: var(--ink); font-size: 12px; font-weight: 600; border: 0; outline: 0; background: transparent; }
.input-wrap input::placeholder { color: #9aa8b5; }
.input-wrap select:disabled { color: #9aa8b5; cursor: not-allowed; }
.field-hint { display: block; min-height: 14px; margin: 5px 2px 0; color: #82909e; font-size: 8px; line-height: 1.4; }
.field-hint.has-airports { color: var(--green-dark); font-weight: 700; }
.quote-button { width: 100%; margin-top: 20px; min-height: 53px; font-size: 14px; }
.quote-button svg { fill: none; stroke: currentColor; stroke-width: 2.2; }
.privacy-note { margin: 12px 0 0; color: #83909c; text-align: center; font-size: 10px; }

.offers { background: var(--surface); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 35px; }
.section-kicker { color: var(--green); }
.section-heading h2, .center-heading h2 { margin: 8px 0 9px; font-size: clamp(30px, 3.5vw, 42px); letter-spacing: -1.5px; }
.section-heading p, .center-heading p { margin: 0; color: var(--muted); font-size: 15px; }
.text-link { flex-shrink: 0; padding-bottom: 4px; color: var(--blue-700); font-size: 13px; font-weight: 800; border-bottom: 1px solid #aacfe1; }
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.offer-card { overflow: hidden; background: white; border: 1px solid #e3eaee; border-radius: 14px; box-shadow: 0 8px 24px rgba(10,51,78,.055); transition: transform .25s, box-shadow .25s; }
.offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.offer-image { position: relative; height: 190px; overflow: hidden; }
.offer-image img { height: 100%; object-fit: cover; transition: transform .5s; }
.offer-card:hover .offer-image img { transform: scale(1.04); }
.offer-tag, .offer-duration { position: absolute; top: 13px; color: white; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; border-radius: 5px; }
.offer-tag { left: 13px; padding: 6px 9px; background: var(--green); }
.offer-tag-blue { background: var(--blue-700); }
.offer-tag-gold { color: #513509; background: #fbbf24; }
.offer-duration { right: 13px; padding: 6px 8px; background: rgba(6,33,48,.67); backdrop-filter: blur(5px); }
.offer-body { padding: 18px; }
.offer-location { display: flex; justify-content: space-between; color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .8px; }
.offer-location .rating { color: #e9a40d; letter-spacing: 0; }
.offer-body h3 { margin: 5px 0 14px; font-size: 20px; letter-spacing: -.5px; }
.offer-body ul { display: grid; gap: 8px; margin: 0 0 17px; padding: 0; color: #617184; font-size: 10px; list-style: none; }
.offer-body li span { display: inline-block; width: 19px; color: var(--blue-700); }
.price-row { min-height: 62px; display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; padding-top: 14px; border-top: 1px solid #edf1f3; }
.price-row div { display: grid; }
.price-row small { color: #7d8a96; font-size: 9px; }
.price-row strong { color: var(--blue-900); font-size: 21px; line-height: 1.2; }
.price-row > span { padding-bottom: 14px; color: var(--green-dark); font-size: 8px; font-weight: 800; }
.offer-button { width: 100%; min-height: 43px; margin-top: 15px; color: white; background: var(--blue-800); border-radius: 8px; font-size: 11px; }
.offer-button:hover { background: var(--blue-950); }
.offer-disclaimer { margin: 22px 0 0; color: #87939c; text-align: center; font-size: 9px; }

.center-heading { margin-bottom: 43px; text-align: center; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.benefit-grid article { padding: 25px 20px; text-align: center; border: 1px solid transparent; border-radius: 14px; transition: border .2s, background .2s; }
.benefit-grid article:hover { border-color: #d8ebe3; background: #fbfefd; }
.benefit-icon { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 17px; border-radius: 16px; background: var(--green-pale); font-size: 25px; }
.benefit-grid h3 { margin: 0 0 9px; font-size: 16px; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.testimonials { background: #f0f7fa; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { padding: 27px; border: 1px solid #dde9ee; border-radius: 14px; background: white; box-shadow: 0 6px 20px rgba(9,50,76,.04); }
.featured-testimonial { transform: translateY(-8px); border-top: 3px solid var(--green); box-shadow: var(--shadow); }
.stars { color: #f2ad1b; font-size: 14px; letter-spacing: 2px; }
.testimonial-card > p { min-height: 78px; margin: 16px 0 22px; color: #42566a; font-size: 12px; line-height: 1.75; }
.customer { display: flex; align-items: center; gap: 10px; }
.avatar { width: 39px; height: 39px; flex: 0 0 auto; display: grid; place-items: center; color: var(--blue-800); font-size: 11px; font-weight: 800; border-radius: 50%; background: #dbeefe; }
.avatar-green { color: #087846; background: #d9f6e8; }
.avatar-orange { color: #a25009; background: #ffead7; }
.customer div { display: grid; }
.customer strong { font-size: 11px; }
.customer small { color: #8995a0; font-size: 8px; }
.verified { margin-left: auto; color: var(--green); font-size: 8px; font-weight: 800; }

.cta-strip { padding: 36px 0; color: white; background: linear-gradient(100deg, var(--blue-900), var(--blue-700)); }
.cta-inner, .cta-inner > div { display: flex; align-items: center; }
.cta-inner { justify-content: space-between; gap: 30px; }
.cta-inner > div { gap: 18px; }
.cta-inner > div > span { font-size: 34px; }
.cta-inner h2 { margin: 0 0 5px; font-size: 22px; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.72); font-size: 12px; }
.button-light { min-width: 220px; color: var(--blue-900); background: white; }
.button-light:hover { background: #eefaff; }

.site-footer { padding-top: 61px; color: #aab9c6; background: #072a41; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .75fr 1.15fr .9fr; gap: 50px; padding-bottom: 48px; }
.brand-light { color: white; }
.footer-about p { max-width: 310px; margin: 18px 0; font-size: 11px; line-height: 1.7; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-grid h3 { margin: 2px 0 9px; color: white; font-size: 12px; }
.footer-grid a, .footer-grid span { font-size: 10px; }
.footer-grid a:hover { color: white; }
.socials { display: flex; gap: 8px; }
.socials a { width: 30px; height: 30px; display: grid; place-items: center; color: white; font-weight: 800; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.footer-bottom { display: flex; justify-content: space-between; padding: 20px 0 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 9px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 45; width: 58px; height: 58px; display: none; place-items: center; color: white; background: var(--green); border-radius: 50%; box-shadow: 0 8px 24px rgba(9,98,56,.35); }
.floating-whatsapp svg { width: 30px; fill: currentColor; }

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .hero-content { gap: 35px; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .offer-image { height: 240px; }
}

@media (max-width: 850px) {
  .site-header { height: 68px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; cursor: pointer; }
  .main-nav { position: fixed; top: 68px; left: 0; right: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 12px 20px 25px; background: white; box-shadow: 0 18px 25px rgba(10,51,78,.12); transform: translateY(-140%); opacity: 0; transition: transform .3s, opacity .3s; }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav a { padding: 14px 8px; border-bottom: 1px solid #edf1f3; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-content { grid-template-columns: 1fr; padding: 70px 0; }
  .hero { background-position: 60% center; }
  .hero-copy { text-align: center; }
  .eyebrow, .trust-row { justify-content: center; }
  .hero-copy > p { margin-inline: auto; }
  .quote-card { width: min(570px, 100%); margin-inline: auto; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; }
  .featured-testimonial { transform: none; }
  .testimonial-card > p { min-height: 0; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1.2fr; }
  .footer-grid > div:last-child { display: none; }
  .floating-whatsapp { display: grid; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 66px 0; }
  .hero h1 { font-size: 40px; letter-spacing: -1.8px; }
  .hero-content { padding: 58px 0; }
  .trust-row { flex-wrap: wrap; gap: 12px 20px; }
  .quote-card { padding: 22px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .section-heading { display: block; }
  .text-link { display: inline-block; margin-top: 20px; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-image { height: 225px; }
  .benefit-grid { grid-template-columns: 1fr; gap: 8px; }
  .benefit-grid article { padding: 20px; }
  .cta-inner, .cta-inner > div { text-align: center; flex-direction: column; }
  .cta-inner { gap: 22px; }
  .button-light { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { align-items: center; flex-direction: column; gap: 13px; text-align: center; }
}

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