/* ============================================================
   SOUTH DISPATCH — Cargo Logistics Services
   Design system & layout
   ============================================================ */

:root {
  /* Color palette */
  --navy-950: #071120;
  --navy-900: #0a1a30;
  --navy-800: #0f2544;
  --navy-700: #16325a;
  --gold: #f0a92e;
  --gold-soft: #ffc55c;
  --gold-dark: #d98f1c;
  --ink: #16233a;
  --muted: #5b6b7e;
  --line: #e4e9f1;
  --tint: #f4f7fb;
  --white: #ffffff;

  /* Typography */
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 20px rgba(10, 26, 48, 0.06);
  --shadow-md: 0 16px 44px rgba(10, 26, 48, 0.10);
  --shadow-lg: 0 30px 70px rgba(10, 26, 48, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}

.btn--lg { padding: 16px 34px; font-size: 16px; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy-950);
  box-shadow: 0 10px 26px rgba(240, 169, 46, 0.35);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(240, 169, 46, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }

.btn--dark {
  background: var(--navy-900);
  color: var(--white);
}
.btn--dark:hover { background: var(--navy-700); transform: translateY(-2px); }

/* ---------- Eyebrow & headings ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(240, 169, 46, 0.18);
}
.eyebrow--dark { color: var(--gold-soft); }

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--navy-900);
}
.section__title--light { color: var(--white); }

.section__lead {
  font-size: 18px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 640px;
}
.section__lead--muted { color: #a9b7c9; }

.section__text {
  color: var(--muted);
  margin-top: 16px;
}

.section {
  padding: 96px 0;
}
.section--tint { background: var(--tint); }
.section--dark { background: linear-gradient(160deg, var(--navy-950), var(--navy-800)); }

.section__head {
  text-align: center;
  margin-bottom: 60px;
}
.section__head .section__lead { margin-left: auto; margin-right: auto; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy-950);
  color: #b9c6d8;
  font-size: 13px;
  padding: 9px 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { color: var(--gold); flex: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: var(--gold);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy-900);
  letter-spacing: -0.3px;
}
.brand__sub {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav__links { display: flex; gap: 30px; }
.nav__link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav__link.active { color: var(--navy-900); font-weight: 600; }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: 0.3s var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 80px 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat,
    var(--navy-900);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 17, 32, 0.96) 0%, rgba(7, 17, 32, 0.82) 45%, rgba(7, 17, 32, 0.45) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6.2vw, 70px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 8px 0 22px;
}
.text-gold {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: 18px;
  color: #c6d2e2;
  max-width: 540px;
  margin-bottom: 34px;
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero__points { display: flex; gap: 26px; flex-wrap: wrap; }
.hero__points li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: #d5dfeb; font-weight: 500;
}
.check {
  display: grid; place-items: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(240, 169, 46, 0.2);
  color: var(--gold-soft);
  font-size: 12px;
}

/* Hero quote card */
.hero__card { display: flex; justify-content: flex-end; }
.quote-card {
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.quote-card__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.quote-card__label {
  font-family: var(--font-display);
  font-weight: 600; font-size: 16px;
}
.quote-card__badge {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: #04131f;
  background: #4ade80;
  padding: 4px 10px; border-radius: 999px;
}
.quote-card__form { display: flex; gap: 8px; margin-bottom: 10px; }
.quote-card__form input {
  flex: 1; min-width: 0;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
}
.quote-card__form input::placeholder { color: #93a4ba; }
.quote-card__form .btn { padding: 12px 18px; font-size: 14px; }
.quote-card__sample {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: #93a4ba;
  margin-bottom: 20px;
}
.quote-card__sample .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; }
.quote-card__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
}
.qstat { display: flex; flex-direction: column; }
.qstat strong {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700; color: var(--gold-soft);
}
.qstat span { font-size: 12.5px; color: #a9b7c9; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  display: flex; justify-content: center;
  padding-top: 7px;
}
.hero__scroll-line {
  width: 3px; height: 9px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--navy-900);
  color: var(--white);
  border-top: 3px solid var(--gold);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 24px;
}
.trust-strip__item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-strip__item:last-child { border-right: none; }
.tnum {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 700; color: var(--gold-soft);
  letter-spacing: -0.5px;
}
.tlabel { font-size: 13px; color: #a9b7c9; letter-spacing: 0.4px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}
.about__badge {
  position: absolute;
  left: -22px; bottom: 30px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 26px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  border-left: 4px solid var(--gold);
}
.about__badge strong {
  font-family: var(--font-display);
  font-size: 24px; color: var(--gold-soft);
}
.about__badge span { font-size: 12.5px; color: #b9c6d8; }

.about__body .section__lead strong { color: var(--navy-900); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0;
}
.about__item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.about__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about__icon { font-size: 24px; line-height: 1; }
.about__item h4 { font-family: var(--font-display); font-size: 15.5px; margin-bottom: 3px; color: var(--navy-900); }
.about__item p { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(240, 169, 46, 0.4);
}
.service-card__icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  font-size: 28px;
  background: var(--tint);
  border-radius: 16px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.service-card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.service-card__link {
  font-family: var(--font-display);
  font-weight: 600; font-size: 14px;
  color: var(--gold-dark);
}
.service-card__link span { display: inline-block; transition: transform 0.25s var(--ease); }
.service-card__link:hover span { transform: translateX(5px); }

/* ============================================================
   WHY
   ============================================================ */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why__list { margin-top: 34px; display: flex; flex-direction: column; gap: 26px; }
.why__item { display: flex; gap: 18px; align-items: flex-start; }
.why__num {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  line-height: 1;
  flex: none;
}
.why__item h4 { font-family: var(--font-display); font-size: 17px; color: var(--navy-900); margin-bottom: 4px; }
.why__item p { color: var(--muted); font-size: 15px; }

.why__media { position: relative; }
.why__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}
.why__card {
  position: absolute;
  right: -20px; top: 40px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: flex; flex-direction: column;
  border-bottom: 4px solid var(--gold);
}
.why__card strong {
  font-family: var(--font-display);
  font-size: 30px; color: var(--navy-900);
}
.why__card span { font-size: 13px; color: var(--muted); }

/* ============================================================
   PROCESS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.step:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.09); }
.step__num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.step h3 { font-family: var(--font-display); font-size: 18px; color: var(--white); margin-bottom: 8px; }
.step p { color: #a9b7c9; font-size: 14.5px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial__stars { color: var(--gold); letter-spacing: 3px; font-size: 16px; margin-bottom: 16px; }
.testimonial blockquote { color: var(--ink); font-size: 15.5px; font-style: italic; margin-bottom: 22px; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  flex: none;
}
.testimonial figcaption strong { display: block; font-family: var(--font-display); font-size: 14.5px; color: var(--navy-900); }
.testimonial figcaption span { font-size: 12.5px; color: var(--muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta {
  background:
    linear-gradient(110deg, rgba(7, 17, 32, 0.94), rgba(15, 37, 68, 0.9)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: var(--white);
  padding: 72px 0;
}
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta__text h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
}
.cta__text p { color: #c6d2e2; margin-top: 8px; font-size: 16px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact__info {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.contact__info h3 { font-family: var(--font-display); font-size: 22px; color: var(--navy-900); }
.contact__fullname { font-size: 11.5px; letter-spacing: 1.2px; color: var(--gold-dark); font-weight: 700; text-transform: uppercase; margin: 4px 0 22px; }
.contact__list { display: flex; flex-direction: column; gap: 20px; }
.contact__list li { display: flex; gap: 14px; align-items: flex-start; }
.contact__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--tint);
  font-size: 18px; flex: none;
}
.contact__list strong { display: block; font-family: var(--font-display); font-size: 14.5px; color: var(--navy-900); }
.contact__list span { font-size: 14px; color: var(--muted); }

.contact__map {
  margin-top: 26px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 220px;
}
.contact__map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.9); }

.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-row .field { margin-bottom: 0; }
.field label {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; color: var(--navy-900);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(240, 169, 46, 0.15);
}
.field textarea { resize: vertical; }
.contact__submit { width: 100%; }
.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #16a34a;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-950);
  color: #b9c6d8;
  padding-top: 72px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 52px;
}
.brand--footer .brand__name { color: var(--white); }
.brand--footer .brand__sub { color: #8296ad; }
.footer__brand p { margin-top: 18px; font-size: 14px; color: #93a4ba; max-width: 300px; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 14px;
  color: #93a4ba;
  margin-bottom: 11px;
  transition: color 0.25s var(--ease);
}
.footer__col a:hover { color: var(--gold-soft); }
.footer__col p { margin-bottom: 11px; line-height: 1.6; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #8296ad;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--navy-900);
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 90;
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--navy-700); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { justify-content: flex-start; }
  .about, .why, .contact { grid-template-columns: 1fr; gap: 44px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .about__media img, .why__media img { aspect-ratio: 4 / 3; }
  .why__card { right: 12px; }
  .about__badge { left: 12px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .topbar { display: none; }
  .nav__links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s var(--ease);
  }
  .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: 14px 24px; }
  .nav__link::after { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-strip__item:nth-child(2) { border-right: none; }
  .trust-strip__item { border-right: 1px solid rgba(255,255,255,0.12); }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .hero { min-height: auto; padding: 60px 0 100px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
