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

:root {
  --bg: #f3f7fc;
  --surface: #ffffff;
  --surface-muted: #ecf2fb;
  --text: #10233f;
  --muted: #4e6282;
  --navy: #0e2447;
  --navy-strong: #08162f;
  --accent: #ff7a1f;
  --accent-strong: #de620f;
  --ok: #0f9a6b;
  --danger: #bc2f2f;
  --border: #d6e1f0;
  --shadow-sm: 0 10px 24px rgba(8, 22, 47, 0.08);
  --shadow-lg: 0 24px 56px rgba(8, 22, 47, 0.14);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', 'Avenir Next', 'Segoe UI', sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 10% -10%, #dce8fa 0%, transparent 35%),
    radial-gradient(circle at 100% 0%, #eaf0fa 0%, transparent 38%),
    linear-gradient(180deg, #f6f9fe 0%, #f2f7fc 45%, #f8fbff 100%);
}

a {
  color: var(--navy);
}

img,
svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: -999px;
  z-index: 1000;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  color: var(--text);
  background: #fff;
}

.skip-link:focus {
  left: 10px;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1,
h2 {
  font-family: 'Sora', 'Plus Jakarta Sans', sans-serif;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  margin-bottom: 0.65rem;
}

p {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 800;
}

.hero-sub,
.lead,
.muted,
.note,
.microcopy,
.form-meta {
  color: var(--muted);
}

.section-head {
  max-width: 700px;
  margin-bottom: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  font-weight: 700;
  padding: 0.78rem 1.3rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--accent), var(--accent-strong));
  box-shadow: 0 14px 28px rgba(255, 122, 31, 0.28);
}

.btn-secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid #c5d4e8;
}

