/* ═══════════════════════════════════════════════════════
   Sea Trans — style.css
   ═══════════════════════════════════════════════════════ */

/* ─── RESET & BASE ────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-50: #fff0f2;
  --blue-100: #fed7da;
  --blue-500: #e5314a;
  --blue-600: #c41230;
  --blue-700: #9b0e26;
  --blue-900: #6b0a1a;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 16px 48px rgba(196, 18, 48, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img,
svg {
  display: block;
}
input,
select,
textarea,
button {
  font-family: var(--font);
}

/* ─── UTILITY ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.gradient-text {
  background: linear-gradient(135deg, #f87171, #c41230);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  margin-top: 10px;
}
.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 18, 48, 0.35);
}
.btn-white {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-1px);
}
.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* ─── BADGE ───────────────────────────────────────────── */
.badge,
.section-badge {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid var(--blue-100);
  margin-bottom: 16px;
}

/* ─── NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 90px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--slate-900);
  flex-shrink: 0;
}
.logo-img {
  height: 100px;
  width: auto;
  display: block;
  max-width: 280px;
  object-fit: contain;
}
.logo strong {
  color: var(--blue-600);
  font-weight: 800;
}
.nav-links {
  display: flex;
  gap: 32px;
  margin-right: auto;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--blue-600);
}
.nav-cta {
  padding: 9px 20px;
  font-size: 0.875rem;
}

/* Nav phone number */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-600);
}
.nav-phone a {
  color: var(--blue-600);
  transition: color var(--transition);
}
.nav-phone a:hover {
  color: var(--blue-700);
}
.nav-phone svg {
  flex-shrink: 0;
}
.phone-short {
  display: none;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
/* ── Ken Burns video-like background ─────────────── */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: transform, opacity;
  animation-duration: 30s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}
.s1 {
  background-image: url('assets/Banner.png');
  animation-name: kb1;
  animation-delay: 0s;
}
.s2 {
  background-image: url('images/global-ship.jpg');
  animation-name: kb2;
  animation-delay: 6s;
}
.s3 {
  background-image: url('images/delivery-truck.jpg');
  animation-name: kb3;
  animation-delay: 12s;
}
.s4 {
  background-image: url('images/cargo-plane.jpg');
  animation-name: kb4;
  animation-delay: 18s;
}
.s5 {
  background-image: url('images/warehouse.jpg');
  animation-name: kb5;
  animation-delay: 24s;
}

@keyframes kb1 {
  0% {
    opacity: 0;
    transform: scale(1) translate(0%, 0%);
  }
  3% {
    opacity: 1;
  }
  17% {
    opacity: 1;
    transform: scale(1.1) translate(2%, 1%);
  }
  20% {
    opacity: 0;
    transform: scale(1.12) translate(2.5%, 1.5%);
  }
  20.1%,
  100% {
    opacity: 0;
    transform: scale(1) translate(0%, 0%);
  }
}
@keyframes kb2 {
  0% {
    opacity: 0;
    transform: scale(1) translate(0%, 0%);
  }
  3% {
    opacity: 1;
  }
  17% {
    opacity: 1;
    transform: scale(1.1) translate(-2%, -1%);
  }
  20% {
    opacity: 0;
    transform: scale(1.12) translate(-2.5%, -1.5%);
  }
  20.1%,
  100% {
    opacity: 0;
    transform: scale(1) translate(0%, 0%);
  }
}
@keyframes kb3 {
  0% {
    opacity: 0;
    transform: scale(1) translate(0%, 0%);
  }
  3% {
    opacity: 1;
  }
  17% {
    opacity: 1;
    transform: scale(1.1) translate(1%, -2%);
  }
  20% {
    opacity: 0;
    transform: scale(1.12) translate(1.5%, -2.5%);
  }
  20.1%,
  100% {
    opacity: 0;
    transform: scale(1) translate(0%, 0%);
  }
}
@keyframes kb4 {
  0% {
    opacity: 0;
    transform: scale(1) translate(0%, 0%);
  }
  3% {
    opacity: 1;
  }
  17% {
    opacity: 1;
    transform: scale(1.1) translate(-1%, 2%);
  }
  20% {
    opacity: 0;
    transform: scale(1.12) translate(-1.5%, 2.5%);
  }
  20.1%,
  100% {
    opacity: 0;
    transform: scale(1) translate(0%, 0%);
  }
}
@keyframes kb5 {
  0% {
    opacity: 0;
    transform: scale(1) translate(0%, 0%);
  }
  3% {
    opacity: 1;
  }
  17% {
    opacity: 1;
    transform: scale(1.1) translate(2%, -1%);
  }
  20% {
    opacity: 0;
    transform: scale(1.12) translate(2.5%, -1.5%);
  }
  20.1%,
  100% {
    opacity: 0;
    transform: scale(1) translate(0%, 0%);
  }
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.82) 0%,
    rgba(107, 10, 26, 0.72) 55%,
    rgba(30, 41, 59, 0.82) 100%
  );
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 600px 500px at 20% 60%,
      rgba(196, 18, 48, 0.25) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 400px 400px at 80% 20%,
      rgba(155, 14, 38, 0.15) 0%,
      transparent 70%
    );
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}
.hero-text {
  color: var(--white);
}
.hero-text .badge {
  background: rgba(255, 255, 255, 0.12);
  color: #93c5fd;
  border-color: rgba(255, 255, 255, 0.15);
}
.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}
.hero-text p {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 480px;
  line-height: 1.7;
}
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: #cbd5e1;
}
.hero-features li svg {
  width: 18px;
  height: 18px;
  color: #34d399;
  flex-shrink: 0;
}

