/* =================================================================
   GKS LOGISTICS — V3 SERVICES PAGES STYLESHEET
   Loads after v3.css. Re-skins legacy service-page class names
   (.services-page-hero, .service-card-modern, .country-service-card,
    .route-card, .commitment-card, etc.) using V3 design tokens, so
   the interior pages share the same premium look as the homepage.
   Everything is scoped under body.v3 to avoid affecting non-V3 pages.
   ================================================================= */

/* =================================================================
   1) GENERIC SECTION / HEAD / BADGE SYSTEM
   ================================================================= */

body.v3 main { background: var(--gks-white); }

body.v3 .section-header-modern {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

body.v3 .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: var(--gks-blue-50);
  color: var(--gks-blue);
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(10, 61, 98, 0.12);
}
body.v3 .section-badge i { color: var(--gks-red); }

body.v3 .section-title-large {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: var(--lh-tight);
  color: var(--gks-grey-900);
  margin: 1.25rem 0 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.v3 .section-subtitle {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: var(--gks-grey-700);
  max-width: 680px;
  margin: 0 auto;
}

/* =================================================================
   2) INTERIOR PAGE HERO (shared by all-services, groupage, green, etc.)
   Re-skins: .services-page-hero, .groupage-hero, .green-hero
   ================================================================= */

body.v3 .services-page-hero,
body.v3 .groupage-hero,
body.v3 .green-hero {
  position: relative;
  min-height: clamp(460px, 70vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(7rem, 14vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
  color: var(--gks-white);
  overflow: hidden;
  isolation: isolate;
  background: var(--gks-blue-700);
  text-align: center;
}

/* Background media for the rich hero variant */
body.v3 .services-page-hero .hero-bg-image,
body.v3 .services-page-hero img.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

body.v3 .services-page-hero .hero-overlay,
body.v3 .groupage-hero::before,
body.v3 .green-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg,
      rgba(6, 42, 69, 0.88) 0%,
      rgba(10, 61, 98, 0.78) 45%,
      rgba(27, 92, 138, 0.65) 100%);
}

/* Green hero has a slight teal tint */
body.v3 .green-hero {
  background: linear-gradient(135deg, #063C32 0%, #0A3D62 100%);
}
body.v3 .green-hero::before {
  background:
    linear-gradient(135deg,
      rgba(6, 60, 50, 0.78) 0%,
      rgba(10, 61, 98, 0.70) 100%);
}

/* Subtle grain / glow */
body.v3 .services-page-hero::after,
body.v3 .groupage-hero::after,
body.v3 .green-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(230, 57, 70, 0.14), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(111, 160, 194, 0.14), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

body.v3 .services-page-hero .container,
body.v3 .groupage-hero .container,
body.v3 .green-hero .container {
  position: relative;
  z-index: 2;
}

body.v3 .hero-content-center {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

body.v3 .hero-title-large,
body.v3 .groupage-hero h1,
body.v3 .green-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.8vw, 4rem);
  line-height: var(--lh-tight);
  color: var(--gks-white);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

body.v3 .hero-subtitle-large,
body.v3 .groupage-hero p,
body.v3 .green-hero p {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  margin: 0 auto 2rem;
}

body.v3 .hero-stats-inline {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  margin: 0 auto 2.25rem;
}

body.v3 .stat-inline-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gks-white);
  font-size: var(--fs-sm);
  padding: 0.6rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.v3 .stat-inline-item i { color: var(--gks-red-300); }
body.v3 .stat-inline-item strong { font-weight: 800; margin-right: 0.15rem; }

/* Hero CTAs */
body.v3 .hero-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

body.v3 .btn-hero-primary,
body.v3 .groupage-hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  background: var(--gks-red);
  color: var(--gks-white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
              box-shadow var(--dur-fast) var(--ease-premium),
              background var(--dur-fast) var(--ease-premium);
  box-shadow: 0 12px 28px -10px rgba(230, 57, 70, 0.55);
  text-decoration: none;
}
body.v3 .btn-hero-primary:hover,
body.v3 .groupage-hero .btn:hover {
  transform: translateY(-2px);
  background: var(--gks-red-700);
  box-shadow: 0 18px 36px -10px rgba(230, 57, 70, 0.65);
}

body.v3 .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--gks-white);
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--dur-fast) var(--ease-premium),
              transform var(--dur-fast) var(--ease-premium);
}
body.v3 .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* =================================================================
   3) CORE SERVICES — alternating split cards
   Re-skins: .core-services-section, .services-grid-modern, .service-card-modern
   ================================================================= */

body.v3 .core-services-section,
body.v3 .additional-services-section,
body.v3 .services-by-country-section,
body.v3 .why-choose-section,
body.v3 .commitments-section,
body.v3 .initiatives-section,
body.v3 .stats-green,
body.v3 .actions-section,
body.v3 .routes-section,
body.v3 .calendar-section,
body.v3 .booking-section,
body.v3 .testimonials-groupage {
  padding: var(--section-py) 0;
}

body.v3 .core-services-section { background: var(--gks-white); }
body.v3 .additional-services-section { background: var(--gks-grey-50); }
body.v3 .services-by-country-section { background: var(--gks-white); }
body.v3 .why-choose-section { background: var(--gks-grey-50); }
body.v3 .commitments-section { background: var(--gks-white); }
body.v3 .initiatives-section { background: var(--gks-grey-50); }
body.v3 .actions-section { background: var(--gks-white); }
body.v3 .routes-section { background: var(--gks-white); }
body.v3 .calendar-section { background: var(--gks-grey-50); }
body.v3 .booking-section { background: var(--gks-white); }
body.v3 .testimonials-groupage { background: var(--gks-grey-50); }