.btn-dark {
  color: #fff;
  background: linear-gradient(145deg, #19386d, var(--navy));
  box-shadow: 0 14px 28px rgba(16, 35, 63, 0.25);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid rgba(16, 35, 63, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
}

.brand.logo {
  gap: 0;
}

.menu-toggle {
  border: 1px solid #c8d6e8;
  border-radius: var(--radius-sm);
  min-width: 44px;
  min-height: 44px;
  background: #fff;
  color: var(--navy);
  display: inline-grid;
  place-content: center;
  padding: 0.3rem;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.main-nav {
  display: none;
  position: absolute;
  left: 4%;
  right: 4%;
  top: calc(100% + 8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-lg);
  padding: 0.55rem;
}

.main-nav.is-open {
  display: grid;
  gap: 0.3rem;
}

.main-nav a {
  padding: 0.72rem 0.8rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current='page'] {
  background: var(--surface-muted);
  color: var(--navy);
}

.header-cta {
  display: inline-flex;
}

.hero {
  padding: 4.6rem 0 2.8rem;
}

.hero--home {
  position: relative;
  min-height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: visible;
  isolation: auto;
  padding: 4.6rem 0 2.8rem;
}

.hero-home-bg {
  display: none;
}

.hero-home-overlay,
.hero-overlay {
  display: none;
}

.hero-home-inner {
  width: min(1160px, 92%);
  margin: 0 auto;
  padding: 0;
}

.hero-home-content {
  max-width: 700px;
  color: #f6fbff;
  background: rgba(9, 25, 49, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px rgba(6, 15, 31, 0.32);
  backdrop-filter: blur(7px);
  padding: clamp(1rem, 2.6vw, 1.6rem);
  animation: heroFloat 9s ease-in-out infinite;
}

.hero--home .eyebrow {
  color: #d9e5f5;
}

.hero--home h1 {
  color: #f6fbff;
}

.hero--home .hero-sub {
  color: #edf4fb;
  font-weight: 600;
}

.hero--home .lead {
  color: #d6e2f2;
  margin-bottom: 0.85rem;
}

.hero-home-meta {
  margin: 0 0 1rem;
  color: #c8d8ec;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-kpis {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.hero-kpis p {
  margin: 0;
  padding: 0.45rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  color: #e9f2fb;
  font-size: 0.9rem;
}

.hero-kpis strong {
  color: #fff;
}

.hero--home .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
}

.hero--home .btn-secondary:hover,
.hero--home .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.hero--home .trust-inline li {
  color: #edf4fb;
}

.hero--home .trust-inline li::before {
  color: #95d4a9;
}

.trust-inline--hero {
  gap: 0.5rem;
}

.hero-grid,
.split-grid,
.offer-grid,
.service-hero-grid,
.grid-2,
.grid-3,
.grid-4,
.steps,
.service-cards,
.footer-grid,
.metrics,
.badges-row {
  display: grid;
  gap: 1rem;
}

.card,
.step,
.badge-box,
.testimonial,
.faq-item,
.form-card,
.glass-card,
.service-panel,
.chat-panel,
.metric {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card,
.step,
.badge-box,
.testimonial,
.faq-item,
.metric,
.service-panel,
.glass-card {
  padding: 1.1rem;
}

.hero-image,
.media-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: #fff;
}

.hero-image img,
.media-frame img,
.card img {
  width: 100%;
  height: auto;
}

.hero-actions,
.quick-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.trust-inline,
.form-highlights {
  margin: 0.95rem 0 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.trust-inline li,
.form-highlights li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-inline li::before {
  content: '✓';
  font-weight: 800;
  color: var(--ok);
  position: absolute;
  left: 0;
  top: 0;
}

.form-highlights li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ok);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.icon-row {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-content: center;
  background: #e8f0fb;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.icon-row svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.process-wrap {
  background: linear-gradient(180deg, rgba(229, 239, 251, 0.75), rgba(229, 239, 251, 0.2));
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-content: center;
  margin-bottom: 0.6rem;
  background: #e8f0fb;
  color: var(--navy);
  font-weight: 800;
}

.destination-intro {
  max-width: 640px;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.destination-carousel {
  position: relative;
}

.destination-track {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0.25rem 3.4rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.destination-track::-webkit-scrollbar {
  display: none;
}

.destination-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.destination-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4.5rem;
  pointer-events: none;
  z-index: 2;
}

.destination-fade--left {
  left: 0;
  background: linear-gradient(90deg, rgba(248, 251, 255, 0.98), rgba(248, 251, 255, 0));
}

.destination-fade--right {
  right: 0;
  background: linear-gradient(270deg, rgba(248, 251, 255, 0.98), rgba(248, 251, 255, 0));
}

.destination-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.destination-nav:hover,
.destination-nav:focus-visible {
  transform: translateY(calc(-50% - 1px));
  border-color: #b9cbe4;
  box-shadow: 0 14px 28px rgba(8, 22, 47, 0.12);
}

.destination-nav--left {
  left: 0;
}

.destination-nav--right {
  right: 0;
}

.destination-nav svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.destination-pill {
  flex: 0 0 auto;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
  padding: 0.85rem 1.15rem;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.destination-pill:hover,
.destination-pill:focus-visible {
  transform: translateY(-1px);
  border-color: #b9cbe4;
  box-shadow: var(--shadow-sm);
}

.destination-pill.is-active {
  border-color: rgba(14, 36, 71, 0.28);
  background: linear-gradient(145deg, #19386d, var(--navy));
  color: #fff;
  box-shadow: 0 14px 28px rgba(16, 35, 63, 0.18);
}

.badge-box {
  text-align: center;
}

.badge-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.52rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 700;
  color: var(--navy);
}

.badge-pill span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.testimonial .stars {
  margin-bottom: 0.5rem;
  color: #f2a300;
  letter-spacing: 0.08em;
}

.testimonial cite {
  margin-top: 0.72rem;
  display: block;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  float: right;
  color: var(--navy);
}

.faq-question[aria-expanded='true']::after {
  content: '−';
}

.faq-answer {
  margin-top: 0.65rem;
  color: var(--muted);
}

.cta-band {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: linear-gradient(145deg, #173568, var(--navy-strong));
  box-shadow: var(--shadow-lg);
}

.cta-band p {
  color: #d6e3f8;
}

.form-card {
  padding: 1.05rem;
}

.premium-form {
  border: 1px solid rgba(14, 36, 71, 0.16);
  box-shadow: 0 20px 44px rgba(8, 22, 47, 0.14);
}

.form-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.form-steps p {
  margin: 0;
  border: 1px solid #d3deed;
  border-radius: 999px;
  padding: 0.4rem 0.55rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  background: #f8fbff;
}

.form-steps span {
  display: inline-grid;
  place-content: center;
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: #e8f1fb;
  color: var(--navy);
  margin-right: 0.25rem;
}

.form-grid-2 {
  display: grid;
  gap: 0.8rem;
}

.premium-note {
  margin-top: 1rem;
}

.premium-note h3 {
  margin-bottom: 0.4rem;
}

.form-row {
  margin-bottom: 0.9rem;
}

label {
  margin-bottom: 0.35rem;
  display: inline-block;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #bdd1e8;
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.76rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(14, 36, 71, 0.18);
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: start;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.services-choices {
  display: grid;
  gap: 0.45rem;
}

.services-choices label {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  align-items: center;
  font-weight: 500;
}

.services-choices input {
  width: 16px;
  height: 16px;
}

.error-message {
  min-height: 1rem;
  margin: 0.2rem 0 0;
  color: var(--danger);
  font-size: 0.9rem;
}

.success-message {
  margin-top: 0.95rem;
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid #b4e4d3;
  background: #e9faf3;
  color: #0c6f4d;
  font-weight: 600;
}

.form-meta,
.microcopy {
  font-size: 0.92rem;
}

.site-footer {
  margin-top: 2.2rem;
  padding: 2.4rem 0 5.8rem;
  background: #f8fbff;
  border-top: 1px solid rgba(14, 35, 63, 0.12);
}

.footer-title {
  margin: 0 0 0.35rem;
  font-weight: 800;
  font-size: 1.05rem;
}

.mobile-call-btn {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
  z-index: 460;
  min-width: min(92vw, 360px);
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.92rem 1rem;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(145deg, #13a777, #0d8f64);
  box-shadow: 0 12px 24px rgba(13, 143, 100, 0.28);
}

.chat-placeholder {
  position: fixed;
  right: 1rem;
  bottom: calc(5.2rem + env(safe-area-inset-bottom, 0px));
  z-index: 470;
}

.chat-toggle {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(145deg, #18376a, var(--navy));
  color: #fff;
  font-weight: 700;
  padding: 0.68rem 1rem;
  box-shadow: var(--shadow-lg);
}

.chat-panel {
  margin-top: 0.55rem;
  width: min(86vw, 320px);
  padding: 0.9rem;
}

.chat-panel h3 {
  margin-bottom: 0.4rem;
}

.chat-panel p {
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .menu-toggle {
    min-width: 40px;
    min-height: 40px;
  }
}

@media (max-width: 767px) {
  .hero-home-inner {
    padding: 0;
  }

  .hero-home-content {
    border-radius: var(--radius-md);
    animation: none;
  }
}

@media (min-width: 820px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: inline-flex;
    position: static;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    gap: 0.2rem;
  }

  .hero-grid,
  .split-grid,
  .service-hero-grid,
  .offer-grid {
    grid-template-columns: 1.12fr 1fr;
    align-items: center;
  }

  .hero--home .hero-actions .btn {
    min-width: 172px;
  }

  .trust-inline--hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .hero-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .service-cards,
  .steps,
  .badges-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mobile-call-btn {
    display: none;
  }

  .chat-placeholder {
    bottom: 1rem;
  }

  .site-footer {
    padding-bottom: 2.4rem;
  }
}

@media (max-width: 767px) {
  .logo img {
    height: 46px;
  }

  .destination-track {
    padding-inline: 2.6rem;
  }

  .destination-fade {
    width: 2.8rem;
  }

  .destination-nav {
    width: 40px;
    height: 40px;
  }

  .destination-pill {
    min-height: 48px;
    padding-inline: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }

  .hero-home-content {
    animation: none !important;
  }
}

/* Global dark theme override */
:root {
  --bg: #050a18;
  --surface: rgba(12, 21, 44, 0.82);
  --surface-muted: rgba(17, 28, 56, 0.9);
  --text: #ffffff;
  --muted: #ffffff;
  --navy: #60a5fa;
  --navy-strong: #0b132b;
  --border: rgba(59, 130, 246, 0.24);
  --shadow-sm: 0 12px 28px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.38);
}

body {
  background: linear-gradient(180deg, #0b132b 0%, #050a18 100%);
  color: #ffffff;
}

body::before {
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: none;
}

.section,
.process-wrap,
.alt-shell,
.site-footer,
.hero,
.hero--home {
  background: transparent;
}

.site-header {
  background: rgba(5, 10, 24, 0.88);
  border-bottom-color: rgba(59, 130, 246, 0.18);
}

.main-nav,
.card,
.step,
.badge-box,
.testimonial,
.faq-item,
.form-card,
.glass-card,
.service-panel,
.chat-panel,
.metric,
.cta-band,
.media-frame,
.hero-image {
  background: rgba(12, 21, 44, 0.82);
  border-color: rgba(59, 130, 246, 0.22);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.badge-pill,
.hero-kpis p,
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current='page'] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.22);
}

.destination-fade--left {
  background: linear-gradient(90deg, rgba(11, 19, 43, 0.98), rgba(11, 19, 43, 0));
}

.destination-fade--right {
  background: linear-gradient(270deg, rgba(11, 19, 43, 0.98), rgba(11, 19, 43, 0));
}

.destination-nav,
.destination-pill {
  background: rgba(12, 21, 44, 0.92);
  border-color: rgba(59, 130, 246, 0.24);
  color: #ffffff;
}

.destination-pill.is-active {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(96, 165, 250, 0.5);
}

h1,
h2,
h3 {
  color: #ffffff;
  text-shadow:
    0 0 4px rgba(59, 130, 246, 0.6),
    0 0 8px rgba(59, 130, 246, 0.5),
    0 0 16px rgba(59, 130, 246, 0.4);
}

p,
label,
a,
li,
span,
.eyebrow,
.muted,
.hero-sub,
.lead,
.note,
.microcopy,
.form-meta,
.footer-title {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(59, 130, 246, 0.35);
}

.main-nav a,
.brand,
.footer-links a,
.contact-mail a {
  color: #ffffff;
}

.btn-primary {
  background: #f97316;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ea580c;
}

.btn-secondary,
.btn-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

input,
textarea,
select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(96, 165, 250, 0.85);
  outline: 3px solid rgba(59, 130, 246, 0.18);
}

option {
  background: #0b132b;
  color: #ffffff;
}

.move-group,
.form-steps p {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(59, 130, 246, 0.2);
}

.success-message {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(52, 211, 153, 0.3);
  color: #ffffff;
}

.error-message {
  color: #fca5a5;
  text-shadow: none;
}

/* Cream theme final override */
:root {
  --bg: #f7f2e8;
  --surface: #ffffff;
  --surface-muted: #f8f4ec;
  --text: #0f172a;
  --muted: #344256;
  --navy: #16345d;
  --navy-strong: #102748;
  --border: rgba(20, 50, 90, 0.12);
  --shadow-sm: 0 14px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 28px 56px rgba(15, 23, 42, 0.12);
}

body {
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(255, 153, 51, 0.1), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, rgba(34, 197, 94, 0.08), transparent 60%),
    linear-gradient(135deg, rgba(20, 50, 90, 0.06) 1px, transparent 1px),
    linear-gradient(45deg, rgba(20, 50, 90, 0.05) 1px, transparent 1px),
    #f7f2e8;
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
  color: #0f172a;
}

body::before {
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(22, 52, 93, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(22, 52, 93, 0.06) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 70%, rgba(22, 52, 93, 0.05) 0 1px, transparent 1px);
  background-size: 28px 28px, 36px 36px, 24px 24px;
}

.section,
.process-wrap,
.alt-shell,
.site-footer,
.hero,
.hero--home {
  background: transparent;
}

.site-header {
  background: rgba(247, 242, 232, 0.9);
  border-bottom-color: rgba(20, 50, 90, 0.1);
}

.main-nav,
.card,
.step,
.badge-box,
.testimonial,
.faq-item,
.form-card,
.glass-card,
.service-panel,
.chat-panel,
.metric,
.media-frame,
.hero-image {
  background: #ffffff;
  border-color: rgba(20, 50, 90, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.cta-band {
  background: linear-gradient(145deg, #173568, #102748);
  color: #ffffff;
}

.cta-band p {
  color: #e7eef8;
}

h1,
h2,
h3 {
  color: #0f172a;
  text-shadow: none;
}

p,
label,
a,
li,
span,
.eyebrow,
.muted,
.hero-sub,
.lead,
.note,
.microcopy,
.form-meta,
.footer-title {
  color: #0f172a;
  text-shadow: none;
}

.main-nav a,
.brand,
.footer-links a,
.contact-mail a {
  color: #0f172a;
}

.btn-primary {
  background: #f97316;
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ea580c;
}

.btn-secondary,
.btn-dark {
  background: #ffffff;
  color: #16345d;
  border: 1px solid rgba(20, 50, 90, 0.14);
}

input,
textarea,
select {
  background: #ffffff;
  border: 1px solid rgba(20, 50, 90, 0.16);
  color: #0f172a;
}

input::placeholder,
textarea::placeholder {
  color: rgba(15, 23, 42, 0.45);
}

option {
  background: #ffffff;
  color: #0f172a;
}

.move-group,
.form-steps p {
  background: #fbf7f1;
  border-color: rgba(20, 50, 90, 0.1);
}

.destination-fade--left {
  background: linear-gradient(90deg, rgba(247, 242, 232, 0.98), rgba(247, 242, 232, 0));
}

.destination-fade--right {
  background: linear-gradient(270deg, rgba(247, 242, 232, 0.98), rgba(247, 242, 232, 0));
}

.destination-nav,
.destination-pill {
  background: #ffffff;
  border-color: rgba(20, 50, 90, 0.12);
  color: #0f172a;
}

.destination-pill.is-active {
  background: #eef4fb;
  border-color: rgba(20, 50, 90, 0.22);
  color: #16345d;
}

.hero--home .btn-secondary {
  background: #ffffff;
  color: #16345d;
  border-color: rgba(20, 50, 90, 0.14);
}

.hero--home .btn-secondary:hover,
.hero--home .btn-secondary:focus-visible {
  background: #f8f4ec;
}

.hero--home .eyebrow,
.hero--home h1,
.hero--home .hero-sub,
.hero--home .lead,
.hero--home .hero-home-meta,
.hero--home .trust-inline li,
.hero--home .inline-link-note {
  color: #ffffff;
}

.hero--home .trust-inline li::before {
  color: #9fddb1;
}

.content-stack {
  display: grid;
  gap: 1rem;
}

.checklist {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.45rem;
}

.faq-answer p {
  margin-bottom: 0;
}

/* Auto-scrolling destinations marquee */
.destination-carousel {
  position: relative;
  overflow: hidden;
}

.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0.25rem 0;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: max-content;
  animation: destination-marquee-scroll 34s linear infinite;
  will-change: transform;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
}

.marquee:hover .marquee__track,
.marquee.is-paused .marquee__track {
  animation-play-state: paused;
}

@keyframes destination-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.425rem));
  }
}

.destination-track,
.destination-nav {
  display: none;
}

.hero-service-pro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at left top, rgba(139, 182, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fd 100%);
}

.hero-service-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at right top, rgba(239, 127, 59, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(8, 22, 47, 0.02), rgba(8, 22, 47, 0));
  pointer-events: none;
}

