 
    /* Hero section with shimmer */
    .page-hero {
      position: relative;
      height: 420px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--primary);
      padding-top: var(--nav-h);
    }
    .page-hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0.42;
      transition: transform 0.1s linear;
      transform: scale(1.08);
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(135deg, rgba(7,31,56,0.72) 0%, rgba(7,31,56,0.48) 60%, rgba(168,21,31,0.12) 100%);
    }
    .page-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 40%, rgba(255,255,255,0.32) 50%, rgba(255,255,255,0.18) 60%, transparent 100%);
      animation: heroShimmerMassive 3.5s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes heroShimmerMassive {
      0% { transform: translateX(-150%) skewX(-12deg); opacity: 0; }
      20% { opacity: 1; }
      80% { opacity: 1; }
      100% { transform: translateX(250%) skewX(-12deg); opacity: 0; }
    }
    .page-hero-content {
      position: relative;
      z-index: 5;
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
      margin-bottom: 14px;
    }
    .breadcrumb a {
      color: rgba(255,255,255,0.55);
      transition: color 0.3s;
    }
    .breadcrumb a:hover {
      color: var(--red);
    }
    .breadcrumb span {
      color: rgba(255,255,255,0.4);
    }
    .page-title {
      font-family: 'Bebas Neue', cursive;
      font-size: clamp(2.5rem, 7vw, 4.5rem);
      color: white;
      line-height: 1;
      letter-spacing: 2px;
      animation: pageTitleIn 1s cubic-bezier(0.16,1,0.3,1) 0.3s both;
    }
    @keyframes pageTitleIn {
      from { opacity: 0; transform: translateY(50px) skewY(3deg); }
      to { opacity: 1; transform: translateY(0) skewY(0); }
    }
    .page-subtitle {
      font-size: 1rem;
      color: rgba(255,255,255,0.82);
      margin-top: 14px;
      max-width: 500px;
      line-height: 1.7;
      animation: pageTitleIn 1s cubic-bezier(0.16,1,0.3,1) 0.5s both;
    }
    .hero-shape {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 5;
      width: 100%;
      height: 60px;
      pointer-events: none;
    }
    /* Service detail sections */
    .service-detail {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
      padding: 80px 0;
      border-bottom: 1px solid var(--border);
      scroll-margin-top: 90px;
    }
    .service-detail:last-child {
      border-bottom: none;
    }
    .service-detail.reverse {
      direction: rtl;
    }
    .service-detail.reverse > * {
      direction: ltr;
    }
    .service-detail-img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: var(--shadow-md);
      transition: transform 0.5s ease;
    }
    .service-detail-img:hover {
      transform: scale(1.02);
    }
    .service-detail-tag {
      color: var(--red);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 12px;
      display: inline-block;
      background: var(--red-muted);
      padding: 5px 12px;
      border-radius: 99px;
    }
    .service-detail h2 {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      color: var(--primary);
      margin-bottom: 16px;
    }
    .service-detail p {
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 16px;
      font-size: 0.94rem;
    }
    .service-detail-features {
      margin: 24px 0 28px;
    }
    .service-detail-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
      color: var(--text);
      font-size: 0.9rem;
      border-bottom: 1px dashed var(--border);
    }
    .service-detail-feature:last-child {
      border-bottom: none;
    }
    .service-detail-feature i {
      color: var(--red);
      font-size: 1rem;
      width: 22px;
    }
    .service-highlight-box {
      background: var(--off-white);
      border-radius: 14px;
      padding: 22px 28px;
      margin-top: 28px;
      border-left: 4px solid var(--red);
    }
    .service-highlight-box p {
      margin-bottom: 0;
      font-style: italic;
      color: var(--primary);
      font-weight: 500;
    }
    @media (max-width: 900px) {
      .service-detail {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 0;
      }
      .service-detail.reverse {
        direction: ltr;
      }
      .service-detail-img {
        height: 280px;
      }
    }
    @media (max-width: 480px) {
      .service-detail-img {
        height: 220px;
      }
      .service-highlight-box {
        padding: 16px 20px;
      }
    }
    /* Advantage section */
    .adv-section {
      background: var(--primary);
      padding: 70px 0;
    }
    .adv-section .section-title {
      color: white;
    }
    .adv-section .section-tag {
      background: rgba(168,21,31,0.25);
      color: #ff8f96;
    }
    .adv-section .separator {
      background: var(--red);
    }
    .adv-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin-top: 50px;
    }
    .adv-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s ease;
    }
    .adv-card:hover {
      transform: translateY(-6px);
      background: rgba(255,255,255,0.1);
    }
    .adv-icon {
      font-size: 2.2rem;
      margin-bottom: 16px;
      display: block;
    }
    .adv-val {
      font-family: 'Bebas Neue', cursive;
      font-size: 2rem;
      color: var(--red);
      margin-bottom: 8px;
    }
    .adv-label {
      color: rgba(255,255,255,0.75);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    @media (max-width: 900px) {
      .adv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
    }
    @media (max-width: 480px) {
      .adv-grid {
        grid-template-columns: 1fr;
      }
    }
    /* Pricing table */
    .pricing-section {
      background: var(--off-white);
    }
    .pricing-table {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 50px;
    }
    .pricing-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 38px 28px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
      position: relative;
    }
    .pricing-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow);
    }
    .pricing-card.featured {
      border-color: var(--red);
      background: linear-gradient(135deg, #fff, #FFF5F5);
    }
    .pricing-card.featured::before {
      content: 'MOST POPULAR';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--red);
      color: white;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 2px;
      padding: 5px 16px;
      border-radius: 99px;
    }
    .pricing-icon {
      font-size: 2.5rem;
      color: var(--red);
      margin-bottom: 16px;
    }
    .pricing-name {
      font-size: 1.3rem;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .pricing-desc {
      color: var(--gray);
      font-size: 0.85rem;
      margin-bottom: 24px;
    }
    .pricing-features {
      text-align: left;
      margin-bottom: 28px;
    }
    .pricing-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
      font-size: 0.85rem;
      color: var(--gray);
      border-bottom: 1px solid var(--border);
    }
    .pricing-feature:last-child {
      border-bottom: none;
    }
    .pricing-feature i.fa-check {
      color: var(--red);
      font-size: 0.8rem;
      width: 18px;
    }
    .pricing-btn {
      display: block;
      width: 100%;
      padding: 14px;
      background: var(--primary);
      color: white;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .pricing-btn:hover {
      background: var(--red);
      transform: translateY(-2px);
      box-shadow: var(--shadow-red);
    }
    @media (max-width: 900px) {
      .pricing-table {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
      }
    }
    /* Quote modal (reused from homepage) */
    .quote-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(4,15,29,0.85);
      z-index: 2100;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      padding: 20px;
      backdrop-filter: blur(5px);
    }
    .quote-modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .quote-modal {
      background: var(--white);
      border-radius: 20px;
      width: 100%;
      max-width: 600px;
      padding: 40px 38px;
      box-shadow: 0 40px 80px rgba(0,0,0,0.2);
      animation: quoteModalIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
    }
    @keyframes quoteModalIn {
      from { opacity: 0; transform: scale(0.85) translateY(40px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }
    .quote-modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 36px;
      height: 36px;
      background: var(--gray-light);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1rem;
      color: var(--primary);
      transition: all 0.3s ease;
    }
    .quote-modal-close:hover {
      background: var(--red);
      color: white;
      transform: rotate(90deg);
    }
    .quote-modal h2 {
      font-size: 1.6rem;
      color: var(--primary);
      margin-bottom: 6px;
    }
    .quote-modal-subtitle {
      color: var(--gray);
      margin-bottom: 24px;
      font-size: 0.88rem;
    }
    .quote-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }
    .quote-form-row.full {
      grid-template-columns: 1fr;
    }
    .quote-form-row label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 5px;
    }
    .quote-form-row input,
    .quote-form-row textarea,
    .quote-form-row select {
      width: 100%;
      padding: 10px 13px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: inherit;
      font-size: 0.88rem;
      transition: all 0.3s ease;
      background: var(--off-white);
      color: var(--text);
    }
    .quote-form-row input:focus,
    .quote-form-row textarea:focus,
    .quote-form-row select:focus {
      outline: none;
      background: var(--white);
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(168,21,31,0.08);
    }
    .quote-submit-btn {
      width: 100%;
      padding: 13px;
      background: var(--red);
      color: white;
      border: none;
      border-radius: 9px;
      font-weight: 700;
      font-size: 0.92rem;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
      margin-top: 8px;
    }
    .quote-submit-btn:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(168,21,31,0.3);
    }
    @media (max-width: 560px) {
      .quote-modal {
        padding: 28px 20px;
      }
      .quote-form-row {
        grid-template-columns: 1fr;
      }
    }
    .policy-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      z-index: 2050;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.35s ease;
      padding: 20px;
    }
    .policy-modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .policy-modal-box {
      background: var(--white);
      border-radius: var(--radius-lg);
      max-width: 680px;
      width: 100%;
      max-height: 85vh;
      overflow-y: auto;
      box-shadow: 0 30px 70px rgba(0,0,0,0.18);
    }
    .policy-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      background: var(--white);
      z-index: 2;
    }
    .policy-modal-header h2 {
      font-size: 1.3rem;
      color: var(--primary);
    }
    .policy-modal-close {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--gray-light);
      border: none;
      cursor: pointer;
      font-size: 1rem;
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .policy-modal-close:hover {
      background: var(--red);
      color: white;
      transform: rotate(90deg);
    }
    .policy-modal-body {
      padding: 28px 32px;
    }
    .policy-modal-body h3 {
      font-size: 1rem;
      color: var(--primary);
      margin: 18px 0 8px;
    }
    .policy-modal-body p {
      font-size: 0.88rem;
      color: var(--gray);
      line-height: 1.7;
      margin-bottom: 10px;
    }


    /* ============================================================
   SERVICE PAGE SPECIFIC STYLES
   Add this INSIDE your existing <style> tag on the services page
   REPLACE the hero-centering CSS that isn't working with this
============================================================ */