body.v3 .services-grid-modern {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 2rem;
}

body.v3 .service-card-modern {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--gks-white);
  border: 1px solid var(--gks-grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--gks-shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease-premium),
              transform var(--dur-base) var(--ease-premium),
              border-color var(--dur-base) var(--ease-premium);
  scroll-margin-top: 120px;
}
body.v3 .service-card-modern:hover {
  box-shadow: var(--gks-shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gks-blue-300);
}
body.v3 .service-card-modern.reverse {
  grid-template-areas: "image content";
}
body.v3 .service-card-modern.reverse .service-card-content { order: 2; }
body.v3 .service-card-modern.reverse .service-card-image   { order: 1; }

body.v3 .service-icon-wrapper {
  position: absolute;
  top: 1.75rem;
  left: 1.75rem;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--gks-white);
  box-shadow: var(--gks-shadow-md);
  z-index: 2;
}
body.v3 .service-icon-wrapper.blue {
  background: linear-gradient(135deg, var(--gks-blue) 0%, var(--gks-blue-500) 100%);
}
body.v3 .service-icon-wrapper.red {
  background: linear-gradient(135deg, var(--gks-red) 0%, var(--gks-red-700) 100%);
}

body.v3 .service-card-content { padding-top: 3rem; }

body.v3 .service-card-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 800;
  color: var(--gks-grey-900);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

body.v3 .service-card-content p {
  color: var(--gks-grey-700);
  line-height: var(--lh-body);
  margin-bottom: 1.25rem;
}

body.v3 .service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
}
body.v3 .service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--gks-grey-700);
}
body.v3 .service-features li i {
  color: var(--gks-blue);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

body.v3 .service-stats-mini {
  display: flex;
  gap: 1rem;
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: var(--gks-blue-50);
  border-radius: var(--radius-md);
}
body.v3 .mini-stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(10, 61, 98, 0.15);
}
body.v3 .mini-stat:last-child { border-right: none; }
body.v3 .mini-stat .stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--gks-blue);
  font-size: 1.5rem;
  line-height: 1.1;
}
body.v3 .mini-stat .stat-label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--gks-grey-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

body.v3 .btn-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.3rem;
  background: var(--gks-blue);
  color: var(--gks-white);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--dur-fast) var(--ease-premium),
              transform var(--dur-fast) var(--ease-premium);
}
body.v3 .btn-service-cta:hover {
  background: var(--gks-blue-700);
  transform: translateY(-2px);
}
body.v3 .service-card-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

body.v3 .service-card-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--gks-shadow-md);
}
body.v3 .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-premium);
}
body.v3 .service-card-modern:hover .service-card-image img { transform: scale(1.05); }

@media (max-width: 860px) {
  body.v3 .service-card-modern,
  body.v3 .service-card-modern.reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
  }
  body.v3 .service-card-modern.reverse .service-card-content { order: 2; }
  body.v3 .service-card-modern.reverse .service-card-image   { order: 1; }
  body.v3 .service-icon-wrapper { top: 1rem; left: 1rem; width: 48px; height: 48px; font-size: 1.15rem; }
  body.v3 .service-card-content { padding-top: 3rem; }
}

/* =================================================================
   4) ADDITIONAL SERVICES (mini cards)
   Re-skins: .additional-services-grid, .additional-service-card
   ================================================================= */

body.v3 .additional-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

body.v3 .additional-service-card {
  background: var(--gks-white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gks-grey-200);
  box-shadow: var(--gks-shadow-sm);
  text-align: left;
  transition: transform var(--dur-base) var(--ease-premium),
              box-shadow var(--dur-base) var(--ease-premium),
              border-color var(--dur-base) var(--ease-premium);
}
body.v3 .additional-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gks-shadow-lg);
  border-color: var(--gks-blue-300);
}

body.v3 .additional-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--gks-white);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--gks-shadow-md);
}
body.v3 .additional-icon.blue-gradient {
  background: linear-gradient(135deg, var(--gks-blue) 0%, var(--gks-blue-500) 100%);
}
body.v3 .additional-icon.red-gradient {
  background: linear-gradient(135deg, var(--gks-red) 0%, var(--gks-red-700) 100%);
}

body.v3 .additional-service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gks-grey-900);
  margin-bottom: 0.5rem;
}
body.v3 .additional-service-card p {
  color: var(--gks-grey-700);
  font-size: 0.95rem;
  line-height: var(--lh-body);
}

/* =================================================================
   5) SERVICES BY COUNTRY GRID
   ================================================================= */

body.v3 .country-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

body.v3 .country-service-card {
  background: var(--gks-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gks-grey-200);
  box-shadow: var(--gks-shadow-sm);
  transition: transform var(--dur-base) var(--ease-premium),
              box-shadow var(--dur-base) var(--ease-premium);
}
body.v3 .country-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gks-shadow-lg);
}

body.v3 .country-flag-wrapper {
  height: 160px;
  background:
    linear-gradient(180deg, rgba(10, 61, 98, 0) 60%, rgba(10, 61, 98, 0.15) 100%),
    var(--gks-blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.v3 .country-flag-wrapper img {
  max-width: 82%;
  max-height: 82%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(10, 61, 98, 0.25));
  transition: transform var(--dur-base) var(--ease-premium);
}
body.v3 .country-service-card:hover .country-flag-wrapper img { transform: scale(1.06); }

body.v3 .country-card-content { padding: 1.5rem; }

body.v3 .country-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gks-grey-900);
  margin-bottom: 0.25rem;
}