.hero-service-pro .container {
  position: relative;
  z-index: 1;
}

.service-kpi-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.45rem;
}

.service-kpi-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 36px rgba(8, 22, 47, 0.08);
}

.service-kpi-card strong {
  display: block;
  color: var(--navy-strong);
  font-size: 1rem;
}

.service-kpi-card span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.service-photo-frame--tall img {
  min-height: 460px;
}

.service-floating-card {
  margin-top: -2.4rem;
  margin-inline: 1rem;
  position: relative;
}

.section-band {
  background: linear-gradient(180deg, rgba(231, 239, 250, 0.66), rgba(231, 239, 250, 0.22));
}

.info-image-grid {
  align-items: center;
}

.price-factor-card h3,
.route-card h3 {
  margin-bottom: 0.45rem;
}

.offert-info-card {
  margin-bottom: 1rem;
}

@media (min-width: 820px) {
  .service-kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-floating-card {
    margin-inline: 1.2rem;
  }
}

@media (max-width: 819px) {
  .service-floating-card {
    margin-top: -1rem;
    margin-inline: 0.35rem;
  }
}

.destination-pill {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .marquee::-webkit-scrollbar {
    display: none;
  }

  .marquee__track {
    width: max-content;
    animation: none;
    padding-inline: 0.2rem;
  }
}

