:root {
  --navy: #07172c;
  --blue: #0b58a6;
  --sky: #d8ecff;
  --green: #16a464;
  --red: #d9483b;
  --ink: #102033;
  --muted: #5d6978;
  --line: #dfe6ee;
  --soft: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(7, 23, 44, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #8be5bc);
  box-shadow: 0 0 16px rgba(22, 164, 100, 0.45);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: var(--navy);
  color: var(--white);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 188px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(7, 23, 44, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transition: min-height 240ms ease, padding 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 34px;
  padding: 0 9px;
  border: 0;
  border-radius: 6px;
  color: #dce8f7;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.language-option:hover,
.language-option.is-active {
  color: var(--navy);
  background: #8be5bc;
}

.language-option:hover {
  transform: translateY(-1px);
}

.nav.scrolled {
  min-height: 126px;
  gap: 18px;
  padding: 0 clamp(16px, 4vw, 58px);
  background: rgba(7, 23, 44, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.nav.scrolled .brand-logo {
  width: 126px;
  max-height: 118px;
}

.nav.scrolled .nav-links {
  gap: 8px;
  font-size: 0.94rem;
}

.nav.scrolled .nav-links a {
  min-height: 38px;
  padding: 9px 12px;
}

.nav.scrolled .language-option {
  min-width: 36px;
  min-height: 30px;
  font-size: 0.8rem;
}

.nav.scrolled .nav-cta {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 0.92rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 189px;
  height: auto;
  max-height: 172px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
  transition: width 240ms ease, max-height 240ms ease, transform 240ms ease, filter 240ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.28));
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  color: #f3f8ff;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a {
  position: relative;
  min-height: 42px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.nav-links a:hover {
  border-color: rgba(139, 229, 188, 0.42);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

.nav-links a::after {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 7px;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(22, 164, 100, 0.22);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta:hover,
.button.primary:hover {
  background: #129257;
  box-shadow: 0 18px 38px rgba(22, 164, 100, 0.32);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero > picture {
  position: absolute;
  inset: 0;
}

.hero > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 23, 44, 0.96) 0%, rgba(7, 23, 44, 0.72) 42%, rgba(7, 23, 44, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 23, 44, 0.42), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 202px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #8be5bc;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

.free-quote-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0 0 20px;
  padding: 0 16px;
  border: 1px solid rgba(139, 229, 188, 0.55);
  border-radius: 8px;
  color: #eafff4;
  background: rgba(22, 164, 100, 0.32);
  box-shadow: 0 14px 32px rgba(22, 164, 100, 0.18);
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  font-weight: 800;
}

.free-quote-badge::before {
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  content: "";
  background: #8be5bc;
  box-shadow: 0 0 0 0 rgba(139, 229, 188, 0.6);
  animation: quotePulse 1.8s ease-out infinite;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: #e5edf7;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-metrics span {
  min-height: 78px;
  padding: 16px;
  background: rgba(5, 16, 31, 0.52);
  color: #d5e2f2;
  transition: background 220ms ease, transform 220ms ease;
}

.hero-metrics span:hover {
  background: rgba(22, 164, 100, 0.22);
  transform: translateY(-2px);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1.2rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  min-height: 116px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.trust-strip div:hover {
  z-index: 1;
  transform: translateY(-4px);
  background: #fbfdff;
  box-shadow: 0 16px 38px rgba(7, 23, 44, 0.12);
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.company-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #d6e0eb;
}

.company-strip div {
  min-height: 90px;
  padding: 18px clamp(18px, 4vw, 42px);
  background: #f7fbff;
}

.company-strip strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
}

.company-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.trust-strip span,
.section p,
.faq p,
.contact-card p,
.contact-list {
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

section[id] {
  scroll-margin-top: 188px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 112px;
}

.section-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 244px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(12, 34, 61, 0.05);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 88, 166, 0.28);
  box-shadow: 0 22px 45px rgba(12, 34, 61, 0.14);
}

.service-card:hover .icon {
  color: var(--white);
  background: var(--blue);
  transform: rotate(-3deg) scale(1.05);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--blue);
  background: var(--sky);
  transition: transform 240ms ease, color 240ms ease, background 240ms ease;
}

.icon svg,
.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  margin: 14px 0 0;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.card-link:hover {
  color: var(--navy);
}

.import-guide {
  background: #fbfcfe;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.guide-card {
  min-height: 224px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(12, 34, 61, 0.05);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.guide-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 88, 166, 0.28);
  box-shadow: 0 18px 38px rgba(12, 34, 61, 0.12);
}

.guide-card p {
  margin: 16px 0 0;
}

.guide-checklist ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.quote-value {
  background: var(--white);
}

.quote-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quote-value-grid article {
  min-height: 188px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(12, 34, 61, 0.05);
}

.quote-value-grid p {
  margin: 14px 0 0;
}

.origin-routes {
  background: #fbfcfe;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.route-card {
  min-height: 218px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(12, 34, 61, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.route-card:hover {
  transform: translateY(-6px);
  border-color: rgba(11, 88, 166, 0.28);
  box-shadow: 0 18px 34px rgba(12, 34, 61, 0.12);
}

.route-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--navy);
  background: #d8ecff;
  font-size: 0.82rem;
  font-weight: 900;
}

.route-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.25rem;
}

.route-card p {
  margin: 14px 0 0;
}

.audience {
  background: var(--white);
}

.audience-lead {
  max-width: 700px;
  margin: -18px 0 24px;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(11, 88, 166, 0.18);
  border-radius: 8px;
  color: var(--navy);
  background: #f7fbff;
  font-weight: 800;
}

.assurance {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
  background: var(--soft);
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  transition: transform 700ms ease;
}

.image-panel:hover img {
  transform: scale(1.06);
}

.assurance-copy h2 {
  color: var(--navy);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.check-list p {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  margin: 0;
}

.check-list span {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #dff6eb;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.process {
  background: var(--navy);
  color: var(--white);
}

.process .eyebrow {
  color: #8be5bc;
}

.process h2 {
  color: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.timeline article {
  min-height: 292px;
  padding: 28px;
  background: #0b213d;
  transition: transform 240ms ease, background 240ms ease;
}

.timeline article:hover {
  transform: translateY(-6px);
  background: #123052;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  transition: transform 240ms ease, background 240ms ease;
}

.timeline article:hover span {
  transform: scale(1.08);
  background: #8be5bc;
}

.timeline p {
  color: #bfd0e5;
}

.categories {
  background: #fbfcfe;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 16px 18px;
  border-left: 4px solid var(--red);
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(12, 34, 61, 0.06);
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  cursor: default;
}

.category-card:hover,
.category-card.is-open {
  z-index: 3;
  outline: none;
  transform: translateY(-5px);
  border-left-color: var(--green);
  box-shadow: 0 18px 34px rgba(12, 34, 61, 0.12);
}

.category-card:focus-visible {
  outline: 3px solid rgba(11, 88, 166, 0.28);
  outline-offset: 4px;
}

.category-name {
  position: relative;
  z-index: 2;
}

.category-name::after {
  display: inline-block;
  margin-left: 8px;
  color: var(--green);
  content: "+";
  font-weight: 800;
  transition: transform 220ms ease;
}

.category-card:hover .category-name::after,
.category-card.is-open .category-name::after {
  transform: rotate(45deg);
}

.category-preview {
  position: absolute;
  left: 12px;
  right: 12px;
  top: calc(100% + 12px);
  z-index: 8;
  overflow: hidden;
  border: 1px solid rgba(11, 88, 166, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 56px rgba(7, 23, 44, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transition: opacity 220ms ease, transform 220ms ease;
}

.category-card:hover .category-preview,
.category-card.is-open .category-preview {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.category-preview img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.category-preview p {
  margin: 0;
  padding: 11px 12px 13px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

details:hover,
details[open] {
  border-color: rgba(11, 88, 166, 0.28);
  box-shadow: 0 12px 28px rgba(12, 34, 61, 0.08);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--navy);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(34px, 4vw, 48px) clamp(18px, 5vw, 72px);
  background: #0b213d;
  color: var(--white);
}

.cta-band h2 {
  max-width: 820px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.contact-section {
  padding: clamp(68px, 8vw, 116px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, var(--navy), #102947);
  color: var(--white);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.64fr);
  gap: clamp(28px, 5vw, 62px);
  max-width: 1180px;
  margin: 0 auto;
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p,
.contact-list {
  color: #d3e0f0;
}

.business-info {
  display: grid;
  gap: 4px;
}

.business-info strong,
.business-info span {
  display: block;
}

.business-info strong {
  color: var(--white);
  font-size: 1.05rem;
}

.fast-contact {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(139, 229, 188, 0.24);
  border-radius: 8px;
  background: rgba(22, 164, 100, 0.12);
}

.fast-contact strong {
  color: var(--white);
}

.fast-contact span {
  color: #d3e0f0;
  line-height: 1.6;
}

.contact-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  min-width: 0;
}

.contact-link {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #d3e0f0;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 229, 188, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.contact-link strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.contact-link span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon.whatsapp {
  background: #25d366;
}

.contact-icon.email {
  background: #0b58a6;
}

.contact-icon.facebook {
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 1.75rem;
}

.contact-icon.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 72%, #515bd4);
}

.contact-icon.tiktok {
  background: #111827;
}

.quote-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(11, 88, 166, 0.18);
  border-color: var(--blue);
  background: var(--white);
}

textarea {
  min-height: 150px;
  padding-top: 13px;
  line-height: 1.55;
  resize: vertical;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-note.subtle {
  color: var(--muted);
  font-weight: 600;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: #04101f;
  color: #c8d5e5;
}

.footer p {
  margin: 0;
}

.subpage-body {
  background: var(--white);
}

.subpage-header {
  min-height: auto;
}

.subpage-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.subpage-hero > picture {
  position: absolute;
  inset: 0;
}

.subpage-hero > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 23, 44, 0.96) 0%, rgba(7, 23, 44, 0.82) 52%, rgba(7, 23, 44, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 23, 44, 0.52), transparent 45%);
}

.subpage-hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 220px 0 56px;
}

.subpage-hero-content h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.subpage-copy {
  max-width: 730px;
  margin-top: 20px;
  color: #e5edf7;
  line-height: 1.75;
  font-size: 1.1rem;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: #c9d8eb;
  font-weight: 700;
}

.subpage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: start;
}

.content-stack {
  display: grid;
  gap: 28px;
}

.content-block {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.content-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.content-block h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.content-block p {
  margin: 0;
}

.bullet-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.aside-panel {
  position: sticky;
  top: 204px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.aside-panel p {
  margin: 0;
  color: #d3e0f0;
}

.aside-links {
  display: grid;
  gap: 10px;
}

.aside-links a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.aside-links a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.related-guides {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-guides a {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(12, 34, 61, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.related-guides a:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 88, 166, 0.28);
  box-shadow: 0 18px 34px rgba(12, 34, 61, 0.12);
}

.related-guides strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
}

.related-guides span {
  color: var(--muted);
  line-height: 1.6;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 11;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 32px rgba(22, 164, 100, 0.32);
  transition: transform 220ms ease, box-shadow 220ms ease;
  animation: whatsappFloat 2.8s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 44px rgba(22, 164, 100, 0.42);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

.service-card.reveal:nth-child(2),
.timeline article.reveal:nth-child(2),
.category-card.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.service-card.reveal:nth-child(3),
.timeline article.reveal:nth-child(3),
.category-card.reveal:nth-child(3) {
  transition-delay: 150ms;
}

.service-card.reveal:nth-child(4),
.timeline article.reveal:nth-child(4),
.category-card.reveal:nth-child(4) {
  transition-delay: 210ms;
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translateX(0);
  }

  to {
    transform: scale(1.08) translateX(-14px);
  }
}

@keyframes quotePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(139, 229, 188, 0.58);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(139, 229, 188, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(139, 229, 188, 0);
  }
}

@keyframes whatsappFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto;
    min-height: 124px;
  }

  .nav.scrolled {
    min-height: 84px;
    padding-inline: 18px;
  }

  .nav.scrolled .brand-logo {
    width: 82px;
    max-height: 78px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .language-switch,
  .nav-cta {
    display: none;
  }

  .nav.open .nav-links,
  .nav.open .language-switch,
  .nav.open .nav-cta {
    display: flex;
  }

  .nav.open {
    grid-template-columns: 1fr auto;
  }

  .nav.open .nav-links {
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav.open .nav-links a {
    padding: 13px 0;
  }

  .nav.open .nav-cta {
    grid-column: 1 / -1;
    margin-bottom: 16px;
  }

  .nav.open .language-switch {
    grid-column: 1 / -1;
    justify-self: start;
    margin-bottom: 10px;
  }

  .split,
  .assurance,
  .contact-card,
  .subpage-grid {
    grid-template-columns: 1fr;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .quote-value-grid {
    grid-template-columns: 1fr;
  }

  .route-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-band {
    display: grid;
    justify-items: start;
  }

  .aside-panel {
    position: static;
  }

  .related-guides {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

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

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

  section[id] {
    scroll-margin-top: 132px;
  }
}

@media (max-width: 680px) {
  .nav {
    min-height: 104px;
    padding-inline: 14px;
  }

  .nav.scrolled {
    min-height: 72px;
    padding-inline: 12px;
  }

  .nav.scrolled .brand-logo {
    width: 72px;
    max-height: 68px;
  }

  .brand-logo {
    width: 102px;
    max-height: 96px;
  }

  .hero {
    min-height: 690px;
  }

  .subpage-hero {
    min-height: 500px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-inline: 14px;
    padding-top: 132px;
  }

  .subpage-hero-content {
    width: calc(100% - 28px);
    margin-inline: 14px;
    padding: 132px 0 36px;
  }

  .subpage-copy {
    font-size: 1rem;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 23, 44, 0.95) 0%, rgba(7, 23, 44, 0.82) 100%);
  }

  .hero-metrics,
  .trust-strip,
  .service-grid,
  .timeline,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .category-card {
    display: grid;
    gap: 14px;
  }

  .category-preview {
    position: static;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .category-card.is-open .category-preview {
    display: block;
  }

  .hero-metrics span {
    min-height: 66px;
  }

  .trust-strip div,
  .service-card,
  .timeline article,
  .quote-form {
    padding: 20px;
  }

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

  .footer {
    display: grid;
  }

  h1 {
    font-size: 2.18rem;
    line-height: 1;
  }

  h2 {
    font-size: 1.8rem;
  }

  section[id] {
    scroll-margin-top: 112px;
  }
}