body.v3 .country-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gks-grey-700);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
body.v3 .country-location i { color: var(--gks-red); }

body.v3 .country-services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.4rem;
}
body.v3 .country-services-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--gks-grey-700);
  font-size: 0.9rem;
}
body.v3 .country-services-list li i {
  color: var(--gks-blue);
  font-size: 0.75rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

body.v3 .btn-country-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gks-red);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap var(--dur-fast) var(--ease-premium),
              color var(--dur-fast) var(--ease-premium);
}
body.v3 .btn-country-link:hover {
  gap: 0.7rem;
  color: var(--gks-red-700);
}

/* =================================================================
   6) WHY-CHOOSE CARDS (6-up)
   ================================================================= */

body.v3 .why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

body.v3 .why-card {
  background: var(--gks-white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gks-grey-200);
  box-shadow: var(--gks-shadow-sm);
  transition: transform var(--dur-base) var(--ease-premium),
              box-shadow var(--dur-base) var(--ease-premium);
  position: relative;
  overflow: hidden;
}
body.v3 .why-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gks-blue), var(--gks-red));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-base) var(--ease-premium);
}
body.v3 .why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gks-shadow-lg);
}
body.v3 .why-card:hover::before { transform: scaleX(1); }

body.v3 .why-icon-wrapper {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--gks-blue-50);
  color: var(--gks-blue);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

body.v3 .why-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gks-grey-900);
  margin-bottom: 0.5rem;
}
body.v3 .why-card p {
  color: var(--gks-grey-700);
  font-size: 0.95rem;
  line-height: var(--lh-body);
}

/* =================================================================
   7) CTA BANNER
   Re-skins: .services-cta-section
   ================================================================= */

body.v3 .services-cta-section {
  position: relative;
  padding: 3.5rem 0;
  color: var(--gks-white);
  overflow: hidden;
  isolation: isolate;
  background: var(--gks-blue-700);
}
body.v3 .services-cta-section .cta-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
body.v3 .services-cta-section .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(6, 42, 69, 0.92) 0%,
    rgba(10, 61, 98, 0.78) 100%);
  z-index: -1;
}

body.v3 .cta-content-center { max-width: 820px; margin: 0 auto; text-align: center; }

body.v3 .cta-icon-large {
  display: none;
}

body.v3 .services-cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: var(--lh-tight);
  color: var(--gks-white);
  margin-bottom: 0.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.v3 .services-cta-section p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

body.v3 .cta-buttons-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

body.v3 .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  background: var(--gks-red);
  color: var(--gks-white);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium),
              background var(--dur-fast) var(--ease-premium);
  box-shadow: 0 12px 28px -10px rgba(230, 57, 70, 0.55);
}
body.v3 .btn-cta-primary:hover {
  transform: translateY(-2px);
  background: var(--gks-red-700);
}

body.v3 .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--gks-white);
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--dur-fast) var(--ease-premium),
              transform var(--dur-fast) var(--ease-premium);
}
body.v3 .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

body.v3 .cta-contact-info {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
body.v3 .cta-contact-info .contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}
body.v3 .cta-contact-info .contact-item i { color: var(--gks-red-300); }
body.v3 .cta-contact-info a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-premium);
}
body.v3 .cta-contact-info a:hover { color: var(--gks-white); }

/* =================================================================
   8) GROUPAGE — Routes, Calendar, Booking, Testimonials
   ================================================================= */

body.v3 .routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

body.v3 .route-card {
  background: var(--gks-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gks-grey-200);
  box-shadow: var(--gks-shadow-sm);
  transition: transform var(--dur-base) var(--ease-premium),
              box-shadow var(--dur-base) var(--ease-premium);
}
body.v3 .route-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--gks-shadow-lg);
}

body.v3 .route-header {
  background: linear-gradient(135deg, var(--gks-blue) 0%, var(--gks-blue-500) 100%);
  color: var(--gks-white);
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
}
body.v3 .route-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gks-red), transparent);
}
body.v3 .route-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gks-white);
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
body.v3 .route-path {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
body.v3 .route-path i { color: var(--gks-red-300); }

body.v3 .route-body { padding: 2rem 1.75rem; }

body.v3 .route-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.v3 .route-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gks-grey-200);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gks-grey-700);
  font-size: 0.95rem;
}
body.v3 .route-features li:last-child { border-bottom: none; }
body.v3 .route-features i { color: var(--gks-blue); flex-shrink: 0; margin-top: 0.2rem; }

body.v3 .route-body .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-pill);
  background: var(--gks-red);
  color: var(--gks-white);
  font-weight: 700;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-premium),
              transform var(--dur-fast) var(--ease-premium);
}
body.v3 .route-body .btn:hover {
  background: var(--gks-red-700);
  transform: translateY(-2px);
}

