/* ============================================================
   RIDGEPORT LOGISTICS — shipping.css (COMPLETE)
   ============================================================ */

/* ── Reset ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(20, 20, 35, 0.45);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  transition: all 0.35s ease;
}
.header.scrolled {
  background: rgba(10, 10, 20, 0.85);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; }
.logo span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

/* Nav */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}
.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: #ff6200;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-menu a:hover { color: #ff9a50; }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a.active { color: #ff6200; }

/* Quote button */
.quote-button {
  padding: 10px 26px;
  background: #ff6200;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.quote-button:hover { background: #e05500; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  height: 3px;
  background: white;
  border-radius: 2px;
  display: block;
  transition: transform 0.32s ease, opacity 0.32s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 40, 0.98);
  color: white;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-menu a::after { content: '›'; font-size: 1.6rem; color: #ff6200; opacity: 0.7; }
.mobile-menu a:hover { color: #ff6200; padding-left: 8px; }
.mobile-menu .quote-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  background: #ff6200;
  color: white !important;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  width: 100%;
  transition: background 0.25s ease;
}
.mobile-menu .quote-mobile::after { content: none; }
.mobile-menu .quote-mobile:hover { background: #e05500; padding-left: 0; }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.2); }

/* ════════════════════════════════════════
   HEADER RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) and (min-width: 921px) {
  .nav-menu ul { gap: 1.4rem; }
  .nav-menu a { font-size: 0.88rem; }
  .quote-button { padding: 9px 18px; font-size: 0.88rem; }
}
@media (max-width: 920px) {
  .hamburger { display: flex; }
  .nav-menu { display: none; }
  .quote-button { display: none; }
}
@media (max-width: 380px) {
  .mobile-menu { padding: 90px 20px 40px; }
  .mobile-menu a { font-size: 1.15rem; }
  .logo span { font-size: 1.05rem; max-width: 140px; }
  .logo img { height: 34px; }
}

/* ════════════════════════════════════════
   SCROLL OFFSET FOR FIXED HEADER
════════════════════════════════════════ */
section[id] { scroll-margin-top: 90px; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  background-image:
    linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)),
    url('hero-logistics.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  text-align: center;
  width: 100%;
}
.hero h1 {
  font-size: 3.1rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.75);
}
.hero .second-para {
  font-size: 1.35rem;
  max-width: 760px;
  margin: 0 auto 3rem;
  opacity: 0.95;
}
.input-section { max-width: 620px; margin: 0 auto; }