/* ============================================================
   1. HERO SECTION — Centered content on larger screens ONLY
      Mobile remains exactly as it is
============================================================ */
@media (min-width: 769px) {
  .page-hero-content {
    text-align: center !important;
    width: 100% !important;
  }
  
  .page-hero-content .breadcrumb {
    justify-content: center !important;
  }
  
  .page-hero-content .page-title {
    text-align: center !important;
  }
  
  .page-hero-content .page-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 600px !important;
  }
}

/* ============================================================
   2. WHY YI SHIPPING ADVANTAGE SECTION
      White icons with pulsing white rings, white text, bg image
============================================================ */

/* Background image for the advantage section */
.adv-section {
  position: relative;
  overflow: hidden;
  background: var(--primary) !important;
}

.adv-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&q=70');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

/* Ensure content sits above background */
.adv-section .container {
  position: relative;
  z-index: 2;
}

/* Section tag */
.adv-section .section-tag {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ff8f96 !important;
}

/* Section title — white */
.adv-section .section-title {
  color: white !important;
}

/* Separator */
.adv-section .separator {
  background: var(--red) !important;
}

/* Section description */
.adv-section .section-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ===== ADVANTAGE CARDS ===== */
.adv-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  backdrop-filter: blur(4px);
}

.adv-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

/* Icon styling with rings */
.adv-card .adv-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  position: relative;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