/* Calendar / Departures */
body.v3 .departures-calendar {
  max-width: 920px;
  margin: 3rem auto 0;
  background: var(--gks-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gks-grey-200);
  box-shadow: var(--gks-shadow-md);
  overflow: hidden;
}
body.v3 .departures-calendar .calendar-header {
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--gks-blue) 0%, var(--gks-blue-500) 100%);
  color: var(--gks-white);
}
body.v3 .departures-calendar .calendar-header h3 {
  color: var(--gks-white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}
body.v3 .departures-calendar .calendar-body { padding: 0; }
body.v3 .departure-row {
  display: grid;
  grid-template-columns: 2fr 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.75rem;
  border-bottom: 1px solid var(--gks-grey-200);
  font-size: 0.95rem;
  color: var(--gks-grey-900);
}
body.v3 .departure-row:last-child { border-bottom: none; }
body.v3 .departure-row .btn.btn-secondary {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--gks-blue);
  color: var(--gks-white);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
body.v3 .departure-row .btn.btn-secondary:hover { background: var(--gks-blue-700); }

@media (max-width: 640px) {
  body.v3 .departure-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 520px) {
  body.v3 .routes-grid,
  body.v3 .country-services-grid {
    grid-template-columns: 1fr;
  }

  body.v3 .route-header h3 {
    font-size: 1.25rem;
  }

  body.v3 .route-path {
    flex-wrap: wrap;
    justify-content: center;
  }

  body.v3 .departure-row .btn.btn-secondary {
    white-space: normal;
    width: 100%;
  }
}

/* Booking Form */
body.v3 .booking-form {
  max-width: 820px;
  margin: 3rem auto 0;
  padding: 2.25rem;
  background: var(--gks-white);
  border: 1px solid var(--gks-grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--gks-shadow-md);
}
body.v3 .booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  body.v3 .booking-form .form-row { grid-template-columns: 1fr; }
}
body.v3 .booking-form .form-group { margin-bottom: 1rem; }
body.v3 .booking-form label {
  display: block;
  font-weight: 600;
  color: var(--gks-grey-900);
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
}
body.v3 .booking-form input,
body.v3 .booking-form select,
body.v3 .booking-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--gks-white);
  border: 1px solid var(--gks-grey-300);
  border-radius: var(--radius-sm);
  color: var(--gks-grey-900);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--dur-fast) var(--ease-premium),
              box-shadow var(--dur-fast) var(--ease-premium);
}
body.v3 .booking-form input:focus,
body.v3 .booking-form select:focus,
body.v3 .booking-form textarea:focus {
  outline: none;
  border-color: var(--gks-blue);
  box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.15);
}
body.v3 .booking-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--gks-red) 0%, var(--gks-red-700) 100%);
  color: var(--gks-white);
  border-radius: var(--radius-pill);
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 12px 28px -10px rgba(230, 57, 70, 0.55);
  transition: transform var(--dur-fast) var(--ease-premium),
              box-shadow var(--dur-fast) var(--ease-premium);
}
body.v3 .booking-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(230, 57, 70, 0.65);
}

/* Testimonials */
body.v3 .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
body.v3 .testimonial-card {
  background: var(--gks-white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gks-grey-200);
  box-shadow: var(--gks-shadow-sm);
  position: relative;
  transition: transform var(--dur-base) var(--ease-premium),
              box-shadow var(--dur-base) var(--ease-premium);
}
body.v3 .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gks-shadow-lg);
}
body.v3 .testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.25rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gks-blue-300);
  opacity: 0.5;
  line-height: 1;
}
body.v3 .testimonial-card p {
  color: var(--gks-grey-700);
  line-height: var(--lh-body);
  font-style: italic;
  margin-bottom: 1rem;
}
body.v3 .testimonial-card strong {
  color: var(--gks-blue);
  font-weight: 700;
  font-size: 0.9rem;
  font-style: normal;
}

/* =================================================================
   9) GREEN-LOGISTICS specific
   ================================================================= */

body.v3 .commitments-grid,
body.v3 .initiatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

body.v3 .commitment-card,
body.v3 .initiative-card {
  background: var(--gks-white);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gks-grey-200);
  box-shadow: var(--gks-shadow-sm);
  text-align: center;
  transition: transform var(--dur-base) var(--ease-premium),
              box-shadow var(--dur-base) var(--ease-premium),
              border-color var(--dur-base) var(--ease-premium);
}
body.v3 .commitment-card:hover,
body.v3 .initiative-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px -18px rgba(34, 139, 34, 0.35);
  border-color: #228B22;
}

body.v3 .commitment-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gks-white);
  font-size: 1.8rem;
  box-shadow: 0 12px 28px -10px rgba(34, 139, 34, 0.5);
}

body.v3 .commitment-card h3,
body.v3 .initiative-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gks-grey-900);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
body.v3 .commitment-card p,
body.v3 .initiative-card p {
  color: var(--gks-grey-700);
  font-size: 0.95rem;
  line-height: var(--lh-body);
}

body.v3 .stats-green { background: var(--gks-blue-700); color: var(--gks-white); }
body.v3 .stats-green h1,
body.v3 .stats-green h2,
body.v3 .stats-green h3,
body.v3 .stats-green .section-title-large { color: var(--gks-white); }
body.v3 .stats-green .section-subtitle { color: rgba(255, 255, 255, 0.85); }

body.v3 .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
body.v3 .stat-green-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--dur-fast) var(--ease-premium);
}
body.v3 .stat-green-card:hover { background: rgba(255, 255, 255, 0.1); }
body.v3 .stat-green-number,
body.v3 .stat-green-card .stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: #32CD32;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
body.v3 .stat-green-label,
body.v3 .stat-green-card .stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Actions call-to-action section (green) */
body.v3 .actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
body.v3 .action-card {
  background: var(--gks-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gks-grey-200);
  box-shadow: var(--gks-shadow-sm);
  text-align: left;
  transition: transform var(--dur-base) var(--ease-premium),
              box-shadow var(--dur-base) var(--ease-premium);
}
body.v3 .action-card:hover { transform: translateY(-4px); box-shadow: var(--gks-shadow-lg); }
body.v3 .action-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gks-grey-900);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
body.v3 .action-card p {
  color: var(--gks-grey-700);
  font-size: 0.95rem;
  line-height: var(--lh-body);
}

