/* ─── Variables ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal:        #0d4f63;
  --teal-mid:    #1a8fa5;
  --teal-light:  #e0f4f9;
  --orange:      #f5821f;
  --orange-d:    #d96a08;
  --gold:        #fbbf24;
  --dark:        #0a2e3a;
  --gray-900:    #111827;
  --gray-700:    #374151;
  --gray-500:    #6b7280;
  --gray-200:    #e5e7eb;
  --gray-100:    #f3f4f6;
  --white:       #ffffff;
  --radius:      14px;
  --shadow:      0 4px 24px rgba(13,79,99,.13);
  --shadow-lg:   0 12px 48px rgba(13,79,99,.2);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-900); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

/* ─── Utility ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); background: rgba(245,130,31,.12);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 16px;
}
.section-title { font-family: 'Sora', sans-serif; font-size: clamp(1.9rem,3.5vw,2.75rem); font-weight: 900; line-height: 1.15; color: var(--dark); }
.section-title span { color: var(--teal-mid); }
.section-sub { font-size: 1.02rem; color: var(--gray-500); max-width: 580px; margin-top: 12px; line-height: 1.75; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 100px; font-weight: 700; font-size: .92rem; cursor: pointer; border: none; transition: all .25s; font-family: inherit; }
.btn-primary  { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,130,31,.35); }
.btn-teal   { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,79,99,.3); }
.btn-ghost  { background: rgba(255,255,255,.15); color: var(--white); border: 2px solid rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.25); border-color: var(--white); transform: translateY(-2px); }

/* ─── Topbar ──────────────────────────────────────────────── */
.topbar { background: var(--dark); color: rgba(255,255,255,.7); font-size: .8rem; padding: 9px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,.7); transition: color .2s; }
.topbar a:hover { color: var(--orange); }
.topbar i { color: var(--orange); margin-right: 5px; }

/* ─── Navbar ──────────────────────────────────────────────── */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; }
.logo-svg-wrap { height: 76px; display: flex; align-items: center; }
.logo-svg-wrap img { height: 100%; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-weight: 500; font-size: .88rem; color: var(--gray-700); transition: all .2s; }
.nav-links a:hover, .nav-links a.active { background: var(--teal-light); color: var(--teal); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; font-size: 1.4rem; cursor: pointer; color: var(--dark); background: none; border: none; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 20px; border-top: 1px solid var(--gray-200); }
.mobile-menu a { padding: 10px 14px; border-radius: 8px; font-weight: 500; color: var(--gray-700); }
.mobile-menu a:hover { background: var(--teal-light); color: var(--teal); }
.mobile-menu.open { display: flex; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(10,46,58,.94) 0%, rgba(13,79,99,.82) 55%, rgba(26,143,165,.55) 100%);
}
.hero-grid-pattern {
  position: absolute; inset: 0; z-index: 2;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size: 56px 56px;
}
.hero .container { position: relative; z-index: 3; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 56px; padding: 80px 24px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: 8px 18px; font-size: .8rem; font-weight: 600; color: var(--white); margin-bottom: 22px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.35)} }
.hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(2.2rem,4.5vw,3.7rem); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 22px; }
.hero h1 .orange { color: var(--orange); }
.hero h1 .gold   { color: var(--gold); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 500px; margin-bottom: 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-stat-num { font-family: 'Sora', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; }
.hero-stat-num em { color: var(--orange); font-style: normal; }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 4px; font-weight: 500; }