/* Hero image strip */
.hero-imgs {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.hero-img-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 6px 16px 6px 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-img-pill img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-img-pill span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #cbd5e1;
  white-space: nowrap;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.form-tabs {
  display: flex;
  border-bottom: 1px solid var(--slate-200);
}
.tab {
  flex: 1;
  padding: 14px 20px;
  background: var(--blue-600);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  cursor: default;
  letter-spacing: 0.01em;
  border-bottom: 3px solid transparent;
  pointer-events: none;
}
.tab.active {
  background: var(--blue-600);
  color: var(--white);
  border-bottom-color: var(--blue-700, #1d4ed8);
}

.form-panel {
  display: none;
  padding: 28px;
}
.form-panel.active {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row + .form-group {
  margin-top: 14px;
}
.form-group + .form-row {
  margin-top: 14px;
}
.form-row + .form-row {
  margin-top: 14px;
}

label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-700);
  letter-spacing: 0.01em;
}
input,
select,
textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--slate-800);
  background: var(--white);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(196, 18, 48, 0.15);
}
input::placeholder,
textarea::placeholder {
  color: var(--slate-400);
}
textarea {
  resize: vertical;
  min-height: 80px;
}

.form-status {
  border-radius: var(--radius-sm);
  padding: 0;
  font-size: 0.875rem;
  font-weight: 500;
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.3s,
    padding 0.3s,
    margin 0.3s;
}
.form-status.success {
  background: #dcfce7;
  color: #15803d;
  padding: 12px 16px;
  max-height: 80px;
  margin-bottom: 12px;
}
.form-status.error {
  background: #fee2e2;
  color: #b91c1c;
  padding: 12px 16px;
  max-height: 80px;
  margin-bottom: 12px;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--slate-400);
  margin-top: 10px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-dot {
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%,
  100% {
    top: 8px;
    opacity: 1;
  }
  80% {
    top: 26px;
    opacity: 0;
  }
}

/* ─── STATS ───────────────────────────────────────────── */
.stats {
  background: var(--slate-900);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 40px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-card:last-child {
  border-right: none;
}
.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--slate-400);
  font-weight: 500;
}

/* ─── SECTION HEADER ──────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ─── SERVICES ────────────────────────────────────────── */
.services {
  background: var(--slate-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--slate-200);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
}
.service-icon.blue {
  background: #fee2e2;
  color: #c41230;
}
.service-icon.orange {
  background: #ffedd5;
  color: #ea580c;
}
.service-icon.green {
  background: #dcfce7;
  color: #16a34a;
}
.service-icon.purple {
  background: #ede9fe;
  color: #7c3aed;
}
.service-icon.red {
  background: #fee2e2;
  color: #dc2626;
}
.service-icon.teal {
  background: #ccfbf1;
  color: #0d9488;
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--slate-900);
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-600);
  transition: gap var(--transition);
}
.service-link:hover {
  color: var(--blue-700);
}