/* =================================================================
   10) LEGACY GLOBAL BTN OVERRIDES (used on interior pages)
   ================================================================= */

body.v3 .btn {
  /* legacy .btn often has background; ensure no stale blue gradient */
  font-family: var(--font-body);
}

/* Ensure anchor links targeted via hash scroll past the sticky header */
body.v3.has-hero-header [id] { scroll-margin-top: 100px; }

/* =================================================================
   11) ANIMATIONS — reveal utility pairing with v3-ui.js
   ================================================================= */

body.v3 [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-slow) var(--ease-premium),
              transform var(--dur-slow) var(--ease-premium);
}
body.v3 [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================================
   ALL-SERVICES PAGE — REFRESHED 2026
   Trust band, service card accent strip, why-card colour variants,
   CTA quick-contact row.
   ================================================================= */

/* Trust band (between hero and core services) */
body.v3 .services-trust-band {
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(10, 61, 98, 0.06);
  padding: 1.5rem 0;
}
body.v3 .services-trust-band__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
  margin: 0;
  padding: 0;
}
body.v3 .services-trust-band__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gks-grey-700);
  font-weight: 600;
  font-size: 0.92rem;
}
body.v3 .services-trust-band__list i {
  color: var(--gks-red);
  font-size: 1rem;
}

/* Gradient accent strip on service cards */
body.v3 .service-card-modern {
  overflow: hidden;
}
body.v3 .service-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gks-blue) 0%, var(--gks-red) 100%);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
body.v3 .service-card-modern:hover::before {
  transform: scaleX(1);
}
body.v3 .service-card-modern.reverse::before {
  background: linear-gradient(90deg, var(--gks-red) 0%, var(--gks-blue) 100%);
  transform-origin: right;
}

/* Why-card colour variants — rotates through 3 brand accents */
body.v3 .why-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease-premium),
    box-shadow 0.3s var(--ease-premium),
    border-color 0.3s var(--ease-premium);
}
body.v3 .why-choose-grid .why-card:nth-child(3n+1) .why-icon-wrapper {
  background: linear-gradient(135deg, var(--gks-blue) 0%, var(--gks-blue-500) 100%);
}
body.v3 .why-choose-grid .why-card:nth-child(3n+2) .why-icon-wrapper {
  background: linear-gradient(135deg, var(--gks-red) 0%, var(--gks-red-700, #c72333) 100%);
}
body.v3 .why-choose-grid .why-card:nth-child(3n+3) .why-icon-wrapper {
  background: linear-gradient(135deg, #1B5C8A 0%, var(--gks-blue) 100%);
}
body.v3 .why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(10, 61, 98, 0.14);
  border-color: rgba(10, 61, 98, 0.18);
}

/* Hero stats — bolder pill treatment */
body.v3 .hero-stats-inline {
  gap: 1rem 1.5rem;
}
body.v3 .stat-inline-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s;
}
body.v3 .stat-inline-item:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
}

/* CTA section — add a quick-contact row */
body.v3 .services-cta-section .cta-contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
}
body.v3 .services-cta-section .cta-contact-info .contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.95rem;
}
body.v3 .services-cta-section .cta-contact-info i {
  color: var(--gks-red-300, #f87171);
}

@media (max-width: 640px) {
  body.v3 .services-trust-band__list { gap: 0.75rem 1.25rem; }
  body.v3 .services-trust-band__list li { font-size: 0.85rem; }
}

/* =================================================================
   ALL-SERVICES — COMPLETE REDESIGN (2026)
   Hero split, tabbed catalog, industries, process, coverage, proof
   ================================================================= */

/* ---------- Shared section heads ---------- */
body.v3 .svc-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
body.v3 .svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill, 999px);
  background: rgba(10, 61, 98, 0.08);
  color: var(--gks-blue);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.v3 .svc-eyebrow i { font-size: 0.95rem; color: var(--gks-red); }
body.v3 .svc-eyebrow--light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.22);
}
body.v3 .svc-eyebrow--light i { color: #FFD7DC; }
body.v3 .svc-section-title {
  margin: 1rem 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--gks-grey-900);
}
body.v3 .svc-section-title--light { color: var(--gks-white); }
body.v3 .svc-section-lead {
  font-size: clamp(1.2rem, 1.6vw, 1.38rem);
  line-height: var(--lh-body);
  color: var(--gks-grey-700);
  margin: 0;
}
body.v3 .svc-section-lead--light { color: rgba(255,255,255,0.85); }
body.v3 .svc-section-head--light { color: var(--gks-white); }

/* ---------- HERO — split layout ---------- */
body.v3 .svc-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
  color: var(--gks-white);
}
body.v3 .svc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 95% 0%, rgba(230, 57, 70, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(27, 92, 138, 0.5) 0%, transparent 55%),
    linear-gradient(135deg, rgba(6, 42, 69, 0.95) 0%, rgba(10, 61, 98, 0.9) 60%, rgba(27, 92, 138, 0.78) 100%),
    url('/assets/logistics-global-shipping-port-network.jpeg') center / cover no-repeat;
}
body.v3 .svc-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 35%, transparent 80%);
  pointer-events: none;
}
body.v3 .svc-hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3rem;
  align-items: center;
}
body.v3 .svc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(230,57,70,0.18);
  border: 1px solid rgba(230,57,70,0.45);
  color: #FFD7DC;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