@media (max-width: 767px) {
  .marquee__track,
  .marquee__group {
    gap: 0.7rem;
  }
}

/* Header services dropdown */
.nav-item.dropdown {
  position: relative;
  z-index: 30;
}

.nav-link.dropdown-trigger {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  padding: 0.72rem 0.8rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.nav-link.dropdown-trigger:hover,
.nav-link.dropdown-trigger:focus-visible,
.nav-item.dropdown.is-open .nav-link.dropdown-trigger {
  background: var(--surface-muted);
  color: var(--navy);
}

.chevron {
  display: inline-block;
  font-size: 0.78rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-item.dropdown.is-open .chevron {
  transform: rotate(180deg);
}

.nav-item.dropdown:hover .chevron,
.nav-item.dropdown:focus-within .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: grid;
  gap: 0.2rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, max-height 0.2s ease;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 12px;
}

.dropdown-menu a {
  display: block;
}

.nav-item.dropdown.is-open .dropdown-menu {
  max-height: 16rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
  max-height: 16rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 819px) {
  .nav-item.dropdown {
    display: grid;
    gap: 0.35rem;
  }

  .dropdown-menu {
    padding: 0 0.25rem 0 0.7rem;
  }
}

@media (min-width: 820px) {
  .main-nav {
    align-items: center;
  }

  .nav-item.dropdown {
    padding-bottom: 0.45rem;
    margin-bottom: -0.45rem;
  }

  .nav-link.dropdown-trigger {
    width: auto;
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    min-width: 240px;
    padding: 0.45rem;
    border: 1px solid rgba(20, 50, 90, 0.12);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    z-index: 700;
  }

  .dropdown-menu a {
    border-radius: var(--radius-sm);
  }
}

.service-image {
  width: 100%;
  margin: 40px 0;
}

.service-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .service-image img {
    max-height: 300px;
  }
}