/* White pulsing ring 1 (outer) */
.adv-card .adv-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: whiteRingPulse1 2.5s ease-out infinite;
  pointer-events: none;
}

/* White pulsing ring 2 (farther outer) */
.adv-card .adv-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  animation: whiteRingPulse2 2.5s ease-out infinite 0.8s;
  pointer-events: none;
}

/* Ring animations */
@keyframes whiteRingPulse1 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
}

@keyframes whiteRingPulse2 {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
}

/* Text colors — all white */
.adv-card .adv-val {
  color: white !important;
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  margin-bottom: 8px;
}

.adv-card .adv-label {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Handle <i> tags if used instead of .adv-icon */
.adv-card i[class*="fa-"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 70px !important;
  height: 70px !important;
  font-size: 2rem !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  margin-bottom: 16px !important;
  position: relative !important;
  color: white !important;
}

/* Rings for <i> tags */
.adv-card i[class*="fa-"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: whiteRingPulse1 2.5s ease-out infinite;
  pointer-events: none;
}

.adv-card i[class*="fa-"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  animation: whiteRingPulse2 2.5s ease-out infinite 0.8s;
  pointer-events: none;
}

/* Handle SVG icons */
.adv-card svg {
  width: 70px !important;
  height: 70px !important;
  display: inline-block !important;
  margin-bottom: 16px !important;
  position: relative !important;
  fill: white !important;
  stroke: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .adv-card .adv-icon::before,
  .adv-card .adv-icon::after,
  .adv-card i[class*="fa-"]::before,
  .adv-card i[class*="fa-"]::after {
    animation-duration: 3.5s !important;
  }
}

/* Whipping Color Effect for Service Images */
.reveal-left, .reveal-right {
  position: relative;
  overflow: hidden;
  border-radius: 20px; /* Matches your current image radius */
}

.reveal-left::after, .reveal-right::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5), /* The 'whip' color (white) */
    transparent
  );
  transform: skewX(-20deg);
  animation: whipEffect 4s infinite ease-in-out;
  pointer-events: none;
  z-index: 2;
}

@keyframes whipEffect {
  0% {
    left: -150%;
  }
  50% {
    left: 150%; /* Moves from Left to Right */
  }
  51% {
    left: 150%;
  }
  100% {
    left: -150%; /* Moves from Right to Left */
  }
}