body.v3 .svc-hero__eyebrow i { color: var(--gks-red); }
body.v3 .svc-hero__title {
  margin: 1rem 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--gks-white);
}
body.v3 .svc-hero__title span {
  display: block;
}
body.v3 .svc-hero__title em {
  font-style: normal;
  color: var(--gks-red, #e63946);
}
body.v3 .svc-hero__lead {
  font-size: 1.24rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin: 0 0 1.5rem;
}
body.v3 .svc-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 1.75rem;
}
body.v3 .svc-hero__stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  padding: 1rem 0.65rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 32px rgba(6, 42, 69, 0.18);
}
body.v3 .svc-hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  font-weight: 800;
  color: var(--gks-white);
  line-height: 1.1;
}
body.v3 .svc-hero__stat span {
  display: block;
  font-size: 0.96rem;
  color: rgba(255,255,255,0.86);
  margin-top: 0.2rem;
  font-weight: 700;
}
body.v3 .svc-hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
body.v3 .svc-hero__shortcut {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 1.5rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
body.v3 .svc-hero__shortcut-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 1rem;
}
body.v3 .svc-hero__shortcut-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
body.v3 .svc-hero__shortcut-list a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--gks-white);
  background: rgba(255,255,255,0.04);
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  font-weight: 600;
  font-size: 1.1rem;
}
body.v3 .svc-hero__shortcut-list a > i:first-child {
  width: 28px;
  text-align: center;
  color: #FFD7DC;
}
body.v3 .svc-hero__shortcut-list a > span {
  flex: 1;
}
body.v3 .svc-hero__shortcut-list .svc-arrow {
  opacity: 0.4;
  transition: transform 0.2s, opacity 0.2s;
}
body.v3 .svc-hero__shortcut-list a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  transform: translateX(3px);
}
body.v3 .svc-hero__shortcut-list a:hover .svc-arrow {
  opacity: 1;
  transform: translateX(3px);
}

@media (max-width: 980px) {
  body.v3 .svc-hero__container { grid-template-columns: 1fr; gap: 2rem; }
  body.v3 .svc-hero__stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* ---------- SERVICE CATALOG — tabs + panel ---------- */
body.v3 .svc-catalog {
  padding: var(--section-py) 0;
  background: var(--gks-white);
}
body.v3 .svc-catalog__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin: 0 0 2.5rem;
  padding: 0.4rem;
  background: rgba(10, 61, 98, 0.06);
  border-radius: 16px;
  max-width: 1060px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
body.v3 .svc-catalog__tab {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.2rem;
  background: transparent;
  border: none;
  color: var(--gks-grey-700);
  font-weight: 700;
  font-size: 1.08rem;
  cursor: pointer;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
body.v3 .svc-catalog__tab i { font-size: 1.15rem; }
body.v3 .svc-catalog__tab:hover {
  color: var(--gks-blue);
  background: rgba(255,255,255,0.6);
}
body.v3 .svc-catalog__tab.is-active {
  background: var(--gks-white);
  color: var(--gks-blue);
  box-shadow: 0 6px 18px rgba(10, 61, 98, 0.12);
}
body.v3 .svc-catalog__tab.is-active i { color: var(--gks-red); }

body.v3 .svc-catalog__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}
body.v3 .svc-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--gks-white);
  border: 1px solid var(--gks-grey-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(10, 61, 98, 0.07);
  animation: svc-panel-in 0.4s var(--ease-premium) both;
}
body.v3 .svc-catalog__grid .svc-panel {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0.95rem;
  padding: 1rem;
  scroll-margin-top: 110px;
}
@keyframes svc-panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
body.v3 .svc-panel[hidden] { display: none; }
body.v3 .svc-panel__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gks-grey-100);
}
body.v3 .svc-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-premium);
}
body.v3 .svc-catalog__grid .svc-panel__media {
  aspect-ratio: 16 / 7.5;
  width: 100%;
}
body.v3 .svc-panel:hover .svc-panel__media img { transform: scale(1.04); }
body.v3 .svc-panel__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.4rem;
  color: var(--gks-white);
  box-shadow: 0 8px 22px rgba(10, 61, 98, 0.28);
  background: linear-gradient(135deg, var(--gks-blue) 0%, var(--gks-blue-500) 100%);
}
body.v3 .svc-panel__badge--red {
  background: linear-gradient(135deg, var(--gks-red) 0%, var(--gks-red-700, #c72333) 100%);
}
body.v3 .svc-panel__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--gks-grey-900);
}
body.v3 .svc-catalog__grid .svc-panel__title {
  font-size: clamp(1.35rem, 1.8vw, 1.6rem);
  margin-bottom: 0.5rem;
}
body.v3 .svc-panel__lead {
  margin: 0 0 0.9rem;
  color: var(--gks-grey-700);
  line-height: 1.65;
  font-size: 1.14rem;
}
body.v3 .svc-panel__features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}
body.v3 .svc-catalog__grid .svc-panel__features {
  grid-template-columns: 1fr;
}
body.v3 .svc-panel__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--gks-grey-800);
  font-size: 1.08rem;
  line-height: 1.45;
}
body.v3 .svc-panel__features i { color: var(--gks-blue); margin-top: 0.15rem; flex-shrink: 0; }
body.v3 .svc-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
body.v3 .svc-panel__addons h4 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gks-grey-600);
  margin: 1rem 0 0.6rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--gks-grey-200);
}
body.v3 .svc-panel__addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.6rem;
}
body.v3 .svc-addon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  background: var(--gks-blue-50, rgba(10,61,98,0.05));
  border: 1px solid rgba(10, 61, 98, 0.08);
  border-radius: 12px;
  color: var(--gks-grey-800);
  font-size: 1.04rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