.container-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.container-image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.container-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  display: block;
}

.container-text {
  max-width: 850px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .container-image img {
    max-width: 350px;
  }
}

.page-hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 32px 0 40px;
}

.page-hero-image img {
  width: 100%;
  max-width: 1100px;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .page-hero-image img {
    max-height: 260px;
    border-radius: 12px;
  }
}

.offert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.offert-image {
  display: flex;
  justify-content: center;
}

.offert-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  display: block;
}

.offert-text h1 {
  font-size: 48px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .offert-grid {
    grid-template-columns: 1fr;
  }

  .offert-text {
    text-align: center;
  }
}

.offert-hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.offert-hero-image img {
  max-width: 850px;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.offert-text {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

@media (max-width: 768px) {
  .offert-hero-image img {
    max-width: 100%;
  }

  .offert-text {
    padding: 0 20px;
  }
}

/* Homepage hero restored layout */
.hero--home .hero-offer-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero--home .hero-home-content {
  max-width: none;
  background: #ffffff;
  border: 1px solid rgba(20, 50, 90, 0.12);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: none;
}

.hero--home .hero-home-content,
.hero--home #offert {
  margin-top: 0;
}

.hero--home {
  padding-top: 80px;
}

.hero--home .eyebrow,
.hero--home h1,
.hero--home .hero-sub,
.hero--home .lead,
.hero--home .inline-link-note,
.hero--home .trust-inline li {
  color: #0f172a;
}

@media (max-width: 768px) {
  .hero--home .hero-offer-shell {
    grid-template-columns: 1fr;
  }
}

/* Homepage hero text readability */
.hero--home .hero-home-content,
.hero--home .hero-home-content h1,
.hero--home .hero-home-content p,
.hero--home .hero-home-content span,
.hero--home .hero-home-content li {
  color: #000000;
  opacity: 1;
}

.hero--home .hero-home-content h1 {
  color: #000000;
  font-weight: 700;
}

.hero--home .hero-home-content p,
.hero--home .hero-home-content .hero-sub,
.hero--home .hero-home-content .lead,
.hero--home .hero-home-content .inline-link-note {
  color: #1f2937;
  opacity: 1;
}

.hero-benefits {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.hero--home .hero-home-content h1 {
  font-size: clamp(32px, 4vw, 48px);
}

.hero-card .benefit-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
  opacity: 1 !important;
}

.hero-card .benefit-icon {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1.2;
  color: #16a34a;
  margin-top: 3px;
  opacity: 1 !important;
}

.hero-card .benefit-title {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.35;
  color: #0f172a;
  opacity: 1 !important;
}

.hero-card .benefit-desc {
  margin: 4px 0 0;
  color: #334155;
  line-height: 1.6;
  opacity: 1 !important;
}

.hero-card-intro {
  margin-top: 0.85rem;
  margin-bottom: 0.35rem;
  color: #334155;
  line-height: 1.7;
}

.hero-card-details {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.hero-card-details p {
  margin: 0;
  color: #334155;
  line-height: 1.7;
}

.hero-trust-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.hero-card .trust-list li,
.hero-trust-list li {
  color: #0f172a;
  font-weight: 600;
  opacity: 1 !important;
}

.hero-card-note {
  margin-top: 1rem;
  margin-bottom: 0;
  color: #334155;
  font-weight: 600;
}