/* Services photo strip */
.services-img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  grid-column: 1 / -1;
}
.services-img-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  cursor: default;
}
.services-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.services-img-item:hover img {
  transform: scale(1.06);
}
.simg-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.88) 0%,
    transparent 100%
  );
  color: var(--white);
}
.simg-caption strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.simg-caption span {
  font-size: 0.8125rem;
  color: #cbd5e1;
}

/* ─── HOW IT WORKS ────────────────────────────────────── */
.how-it-works {
  background: var(--white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.step-number {
  width: 72px;
  height: 72px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(196, 18, 48, 0.35);
}
.step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--slate-900);
}
.step-content p {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.65;
}
.step-connector {
  position: absolute;
  top: 36px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--blue-600), var(--blue-100));
  z-index: 0;
}

/* ─── WHY US ──────────────────────────────────────────── */
.why-us {
  background: var(--slate-50);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  position: relative;
}
.why-image-bg {
  background: linear-gradient(135deg, var(--blue-50), #ede9fe);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.why-badge-float {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 1;
}
.why-badge-float strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue-600);
}
.why-badge-float span {
  font-size: 0.8rem;
  color: var(--slate-500, #64748b);
  font-weight: 500;
}
/* Real photo in why-us */
.why-photo {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  height: 280px;
  display: block;
}
.why-illustration--hidden {
  display: none;
}
.why-illustration svg {
  width: 100%;
  height: auto;
}

.why-text .section-badge {
  display: inline-block;
}
.why-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--slate-900);
  margin: 16px 0 18px;
}
.why-text > p {
  font-size: 1rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-600);
}
.why-point-icon svg {
  width: 22px;
  height: 22px;
}
.why-point h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}
.why-point p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ────────────────────────────────────── */
.testimonials {
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial-card.featured {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
  grid-row: span 1;
  transform: scale(1.02);
}
.testimonial-card.featured:hover {
  transform: scale(1.02) translateY(-3px);
}
.stars {
  font-size: 1.1rem;
  color: #fbbf24;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.testimonial-card.featured .stars {
  color: #fcd34d;
}
.testimonial-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slate-700);
  margin-bottom: 20px;
}
.testimonial-card.featured p {
  color: #fecaca;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  flex-shrink: 0;
}
.avatar.blue {
  background: var(--blue-600);
}
.avatar.orange {
  background: #ea580c;
}
.avatar.green {
  background: #16a34a;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--slate-900);
}
.testimonial-card.featured .testimonial-author strong {
  color: var(--white);
}
.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--slate-500, #64748b);
}
.testimonial-card.featured .testimonial-author span {
  color: #fecaca;
}

/* ─── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-700), #7f0d1e);
  padding: 72px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-inner p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition:
    background var(--transition),
    color var(--transition);
}
.social-links a:hover {
  background: var(--blue-600);
  color: var(--white);
}
.social-links svg {
  width: 16px;
  height: 16px;
}
.footer-col h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li {
  font-size: 0.875rem;
  color: #94a3b8;
}
.footer-col a {
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.875rem;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-legal a:hover {
  color: var(--white);
}

/* ─── FIELD ERROR ─────────────────────────────────────── */
.field-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

/* ─── SPINNER ─────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ─── TRACKING RESULT ─────────────────────────────────── */
.tracking-result {
  margin-top: 20px;
  padding: 20px;
  background: var(--slate-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
}
.tr-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.tr-id {
  font-size: 0.9rem;
  color: var(--slate-600);
  font-weight: 600;
  margin-bottom: 4px;
}
.tr-status {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.tr-eta {
  text-align: right;
}
.tr-eta span {
  display: block;
  font-size: 0.75rem;
  color: var(--slate-400);
}
.tr-eta strong {
  font-size: 1rem;
  color: var(--slate-800);
}
.tr-route {
  font-size: 0.875rem;
  color: var(--slate-600);
  margin-bottom: 16px;
}
.track-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.track-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  position: relative;
}
.track-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 22px;
  bottom: -8px;
  width: 2px;
  background: var(--slate-200);
}
.track-step.done:not(:last-child)::before {
  background: var(--blue-200, #fecaca);
}
.track-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--slate-300);
  background: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.track-step.done .track-dot {
  background: var(--blue-600);
  border-color: var(--blue-600);
}
.track-step.current .track-dot {
  box-shadow: 0 0 0 4px rgba(196, 18, 48, 0.2);
}
.track-step-info strong {
  display: block;
  font-size: 0.875rem;
  color: var(--slate-800);
}
.track-step-info span {
  font-size: 0.8rem;
  color: var(--slate-400);
}