body.v3 .svc-addon i { color: var(--gks-red); }
body.v3 .svc-addon:hover {
  background: var(--gks-white);
  border-color: var(--gks-blue);
  transform: translateY(-2px);
}

@media (max-width: 880px) {
  body.v3 .svc-catalog__grid { grid-template-columns: 1fr; }
  body.v3 .svc-panel { grid-template-columns: 1fr; padding: 1.75rem; gap: 1.75rem; }
  body.v3 .svc-panel__features { grid-template-columns: 1fr; }
  body.v3 .svc-catalog__tabs { padding: 0.35rem; }
  body.v3 .svc-catalog__tab { font-size: 0.95rem; padding: 0.7rem 0.85rem; }
  body.v3 .svc-catalog__tab span { display: inline; }
  body.v3 .svc-catalog__tab i { font-size: 1rem; }
}

@media (max-width: 560px) {
  body.v3 .svc-catalog__tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  body.v3 .svc-catalog__tabs::-webkit-scrollbar { display: none; }
  body.v3 .svc-catalog__tab {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

/* ---------- INDUSTRIES ---------- */
body.v3 .svc-industries {
  padding: var(--section-py) 0;
  background: var(--gks-grey-50, #f8fafc);
}
body.v3 .svc-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
body.v3 .svc-industry-card {
  background: var(--gks-white);
  border: 1px solid rgba(10, 61, 98, 0.08);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.25s var(--ease-premium), box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
body.v3 .svc-industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(10, 61, 98, 0.12);
  border-color: rgba(10, 61, 98, 0.18);
}
body.v3 .svc-industry-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: var(--gks-white);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, var(--gks-blue) 0%, var(--gks-blue-500) 100%);
}
body.v3 .svc-industries__grid > .svc-industry-card:nth-child(3n+2) .svc-industry-card__icon {
  background: linear-gradient(135deg, var(--gks-red) 0%, var(--gks-red-700, #c72333) 100%);
}
body.v3 .svc-industries__grid > .svc-industry-card:nth-child(3n+3) .svc-industry-card__icon {
  background: linear-gradient(135deg, #1B5C8A 0%, var(--gks-blue) 100%);
}
body.v3 .svc-industry-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--gks-grey-900);
}
body.v3 .svc-industry-card p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--gks-grey-600);
  line-height: 1.55;
}

@media (max-width: 900px) {
  body.v3 .svc-industries__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body.v3 .svc-industries__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- PROCESS — 5-step flow ---------- */
body.v3 .svc-process {
  padding: var(--section-py) 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--gks-white);
  background:
    radial-gradient(ellipse 70% 55% at 90% 0%, rgba(230, 57, 70, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 5% 100%, rgba(27, 92, 138, 0.45) 0%, transparent 55%),
    linear-gradient(135deg, #062A45 0%, #0A3D62 60%, #1B5C8A 100%);
}
body.v3 .svc-process__flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
  counter-reset: step;
}
body.v3 .svc-process__flow::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 8%;
  right: 8%;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.5) 50%, transparent 50%);
  background-size: 14px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
body.v3 .svc-process__step {
  position: relative;
  text-align: center;
  z-index: 1;
}
body.v3 .svc-process__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.4rem;
}
body.v3 .svc-process__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.22);
  color: var(--gks-white);
  font-size: 1.35rem;
  margin: 0 auto 0.85rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