/* ─── Hero Right Cards ─────────────────────────────────────── */
.hero-cards { display: flex; flex-direction: column; gap: 14px; }
.hcard { background: rgba(255,255,255,.1); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); padding: 22px; }
.hcard-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.hcard-title { font-weight: 700; color: var(--white); font-size: .9rem; }
.hcard-badge { font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.badge-green { background: #4ade80; color: #064e3b; }
.badge-blue  { background: #60a5fa; color: #1e3a8a; }
.badge-gold  { background: var(--gold); color: #78350f; }
.hcard-route { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hcard-city { text-align: center; min-width: 70px; }
.hcard-city strong { display: block; color: var(--white); font-size: .88rem; }
.hcard-city span  { color: rgba(255,255,255,.55); font-size: .7rem; }
.hcard-line { flex: 1; position: relative; height: 2px; background: rgba(255,255,255,.2); }
.hcard-line::after { content: attr(data-icon); position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-size: .9rem; }
.hcard-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.hcard-meta-item { background: rgba(255,255,255,.08); border-radius: 8px; padding: 7px 8px; }
.hcard-meta-item span { display: block; font-size: .65rem; color: rgba(255,255,255,.5); }
.hcard-meta-item strong { font-size: .8rem; color: var(--white); }
.hero-float { position: absolute; right: -10px; top: -14px; z-index: 10; background: var(--orange); border-radius: 12px; padding: 10px 16px; font-weight: 700; font-size: .78rem; color: var(--white); box-shadow: 0 8px 24px rgba(245,130,31,.45); animation: float 4s ease-in-out infinite; white-space: nowrap; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ─── Marquee ─────────────────────────────────────────────── */
.marquee-bar { background: var(--dark); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 48px; animation: marquee 32s linear infinite; width: max-content; }
@keyframes marquee { to { transform: translateX(-50%); } }
.mitem { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.5); font-size: .82rem; font-weight: 600; white-space: nowrap; }
.mitem i { color: var(--orange); }
.mdot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); opacity: .35; }

/* ─── Destinations ────────────────────────────────────────── */
#destinations { background: var(--gray-100); }
.dest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
.dest-card { border-radius: 20px; overflow: hidden; position: relative; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: var(--shadow-lg); transition: transform .3s; }
.dest-card:hover { transform: translateY(-6px); }
.dest-photo { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .4s; }
.dest-card:hover .dest-photo { transform: scale(1.04); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,46,58,.92) 0%, transparent 55%); }
.dest-body { position: relative; z-index: 1; padding: 32px; }
.dest-flag { font-size: 2rem; margin-bottom: 8px; }
.dest-name { font-family: 'Sora', sans-serif; font-size: 1.7rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.dest-port { color: rgba(255,255,255,.7); font-size: .88rem; margin-bottom: 14px; }
.dest-port i { color: var(--orange); margin-right: 6px; }
.dest-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dest-tag { background: rgba(255,255,255,.15); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.2); border-radius: 100px; padding: 5px 14px; font-size: .75rem; font-weight: 600; color: var(--white); }
.dest-transit { position: absolute; top: 20px; right: 20px; z-index: 1; background: var(--orange); color: var(--white); border-radius: 10px; padding: 8px 14px; font-weight: 700; font-size: .78rem; text-align: center; }
.dest-transit span { display: block; font-size: 1.1rem; font-weight: 900; }

/* ─── Services ────────────────────────────────────────────── */
#services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.svc-card { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); transition: all .3s; border: 2px solid transparent; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal-mid); }
.svc-photo { height: 190px; overflow: hidden; position: relative; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.svc-card:hover .svc-photo img { transform: scale(1.06); }
.svc-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(10,46,58,.5) 100%); }
.svc-tag { position: absolute; top: 14px; left: 14px; font-size: .7rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; }
.tag-popular { background: var(--orange); color: var(--white); }
.tag-express  { background: #4ade80; color: #064e3b; }
.tag-special  { background: var(--gold); color: #78350f; }
.svc-body { padding: 28px; background: var(--white); }
.svc-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.si-teal   { background: var(--teal-light); color: var(--teal); }
.si-orange { background: rgba(245,130,31,.12); color: var(--orange); }
.si-gold   { background: rgba(251,191,36,.15); color: #b45309; }
.si-purple { background: #f3e8ff; color: #7c3aed; }
.si-green  { background: #d1fae5; color: #059669; }
.si-blue   { background: #dbeafe; color: #1d4ed8; }
.svc-title { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.svc-desc  { font-size: .85rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; }
.svc-list  { display: flex; flex-direction: column; gap: 7px; }
.svc-list li { font-size: .82rem; color: var(--gray-700); padding-left: 16px; position: relative; }
.svc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal-mid); font-weight: 700; }

/* ─── Stats ───────────────────────────────────────────────── */
.stats-bar { background: linear-gradient(135deg, var(--orange) 0%, #fb923c 100%); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 24px; text-align: center; }
.stat-n { font-family: 'Sora', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-l { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.85); }

/* ─── HOW IT WORKS ────────────────────────────────────────── */
#process { background: var(--gray-100); }
.process-header { text-align: center; margin-bottom: 72px; }
.process-header .section-sub { margin: 12px auto 0; }

/* Phase label */
.phase-label {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 800;
  color: var(--teal); text-transform: uppercase; letter-spacing: .08em;
  margin: 56px 0 32px;
}
.phase-label::before, .phase-label::after { content: ''; flex: 1; height: 2px; background: var(--gray-200); }
.phase-label:first-of-type { margin-top: 0; }

/* Step card layout */
.step-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.step-card {
  background: var(--white); border-radius: 18px; padding: 28px;
  box-shadow: var(--shadow); display: flex; gap: 20px;
  border-left: 4px solid transparent; transition: all .3s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-left-color: var(--teal-mid); }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.sc-1 { background: linear-gradient(135deg,var(--teal),var(--teal-mid)); color: var(--white); }
.sc-2 { background: linear-gradient(135deg,var(--orange),#fb923c); color: var(--white); }
.sc-3 { background: linear-gradient(135deg,#7c3aed,#a78bfa); color: var(--white); }
.sc-4 { background: linear-gradient(135deg,#f59e0b,var(--gold)); color: var(--white); }
.sc-5 { background: linear-gradient(135deg,#0d9488,#2dd4bf); color: var(--white); }
.sc-6 { background: linear-gradient(135deg,#059669,#34d399); color: var(--white); }
.sc-7 { background: linear-gradient(135deg,#1d4ed8,#60a5fa); color: var(--white); }
.step-body { flex: 1; }
.step-num  { font-size: .7rem; font-weight: 700; color: var(--gray-500); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px; }
.step-title { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.step-desc  { font-size: .83rem; color: var(--gray-500); line-height: 1.7; }
.step-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.chip { background: var(--gray-100); border-radius: 8px; padding: 4px 12px; font-size: .73rem; font-weight: 600; color: var(--gray-700); display: flex; align-items: center; gap: 5px; }
.chip i { color: var(--teal-mid); font-size: .75rem; }
/* Full-width step card */
.step-card.full { grid-column: 1 / -1; }

/* Mailing address box */
.address-box {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  border-radius: 18px; padding: 32px 36px; margin-top: 24px; color: var(--white);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; align-items: start;
}
.addr-col h4 { font-family: 'Sora', sans-serif; font-weight: 800; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; color: rgba(255,255,255,.7); }
.addr-block { background: rgba(255,255,255,.12); border-radius: 10px; padding: 14px 18px; font-size: .85rem; line-height: 1.9; font-weight: 500; }
.addr-block .name-line { font-weight: 800; color: var(--gold); font-size: .9rem; }
.addr-note { font-size: .8rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-top: 12px; }
.addr-note i { color: var(--gold); margin-right: 6px; }

/* ─── Why Us ──────────────────────────────────────────────── */
#why-us { background: linear-gradient(135deg, var(--dark) 0%, #0a3d52 100%); }
#why-us .section-title { color: var(--white); }
#why-us .section-sub  { color: rgba(255,255,255,.65); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px; }
.why-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px; transition: all .3s; }
.why-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); border-color: rgba(245,130,31,.4); }
.why-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(245,130,31,.15); border: 1px solid rgba(245,130,31,.3); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--orange); margin-bottom: 18px; }
.why-title { font-weight: 700; color: var(--white); font-size: .98rem; margin-bottom: 9px; }
.why-desc  { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.75; }

/* ─── Photo Gallery ───────────────────────────────────────── */
#gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: 220px 220px;
  gap: 14px; margin-top: 48px;
}
.gphoto { border-radius: var(--radius); overflow: hidden; position: relative; }
.gphoto img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gphoto:hover img { transform: scale(1.06); }
.gphoto:nth-child(1) { grid-column: 1/3; grid-row: 1/2; }
.gphoto:nth-child(2) { grid-column: 3/4; grid-row: 1/2; }
.gphoto:nth-child(3) { grid-column: 4/5; grid-row: 1/3; }
.gphoto:nth-child(4) { grid-column: 1/2; grid-row: 2/3; }
.gphoto:nth-child(5) { grid-column: 2/4; grid-row: 2/3; }
.gphoto-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(10,46,58,.85) 0%, transparent 100%); padding: 16px 18px 14px; color: var(--white); font-weight: 700; font-size: .82rem; }

/* ─── Cargo Types ─────────────────────────────────────────── */
#cargo { background: var(--gray-100); }
.cargo-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 48px; }
.cargo-card { background: var(--white); border-radius: var(--radius); padding: 24px 16px; text-align: center; border: 2px solid var(--gray-200); transition: all .3s; }
.cargo-card:hover { border-color: var(--teal-mid); box-shadow: var(--shadow); transform: translateY(-4px); }
.cargo-card i   { font-size: 2rem; margin-bottom: 10px; display: block; }
.cargo-card span { font-weight: 700; font-size: .85rem; color: var(--dark); }

/* ─── Partners ────────────────────────────────────────────── */
#partners { background: var(--white); }
.partners-row { display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; margin-top: 48px; }
.partner-card { background: var(--gray-100); border-radius: var(--radius); padding: 28px 16px; text-align: center; border: 2px solid transparent; transition: all .3s; }
.partner-card:hover { border-color: var(--teal-mid); background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow); }
.partner-card i   { font-size: 2.2rem; margin-bottom: 10px; }
.partner-card span { display: block; font-weight: 700; font-size: .85rem; color: var(--dark); }
.partner-card small { font-size: .72rem; color: var(--gray-500); }
.partner-logo { height: 52px; width: auto; max-width: 130px; object-fit: contain; margin: 0 auto 12px; display: block; }

/* ─── Testimonials ────────────────────────────────────────── */
#testimonials { background: var(--gray-100); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.tcard { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); transition: all .3s; position: relative; overflow: hidden; }
.tcard::before { content: '"'; font-size: 7rem; line-height: 1; position: absolute; top: 0; right: 16px; color: var(--teal-light); font-family: Georgia, serif; pointer-events: none; }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tcard-stars { color: var(--gold); font-size: .95rem; margin-bottom: 14px; }
.tcard-text  { font-size: .88rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color: var(--white); flex-shrink: 0; }
.tcard-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.tcard-role { font-size: .75rem; color: var(--gray-500); }

/* ─── Tracking CTA ────────────────────────────────────────── */

/* ─── Contact ─────────────────────────────────────────────── */
#contact { background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: 'Sora', sans-serif; font-size: 1.9rem; font-weight: 900; color: var(--dark); margin-bottom: 14px; }
.contact-info p  { color: var(--gray-500); font-size: .92rem; margin-bottom: 30px; line-height: 1.75; }
.cinfo-list { display: flex; flex-direction: column; gap: 18px; }
.cinfo-item { display: flex; align-items: flex-start; gap: 14px; }
.cinfo-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ci-t { background: var(--teal-light); color: var(--teal); }
.ci-o { background: rgba(245,130,31,.12); color: var(--orange); }
.cinfo-label { font-size: .72rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.cinfo-val   { font-size: .9rem; font-weight: 600; color: var(--dark); }
.cinfo-val a { color: var(--teal-mid); }
.cinfo-val a:hover { text-decoration: underline; }
.cform { background: var(--gray-100); border-radius: 20px; padding: 36px; }
.cform h3 { font-family: 'Sora', sans-serif; font-size: 1.35rem; font-weight: 900; color: var(--dark); margin-bottom: 22px; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg   { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: 1/-1; }
.fg label { font-size: .78rem; font-weight: 700; color: var(--gray-700); }
.fg input, .fg select, .fg textarea { padding: 11px 15px; border-radius: 10px; border: 2px solid var(--gray-200); font-family: inherit; font-size: .88rem; color: var(--gray-900); background: var(--white); transition: border-color .2s; outline: none; resize: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--teal-mid); }
.fsub { margin-top: 6px; width: 100%; justify-content: center; font-size: .95rem; padding: 15px; }

/* ─── Footer ──────────────────────────────────────────────── */
footer { background: var(--dark); }
.foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 72px 0 48px; }
.foot-desc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.75; margin: 16px 0 22px; }
.foot-socials { display: flex; gap: 10px; }
.fsoc { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: rgba(255,255,255,.6); transition: all .2s; }
.fsoc:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.foot-col h4 { font-weight: 800; color: var(--white); margin-bottom: 18px; font-size: .9rem; }
.foot-links { display: flex; flex-direction: column; gap: 10px; }
.foot-links a { font-size: .84rem; color: rgba(255,255,255,.5); transition: color .2s; }
.foot-links a:hover { color: var(--orange); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.foot-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
.foot-bot-links { display: flex; gap: 18px; }
.foot-bot-links a { font-size: .78rem; color: rgba(255,255,255,.35); }
.foot-bot-links a:hover { color: var(--orange); }

/* ─── Vehicle Shipping Rates ──────────────────────────────── */
.vr-pricing { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 48px 0 28px; }
.vr-card { background: var(--white); border-radius: 20px; padding: 36px 28px; text-align: center; box-shadow: var(--shadow); border: 2px solid var(--gray-200); position: relative; transition: all .3s; }
.vr-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vr-card--featured { border-color: var(--teal-mid); background: linear-gradient(160deg,#f0fbff 0%,#e0f4f9 100%); }
.vr-badge-top { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--teal-mid); color: var(--white); font-size: .72rem; font-weight: 800; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.vr-card-icon { font-size: 2.4rem; margin-bottom: 14px; color: var(--teal-mid); }
.vr-card--sedan .vr-card-icon { color: var(--gray-500); }
.vr-card--full  .vr-card-icon { color: var(--orange); }
.vr-card-label { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-500); margin-bottom: 8px; }
.vr-card-price { font-family: 'Sora', sans-serif; font-size: 2.8rem; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 6px; }
.vr-card-price span { font-size: 1.8rem; color: var(--orange); }
.vr-card-sub { font-size: .75rem; color: var(--gray-500); margin-bottom: 22px; }
.vr-examples { border-top: 1px solid var(--gray-200); padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.vr-examples li { font-size: .83rem; color: var(--gray-700); padding: 6px 0; border-bottom: 1px solid var(--gray-100); font-weight: 500; }
.vr-examples li:last-child { border-bottom: none; }

/* Fee notice bar */
.vr-notice { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 40px; }
.vr-notice-item { display: flex; align-items: flex-start; gap: 14px; border-radius: 14px; padding: 18px 22px; }
.vr-notice--orange { background: rgba(245,130,31,.1); border: 1px solid rgba(245,130,31,.3); }
.vr-notice--teal   { background: rgba(13,79,99,.07); border: 1px solid rgba(13,79,99,.2); }
.vr-notice-item i  { font-size: 1.4rem; margin-top: 2px; flex-shrink: 0; }
.vr-notice--orange i { color: var(--orange); }
.vr-notice--teal   i { color: var(--teal); }
.vr-notice-item strong { display: block; font-weight: 800; font-size: .9rem; color: var(--dark); margin-bottom: 4px; }
.vr-notice-item span  { font-size: .82rem; color: var(--gray-500); line-height: 1.6; }

/* Accordion */
.vr-accordion { display: flex; flex-direction: column; gap: 12px; }
.vr-panel { background: var(--white); border-radius: 16px; border: 2px solid var(--gray-200); overflow: hidden; transition: border-color .2s; }
.vr-panel[open] { border-color: var(--teal-mid); }
.vr-panel-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; cursor: pointer; list-style: none; user-select: none; gap: 12px; }
.vr-panel-head::-webkit-details-marker { display: none; }
.vr-panel-head span { display: flex; align-items: center; gap: 12px; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1rem; color: var(--dark); }
.vr-panel-head span i { color: var(--teal-mid); font-size: 1.1rem; }
.vr-chevron { color: var(--gray-500); transition: transform .3s; font-size: .85rem; }
.vr-panel[open] .vr-chevron { transform: rotate(180deg); }
.vr-panel-body { padding: 0 28px 28px; }

/* Requirements list */
.vr-reqs { display: flex; flex-direction: column; gap: 14px; }
.vr-req { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border-radius: 12px; background: var(--gray-100); }
.vr-req--warn { background: rgba(239,68,68,.06); }
.vr-req > i { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.vr-req:not(.vr-req--warn) > i { color: var(--teal-mid); }
.vr-req--warn > i { color: #ef4444; }
.vr-req strong { display: block; font-weight: 700; font-size: .88rem; color: var(--dark); margin-bottom: 4px; }
.vr-req p { font-size: .83rem; color: var(--gray-500); line-height: 1.65; margin: 0; }

/* Info grid (loading section) */
.vr-info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.vr-info-box { background: var(--gray-100); border-radius: 14px; padding: 24px; }
.vr-info-box i { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.vr-info-box h4 { font-weight: 800; font-size: .9rem; color: var(--dark); margin-bottom: 8px; }
.vr-info-box p  { font-size: .82rem; color: var(--gray-500); line-height: 1.7; margin: 0; }

/* Liability */
.vr-liability-notice { display: flex; gap: 14px; align-items: flex-start; background: rgba(245,130,31,.1); border: 1px solid rgba(245,130,31,.3); border-radius: 12px; padding: 20px; margin-bottom: 24px; }
.vr-liability-notice i { color: var(--orange); font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.vr-liability-notice p { font-size: .85rem; color: var(--gray-700); line-height: 1.7; margin: 0; }
.vr-insurance-title { font-family: 'Sora', sans-serif; font-weight: 800; font-size: .95rem; color: var(--dark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.vr-insurance-title i { color: var(--teal-mid); }

/* Destination tabs */
.vr-dest-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.vr-tab { padding: 10px 22px; border-radius: 100px; border: 2px solid var(--gray-200); background: var(--white); font-weight: 700; font-size: .85rem; cursor: pointer; transition: all .2s; font-family: inherit; color: var(--gray-700); }
.vr-tab.active, .vr-tab:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.vr-tab-content { display: none; }
.vr-tab-content.active { display: block; }

/* Offloading fees */
.vr-offload-fees { background: rgba(245,130,31,.07); border: 1px solid rgba(245,130,31,.25); border-radius: 14px; padding: 24px; margin: 24px 0; }
.vr-offload-title { font-weight: 800; font-size: .9rem; color: var(--dark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.vr-offload-title i { color: var(--orange); }
.vr-offload-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.vr-offload-item { background: var(--white); border-radius: 10px; padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; }
.vr-offload-config { font-size: .83rem; color: var(--gray-700); font-weight: 600; }
.vr-offload-fee { font-family: 'Sora', sans-serif; font-weight: 900; font-size: 1rem; color: var(--orange); }
.vr-offload-note { font-size: .78rem; color: var(--gray-500); line-height: 1.65; }
.vr-offload-note i { color: var(--teal-mid); margin-right: 4px; }

/* Clearance box */
.vr-clearance-box { display: flex; gap: 16px; align-items: flex-start; background: var(--teal-light); border-radius: 14px; padding: 22px; margin-top: 16px; }
.vr-clearance-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-mid); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.vr-clearance-box h4 { font-weight: 800; font-size: .9rem; color: var(--dark); margin-bottom: 6px; }
.vr-clearance-box p  { font-size: .83rem; color: var(--gray-600,#4b5563); line-height: 1.7; margin: 0; }
.vr-clearance-box a  { color: var(--teal-mid); font-weight: 600; }

/* Responsive */
@media (max-width: 900px) {
  .vr-pricing { grid-template-columns: 1fr; }
  .vr-notice  { grid-template-columns: 1fr; }
  .vr-info-grid { grid-template-columns: 1fr; }
  .vr-offload-grid { grid-template-columns: 1fr; }
}

/* ─── Scroll-to-top ───────────────────────────────────────── */
#scrollTop { position: fixed; bottom: 24px; right: 24px; width: 46px; height: 46px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; border: none; box-shadow: 0 4px 20px rgba(245,130,31,.4); opacity: 0; pointer-events: none; transition: all .3s; z-index: 999; }
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { transform: translateY(-3px); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid    { grid-template-columns: repeat(3,1fr); }
  .why-grid      { grid-template-columns: repeat(2,1fr); }
  .cargo-grid    { grid-template-columns: repeat(4,1fr); }
  .partners-row  { grid-template-columns: repeat(3,1fr); }
  .foot-top      { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-sub, .hero-actions { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .dest-grid    { grid-template-columns: 1fr; }
  .step-grid    { grid-template-columns: 1fr; }
  .address-box  { grid-template-columns: 1fr; }
  .contact-inner{ grid-template-columns: 1fr; }
  .testi-grid   { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gphoto { grid-column: auto !important; grid-row: auto !important; height: 200px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .cargo-grid    { grid-template-columns: repeat(2,1fr); }
  .partners-row  { grid-template-columns: repeat(2,1fr); }
  .fgrid         { grid-template-columns: 1fr; }
  .foot-top      { grid-template-columns: 1fr; gap: 28px; }
  .topbar .topbar-right { display: none; }
}

/* ─── Page Hero (interior pages) ─────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, #0a3d52 100%); padding: 72px 0 56px; text-align: center; }
.page-hero .section-label { margin: 0 auto 14px; }
.page-hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(1.9rem,3.5vw,2.75rem); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 560px; margin: 0 auto; }

/* ─── CTA Banner ──────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-d) 100%); padding: 72px 0; text-align: center; }
.cta-banner h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 900; color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1rem; }