/* ─── FADE-UP ANIMATION ───────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ─── PARTNERS ────────────────────────────────────────── */
.partners {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--slate-100);
}
.partners-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 24px;
}
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.partner-logo {
  padding: 12px 28px;
  border-right: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}
.partner-logo:last-child {
  border-right: none;
}
.partner-logo:hover {
  opacity: 0.8;
}
.partner-logo img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: none;
  transition: filter var(--transition);
}
.partner-logo:hover img {
  filter: none;
}

/* ─── APP SECTION ─────────────────────────────────────── */
.app-section {
  background: var(--slate-900);
}
.app-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}
.app-text {
  color: var(--white);
}
.app-text .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #93c5fd;
  border-color: rgba(255, 255, 255, 0.15);
}
.app-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 16px 0 18px;
}
.app-text > p {
  font-size: 1.0625rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 28px;
}
.app-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.app-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: #cbd5e1;
}
.app-features li svg {
  width: 18px;
  height: 18px;
  color: #34d399;
  flex-shrink: 0;
}
.app-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  color: var(--white);
  transition:
    background var(--transition),
    border-color var(--transition);
}
.store-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}
.store-btn div {
  display: flex;
  flex-direction: column;
}
.store-btn span {
  font-size: 0.72rem;
  color: #94a3b8;
}
.store-btn strong {
  font-size: 0.9375rem;
  font-weight: 700;
}

.app-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.app-img-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(196, 18, 48, 0.35) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}
.app-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.app-rating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-align: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.app-rating-badge .app-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 4px;
}
.app-rating-badge strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--slate-900);
}
.app-rating-badge span {
  font-size: 0.75rem;
  color: var(--slate-500, #64748b);
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq {
  background: var(--slate-50);
}
.faq-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}
.faq-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.faq-cta-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--slate-200);
  text-align: center;
}
.faq-cta-card svg {
  margin: 0 auto 12px;
  color: var(--blue-600);
}
.faq-cta-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.faq-cta-card p {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin-bottom: 18px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--slate-200);
}
.faq-item:first-child {
  border-top: 1px solid var(--slate-200);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-900);
  cursor: pointer;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--blue-600);
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--slate-400);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--blue-600);
}
.faq-item.open .faq-question {
  color: var(--blue-600);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-text h1 {
    font-size: 2.8rem;
  }
  .hero-form-card {
    max-width: 600px;
  }
  .why-inner {
    grid-template-columns: 1fr;
  }
  .why-image {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .app-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-image-col {
    order: 2;
  }
  .faq-list {
    order: 1;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .phone-num {
    display: none;
  }
  .phone-short {
    display: inline;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .step-connector {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card.featured {
    transform: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-card:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-card:last-child,
  .stat-card:nth-child(3) {
    border-bottom: none;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-imgs {
    flex-wrap: wrap;
    gap: 8px;
  }
  .services-img-strip {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    gap: 0;
  }
  .partner-logo {
    padding: 10px 18px;
    border-right: none;
    border-bottom: 1px solid var(--slate-200);
  }
  .partner-logo img {
    height: 36px;
  }
  .partner-logo:last-child {
    border-bottom: none;
  }
}
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-imgs {
    display: none;
  }
  .app-buttons {
    flex-direction: column;
  }
  .services-img-strip {
    grid-template-columns: 1fr;
  }
}

/* ─── QUOTE MODAL ─────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--slate-900);
}
.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--slate-100);
  color: var(--slate-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    color var(--transition);
  flex-shrink: 0;
}
.modal-close:hover {
  background: var(--slate-200);
  color: var(--slate-900);
}
.modal-body {
  padding: 24px;
}
@media (max-width: 480px) {
  .modal-box {
    max-height: 95vh;
    border-radius: var(--radius-md);
  }
  .modal-header {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
}