/* Hero tracking form — pill shape on desktop */
.tracking-form {
  display: flex;
  background: white;
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 12px 44px rgba(0,0,0,0.28);
}
.tracking-form input {
  flex: 1;
  border: none;
  padding: 18px 32px;
  font-size: 1.15rem;
  min-width: 0;
}
.tracking-form input::placeholder { color: #999; }
.tracking-form button {
  background: #ff6200;
  color: white;
  border: none;
  padding: 0 36px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s;
}
.tracking-form button:hover { background: #e05600; }
.track-hint { margin-top: 1.4rem; font-size: 1rem; opacity: 0.9; }
.shipment-symbol { text-align: center; margin-top: 2rem; color: #fff; opacity: 0.9; }
.shipment-symbol i { transition: transform 0.3s ease; }
.shipment-symbol:hover i { transform: scale(1.15); }

/* Hero responsive */
@media (max-width: 768px) {
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 2.5rem; }
  .hero .second-para { font-size: 1.1rem; }
  .tracking-form {
    flex-direction: column;
    border-radius: 16px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    gap: 12px;
  }
  .tracking-form input {
    width: 100%;
    border-radius: 12px;
    border: none;
    padding: 16px 20px;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  }
  .tracking-form button {
    width: 100%;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(255,98,0,0.35);
  }
}
@media (max-width: 480px) {
  .hero-content { padding: 110px 16px 70px; }
  .hero h1 { font-size: 2rem; }
  .track-hint { font-size: 0.9rem; }
}

/* ════════════════════════════════════════
   STATS
════════════════════════════════════════ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  overflow-x: hidden;
}
.stat-item {
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
}
.stat-item i { font-size: 2.8rem; color: #ff6200; margin-bottom: 12px; display: block; }
.stat-item h3 { font-size: 2.1rem; color: #222; margin-bottom: 6px; }
.stat-item p { color: #666; font-size: 1rem; }

/* ════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════ */
.about-section {
  padding: 100px 5%;
  background: #f8f9fc;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-badge, .track-section-badge, .contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff3ec;
  color: #ff6200;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.about-text h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.2;
}
.about-text > p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.value-item { display: flex; align-items: flex-start; gap: 16px; }
.value-item > i { color: #ff6200; font-size: 1.4rem; margin-top: 3px; flex-shrink: 0; }
.value-item h4 { font-size: 1.05rem; font-weight: 700; color: #222; margin-bottom: 4px; }
.value-item p { font-size: 0.95rem; color: #666; margin: 0; }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}
.about-badge-float {
  position: absolute;
  bottom: 28px; left: -24px;
  background: white;
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge-number { font-size: 2.2rem; font-weight: 800; color: #ff6200; line-height: 1; }
.badge-label { font-size: 0.82rem; color: #666; margin-top: 4px; white-space: nowrap; }

@media (max-width: 900px) {
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-text h2 { font-size: 2.1rem; }
  .about-img-wrap img { height: 320px; }
  .about-badge-float { left: 16px; bottom: 16px; }
}
@media (max-width: 480px) {
  .about-section { padding: 70px 5%; }
  .about-text h2 { font-size: 1.85rem; }
}

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services-section {
  padding: 80px 5% 100px;
  background: #ffffff;
  text-align: center;
}
.service-heading { margin: 0 0 60px; text-align: center; }
.service-head { font-size: 3.1rem; font-weight: 800; margin-bottom: 1.4rem; text-align: center; }
.service-para {
  font-size: 1.35rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0.95;
  color: #555;
}
.circle {
  width: 180px; height: 180px;
  background: #ff6200;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 12px 40px rgba(255,98,0,0.3);
  transition: all 0.35s ease;
  padding-bottom: 20px;
}
.circle:hover { transform: translateY(-8px) scale(1.05); box-shadow: 0 20px 50px rgba(255,98,0,0.45); }
.circle i { font-size: 4rem; color: white; margin-bottom: 6px; }
.circle h2 { color: white; font-size: 1.6rem; margin: 0; font-weight: 800; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: all 0.32s ease;
  text-align: center;
}
.service-card:hover { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.14); }
.service-card img { width: 100%; height: 220px; object-fit: cover; object-position: center; }
.service-card h3 { font-size: 1.45rem; margin: 24px 20px 12px; color: #222; font-weight: 700; }
.service-card p { padding: 0 24px 32px; color: #666; font-size: 1.05rem; }

@media (max-width: 768px) {
  .service-head { font-size: 2.2rem; }
  .service-para { font-size: 1.1rem; }
  .circle { width: 160px; height: 160px; }
  .circle i { font-size: 3.5rem; }
  .circle h2 { font-size: 1.35rem; }
  .service-card img { height: 200px; }
}
@media (max-width: 480px) {
  .service-head { font-size: 1.85rem; }
  .service-para { font-size: 1rem; }
  .services-grid { grid-template-columns: 1fr; padding: 0 12px; }
}

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.how-it-works-section {
  padding: 80px 5% 120px;
  background: #f8f9fc;
  text-align: center;
  overflow-x: hidden;
}
.how-it-works h3 { font-size: 2.5rem; font-weight: 800; color: #222; margin-bottom: 1rem; }
.how-it-works > p { font-size: 1.25rem; max-width: 720px; margin: 0 auto 50px; color: #555; }
.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}
.step-item {
  flex: 1 1 220px;
  max-width: 280px;
  background: white;
  border-radius: 16px;
  padding: 32px 24px 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: center;
  position: relative;
}
.step-item:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.14); }
.step-icon {
  width: 80px; height: 80px;
  background: #ff6200;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.2rem;
  box-shadow: 0 6px 20px rgba(255,98,0,0.35);
  transition: all 0.3s ease;
}
.step-item:hover .step-icon { transform: scale(1.1); }
.step-item h4 { font-size: 1.4rem; font-weight: 700; margin: 0 0 12px; color: #222; }
.step-item p { font-size: 1.05rem; color: #666; line-height: 1.6; }
.step-connector { font-size: 2.8rem; color: #ff6200; flex: 0 0 auto; line-height: 1; }

@media (max-width: 992px) {
  .steps-container { flex-direction: column; gap: 0; }
  .step-item { max-width: 100%; width: 100%; }
  .step-connector {
    font-size: 0;
    width: 4px; height: 50px;
    background: #ff6200;
    border-radius: 2px;
    position: relative;
    margin: 0 auto;
  }
  .step-connector::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 10px solid #ff6200;
  }
}
@media (max-width: 480px) {
  .how-it-works h3 { font-size: 2rem; }
  .how-it-works > p { font-size: 1rem; }
  .step-item { padding: 24px 20px 30px; }
}

/* ════════════════════════════════════════
   TRACK SECTION
════════════════════════════════════════ */
.track-section {
  padding: 100px 5%;
  background: #ffffff;
  text-align: center;
  overflow-x: hidden;
}
.track-section-content { max-width: 720px; margin: 0 auto; }
.track-section h2 { font-size: 2.6rem; font-weight: 800; color: #222; margin-bottom: 14px; }
.track-section-content > p { font-size: 1.1rem; color: #555; margin-bottom: 40px; line-height: 1.7; }
.tracking-form-standalone {
  display: flex;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto 40px;
}
.tracking-form-standalone input {
  flex: 1; min-width: 0;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.tracking-form-standalone input:focus { border-color: #ff6200; }
.tracking-form-standalone button {
  background: #ff6200;
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.25s;
}
.tracking-form-standalone button:hover { background: #e05500; }
.track-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.track-feature {
  display: flex; align-items: center; gap: 8px;
  color: #555; font-size: 0.95rem;
}
.track-feature i { color: #ff6200; }

@media (max-width: 600px) {
  .track-section { padding: 70px 5%; }
  .track-section h2 { font-size: 2rem; }
  .tracking-form-standalone { flex-direction: column; }
  .tracking-form-standalone button { justify-content: center; width: 100%; }
  .track-features { flex-direction: column; align-items: center; gap: 16px; }
}

/* ════════════════════════════════════════
   GLOBAL NETWORK
════════════════════════════════════════ */
.global-network {
  padding: 90px 5% 110px;
  background: linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)),
              url('world-map.jpg') center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cbw-head { color: white; margin-bottom: 30px; font-size: 50px; font-weight: 800; }
.cbw-head mark { background: none; color: #ff6200; padding: 0; font-weight: 900; }
.cbw-para { color: white; margin-bottom: 50px; max-width: 1100px; margin-left: auto; margin-right: auto; font-size: 1.1rem; line-height: 1.7; }
.business-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 0;
}
.b-stat {
  background: white;
  border-radius: 16px;
  padding: 32px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: all 0.32s ease;
}
.b-stat:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); border: 1px solid #ff6200; }
.b-stat h5 { font-size: 2.2rem; font-weight: 800; color: #ff6200; margin-bottom: 8px; line-height: 1; }
.b-stat p { font-size: 1rem; color: #555; margin: 0; font-weight: 500; }
.region {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 40px;
}
.locations {
  font-size: 1rem;
  border: 1px solid rgba(255,98,0,0.5);
  border-radius: 10px;
  color: #ffffff;
  background-color: rgba(255,255,255,0.06);
  padding: 18px 14px;
  transition: all 0.25s ease;
}
.locations:hover { color: #ff6200; cursor: pointer; background: rgba(255,255,255,0.1); }
.locations h6 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: #ff6200; }
.locations p { font-size: 0.88rem; line-height: 1.5; margin: 0; }

@media (max-width: 992px) { .cbw-head { font-size: 38px; } }
@media (max-width: 768px) {
  .global-network { padding: 60px 5% 80px; }
  .cbw-head { font-size: 30px; padding: 0 10px; }
  .cbw-para { font-size: 1rem; padding: 0 10px; margin-bottom: 36px; }
  .business-stats { gap: 20px; }
  .b-stat h5 { font-size: 1.8rem; }
  .region { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
}
@media (max-width: 480px) {
  .cbw-head { font-size: 24px; }
  .cbw-para { font-size: 0.95rem; }
  .b-stat { padding: 22px 14px; }
  .region { grid-template-columns: 1fr 1fr; gap: 10px; }
  .locations { padding: 14px 10px; }
}

/* ════════════════════════════════════════
   REVIEWS
════════════════════════════════════════ */
.reviews-section {
  padding: 100px 5% 120px;
  background: #f8f9fc;
  text-align: center;
  overflow-x: hidden;
}
.reviews-section h2 { font-size: 2.8rem; font-weight: 800; color: #222; margin-bottom: 16px; }
.reviews-section p.subtitle { font-size: 1.25rem; color: #555; max-width: 680px; margin: 0 auto 70px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}
.review-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.review-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(0,0,0,0.15); border-color: #ff6200; }
.quote-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #ff6200, #f97316);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 40px;
  box-shadow: 0 8px 20px rgba(255,98,0,0.3);
}
.stars { color: #fbbf24; font-size: 26px; letter-spacing: 6px; margin-bottom: 20px; }
.review-text { font-size: 1.08rem; line-height: 1.75; color: #444; font-style: italic; flex-grow: 1; margin-bottom: 32px; text-align: center; }
.reviewer { display: flex; align-items: center; gap: 16px; margin-top: auto; }
.reviewer .avatar {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.35rem;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.reviewer-info { text-align: left; }
.reviewer-info h4 { margin: 0; font-size: 1.15rem; color: #222; font-weight: 600; }
.reviewer-info p { margin: 4px 0 0; font-size: 0.95rem; color: #6b7280; }
.reviewer-info span { color: #ff6200; font-weight: 600; font-size: 0.9rem; }

@media (max-width: 768px) {
  .reviews-section { padding: 80px 5% 90px; }
  .reviews-section h2 { font-size: 2.4rem; }
  .review-card { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-section h2 { font-size: 1.9rem; }
  .reviews-section p.subtitle { font-size: 1rem; margin-bottom: 40px; }
  .review-card { padding: 28px 20px; }
  .stars { font-size: 20px; letter-spacing: 3px; }
}

/* ════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════ */
.contact-section {
  padding: 100px 5%;
  background: #ffffff;
  overflow-x: hidden;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
.contact-info-col h2 { font-size: 2.6rem; font-weight: 800; color: #222; margin-bottom: 14px; }
.contact-info-col > p { font-size: 1.05rem; color: #555; line-height: 1.7; margin-bottom: 36px; }
.contact-details { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 24px; }
.contact-details li { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 46px; height: 46px;
  background: #fff3ec;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: #ff6200; font-size: 1.1rem; }
.contact-details h4 { font-size: 0.9rem; font-weight: 700; color: #222; margin-bottom: 4px; }
.contact-details p { font-size: 0.95rem; color: #666; margin: 0; }
.contact-form { background: #f8f9fc; border-radius: 20px; padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: #333; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background: white;
  transition: border-color 0.2s;
  color: #222;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #ff6200; }
.form-group textarea { resize: vertical; }
.contact-submit {
  background: #ff6200; color: white;
  border: none; padding: 16px 32px;
  border-radius: 10px; font-size: 1rem; font-weight: 600;
  cursor: pointer; display: flex; align-items: center;
  gap: 10px; width: 100%; justify-content: center;
  transition: background 0.25s, transform 0.2s;
}
.contact-submit:hover { background: #e05500; transform: translateY(-2px); }

@media (max-width: 960px) {
  .contact-container { grid-template-columns: 1fr; gap: 48px; }
  .contact-info-col h2 { font-size: 2.1rem; }
}
@media (max-width: 600px) {
  .contact-section { padding: 70px 5%; }
  .contact-form { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-info-col h2 { font-size: 1.85rem; }
}

/* ════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════ */
.cta-section {
  padding: 100px 5%;
  background: linear-gradient(135deg, #0f172a 0%, #1e2937 45%, #334155 70%, #e69a1533 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c83137?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}
.cta-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.cta-section h2 { font-size: 2.85rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.cta-section p { font-size: 1.25rem; line-height: 1.65; color: #cbd5e1; max-width: 680px; margin: 0 auto 50px; }
.cta-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.free-quote-button, .track-shipment {
  padding: 16px 38px;
  font-size: 1.15rem; font-weight: 600;
  border-radius: 8px; cursor: pointer;
  transition: all 0.3s ease; border: none;
  min-width: 180px;
}
.free-quote-button { background: #ff6200; color: white; }
.free-quote-button:hover { background: #e05500; transform: translateY(-3px); box-shadow: 0 12px 25px rgba(255,98,0,0.4); }
.track-shipment { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.7); }
.track-shipment:hover { background: white; color: #1e2937; border-color: white; transform: translateY(-3px); }

@media (max-width: 768px) {
  .cta-section { padding: 80px 5%; }
  .cta-section h2 { font-size: 2.2rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .free-quote-button, .track-shipment { width: 100%; max-width: 320px; }
}
@media (max-width: 480px) {
  .cta-section h2 { font-size: 1.85rem; }
  .cta-section p { font-size: 1rem; }
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer { background: #0f172a; color: #cbd5e1; padding: 90px 5% 40px; }
.footer-container {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  color: white; text-decoration: none;
  font-weight: 700; font-size: 1.4rem;
  margin-bottom: 18px;
  white-space: normal; line-height: 1.3;
}
.footer-logo img { height: 48px; width: auto; }
.footer-desc { line-height: 1.7; color: #94a3b8; max-width: 340px; margin-bottom: 30px; }
.newsletter { margin: 35px 0 25px; }
.newsletter h4 { color: white; margin-bottom: 8px; }
.newsletter-text { color: #94a3b8; font-size: 0.95rem; margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 8px; margin-bottom: 10px; }
.newsletter-form input {
  flex: 1; padding: 14px 18px;
  border: none; border-radius: 8px;
  background: #1e2937; color: white; font-size: 1rem;
}
.newsletter-form input::placeholder { color: #64748b; }
.newsletter-form button {
  padding: 14px 28px;
  background: #ff6200; color: white;
  border: none; border-radius: 8px;
  font-weight: 600; cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.newsletter-form button:hover { background: #e05500; transform: translateY(-2px); }
.newsletter small { color: #64748b; font-size: 0.82rem; }
.social-links { display: flex; gap: 16px; }
.social-links a {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.1); color: #cbd5e1;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.social-links a:hover { background: #ff6200; color: white; transform: translateY(-4px); }
.footer-col h4 { color: white; font-size: 1.1rem; margin-bottom: 20px; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: #cbd5e1; text-decoration: none; transition: color 0.3s ease; }
.footer-col a:hover { color: #ff6200; }
.contact-info li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: #94a3b8; }
.contact-info i { color: #ff6200; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 70px; padding-top: 30px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 15px;
  font-size: 0.95rem; color: #64748b;
  max-width: 1300px; margin-left: auto; margin-right: auto;
}

@media (max-width: 992px) { .footer-container { grid-template-columns: 2fr 1fr 1fr; } }
@media (max-width: 768px) {
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .footer { padding: 70px 5% 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
}
@media (max-width: 480px) {
  .footer { padding: 60px 4% 30px; }
  .footer-logo { font-size: 1.2rem; }
  .footer-logo img { height: 38px; }
  .footer-bottom { font-size: 0.85rem; }
}

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
.rl-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.rl-reveal.visible { opacity: 1; transform: none; }