body.v3 .svc-process__step:hover .svc-process__icon {
  background: var(--gks-red);
  border-color: var(--gks-red);
  transform: translateY(-3px) scale(1.05);
}
body.v3 .svc-process__step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gks-white);
  margin: 0 0 0.35rem;
}
body.v3 .svc-process__step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 860px) {
  body.v3 .svc-process__flow { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  body.v3 .svc-process__flow::before { display: none; }
}
@media (max-width: 480px) {
  body.v3 .svc-process__flow { grid-template-columns: 1fr; }
}

/* ---------- COVERAGE ---------- */
body.v3 .svc-coverage {
  padding: var(--section-py) 0;
  background: var(--gks-white);
}
body.v3 .svc-coverage__inner {
  background: linear-gradient(135deg, #f4f7fb 0%, #ffffff 100%);
  border: 1px solid rgba(10, 61, 98, 0.08);
  border-radius: 22px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
body.v3 .svc-coverage__pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
body.v3 .svc-coverage__pills a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.15rem;
  background: var(--gks-white);
  border: 1.5px solid rgba(10, 61, 98, 0.1);
  border-radius: 999px;
  color: var(--gks-grey-800);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.04rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
}
body.v3 .svc-coverage__pills small {
  color: var(--gks-red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
body.v3 .svc-coverage__pills a:hover {
  background: var(--gks-blue);
  border-color: var(--gks-blue);
  color: var(--gks-white);
  transform: translateY(-2px);
}
body.v3 .svc-coverage__cta {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #062a45 0%, #0a3d62 100%);
  border-radius: 16px;
  color: var(--gks-white);
}
body.v3 .svc-coverage__cta p {
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.9);
}
@media (max-width: 880px) {
  body.v3 .svc-coverage__inner { grid-template-columns: 1fr; }
}

/* ---------- SHIPMENT PLANNER ---------- */
body.v3 .svc-planner {
  padding: var(--section-py) 0;
  background:
    radial-gradient(ellipse 55% 45% at 8% 15%, rgba(230, 57, 70, 0.08), transparent 62%),
    linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
}
body.v3 .svc-planner__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
body.v3 .svc-planner__copy .svc-section-title,
body.v3 .svc-planner__copy .svc-section-lead {
  text-align: left;
  margin-inline: 0;
}
body.v3 .svc-planner__note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--gks-blue-50);
  border: 1px solid rgba(10, 61, 98, 0.12);
  border-radius: 14px;
  color: var(--gks-grey-800);
  font-weight: 600;
  line-height: 1.55;
}
body.v3 .svc-planner__note i { color: var(--gks-red); margin-top: 0.2rem; }
body.v3 .svc-planner__form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--gks-white);
  border: 1px solid rgba(10, 61, 98, 0.1);
  border-radius: 22px;
  box-shadow: 0 24px 60px -28px rgba(6, 42, 69, 0.32);
}
body.v3 .svc-planner__field {
  display: grid;
  gap: 0.45rem;
}
body.v3 .svc-planner__field label {
  color: var(--gks-blue);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
}
body.v3 .svc-planner__field select,
body.v3 .svc-planner__field input {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 0.95rem;
  border: 1.5px solid rgba(10, 61, 98, 0.16);
  border-radius: 12px;
  color: var(--gks-grey-900);
  background: #fff;
  font: 600 0.98rem var(--font-body);
}
body.v3 .svc-planner__field select:focus,
body.v3 .svc-planner__field input:focus {
  outline: 3px solid rgba(230, 57, 70, 0.16);
  border-color: var(--gks-red);
}
body.v3 .svc-planner__result {
  display: grid;
  gap: 0.35rem;
  min-height: 96px;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(10, 61, 98, 0.1);
}
body.v3 .svc-planner__result strong {
  color: var(--gks-blue);
  font-family: var(--font-display);
  font-size: 1rem;
}
body.v3 .svc-planner__result span {
  color: var(--gks-grey-700);
  line-height: 1.55;
}
body.v3 .svc-planner__result.is-warning {
  background: #fff7ed;
  border-color: rgba(230, 57, 70, 0.3);
}
body.v3 .svc-planner__result.is-warning strong { color: var(--gks-red); }
body.v3 .svc-planner__result.is-ok {
  background: #f0fdf4;
  border-color: rgba(10, 61, 98, 0.18);
}
body.v3 .svc-planner__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: var(--gks-red);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 32px -18px rgba(230, 57, 70, 0.7);
}
body.v3 .svc-planner__cta:hover {
  background: #c72333;
  transform: translateY(-1px);
}
@media (max-width: 880px) {
  body.v3 .svc-planner__grid { grid-template-columns: 1fr; }
}

/* ---------- PROOF ---------- */
body.v3 .svc-proof {
  padding: var(--section-py) 0;
  background: var(--gks-grey-50, #f8fafc);
}
body.v3 .svc-proof__feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  background: var(--gks-white);
  border: 1px solid rgba(10, 61, 98, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 22px 50px rgba(10, 61, 98, 0.08);
}
body.v3 .svc-proof__feature-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
body.v3 .svc-proof__feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.v3 .svc-proof__feature-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(10, 61, 98, 0.92);
  color: var(--gks-white);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.v3 .svc-proof__feature-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--gks-grey-900);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
body.v3 .svc-proof__feature-copy p {
  color: var(--gks-grey-700);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
body.v3 .svc-proof__bullets {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
body.v3 .svc-proof__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--gks-grey-800);
  font-size: 0.98rem;
}
body.v3 .svc-proof__bullets i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gks-blue);
  color: var(--gks-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
body.v3 .svc-proof__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
body.v3 .svc-proof__stat {
  background: var(--gks-white);
  border: 1px solid rgba(10, 61, 98, 0.08);
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.25s var(--ease-premium), box-shadow 0.25s;
}
body.v3 .svc-proof__stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(10, 61, 98, 0.1);
}
body.v3 .svc-proof__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gks-blue);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
body.v3 .svc-proof__stat:nth-child(even) strong { color: var(--gks-red); }
body.v3 .svc-proof__stat span {
  font-size: 0.88rem;
  color: var(--gks-grey-600);
  font-weight: 600;
}
@media (max-width: 880px) {
  body.v3 .svc-proof__feature { grid-template-columns: 1fr; padding: 1.75rem; gap: 1.75rem; }
}

/* ---------- Readability lift for service-page dense content ---------- */
body.v3 :is(.svc-panel__copy p, .svc-panel__copy li,
  .svc-sector-card p, .svc-planner p, .svc-planner li,
  .svc-country-card p, .svc-proof p, .svc-proof li,
  .svc-timeline p, .svc-route-card p, .service-card p) {
  font-size: 1.1rem;
  line-height: 1.74;
}

body.v3 :is(.svc-sector-card h3, .svc-country-card h3,
  .svc-route-card h3, .service-card h3) {
  font-size: max(1.25rem, 1em);
}

body.v3 :is(.svc-proof__feature-tag, .svc-proof__stat span,
  .services-trust-band__list li, .svc-planner__hint,
  .svc-form-note, .svc-chip, .svc-country-code) {
  font-size: max(0.95rem, 1em);
}

@media (max-width: 640px) {
  body.v3 :is(.svc-panel__copy p, .svc-panel__copy li,
    .svc-sector-card p, .svc-planner p, .svc-planner li,
    .svc-country-card p, .svc-proof p, .svc-proof li,
    .svc-timeline p, .svc-route-card p, .service-card p) {
    font-size: 1.1rem;
  }
}
