/* Generated from _shared/design-tokens.json — NO Google Fonts */
@import url("../fonts/fonts.css?v=20260902");

:root {
  --gp-primary: #003366;
  --gp-secondary: #0073e6;
  --gp-accent: #ff6600;
  --gp-neutral-light: #f5f5f5;
  --gp-neutral-dark: #333333;
  --gp-white: #ffffff;
  --gp-btn-primary-bg: #003366;
  --gp-btn-primary-text: #ffffff;
  --gp-btn-primary-hover: #004080;
  --gp-btn-secondary-bg: #ff6600;
  --gp-btn-secondary-text: #ffffff;
  --gp-btn-secondary-hover: #e65c00;
  --gp-space-section: 24px;
  --gp-space-element: 16px;
  --gp-font-ar: "Tajawal", system-ui, sans-serif;
  --gp-font-en: "Inter", system-ui, sans-serif;
  --gp-max: 1120px;
  --gp-radius: 4px;
  --gp-top-bg-from: #020617; /* slate-950 */
  --gp-top-bg-via: #0f172a;  /* slate-900 */
  --gp-top-bg-to: #020617;
  --gp-top-border: rgba(30, 41, 59, 0.8); /* slate-800/80 */
  --gp-top-text: #ffffff;
  --gp-top-icon: #fb923c; /* orange-400 */
  --gp-top-hover: #ff6600;
  --gp-top-portal-bg: rgba(15, 23, 42, 0.9); /* slate-900/90 */
  --gp-top-portal-border: rgba(51, 65, 85, 0.8); /* slate-700/80 */
  --gp-top-muted: rgba(148, 163, 184, 0.55);
  --gp-desktop-topbar-h: 2.75rem;
  --gp-mtop-height: 2.75rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--gp-neutral-dark);
  background: var(--gp-white);
  font-family: var(--gp-font-en);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
}

html[lang="ar"] body,
html[dir="rtl"] body {
  font-family: var(--gp-font-ar);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gp-secondary); text-decoration-thickness: 1px; }
a:hover { color: var(--gp-primary); }

.gp-container {
  width: min(100% - 2 * var(--gp-space-element), var(--gp-max));
  margin-inline: auto;
}

.gp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gp-space-element);
}

.gp-section {
  padding-block: calc(var(--gp-space-section) * 2);
}

.gp-kicker {
  display: inline-block;
  color: var(--gp-accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--gp-space-element);
}

.gp-h1 {
  margin: 0 0 var(--gp-space-element);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gp-primary);
  line-height: 1.25;
}

.gp-h2 {
  margin: 0 0 var(--gp-space-element);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--gp-primary);
}

.gp-lead {
  margin: 0;
  font-size: 1.05rem;
  max-width: 42rem;
  color: var(--gp-neutral-dark);
}

.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 1.25rem;
  border: 0;
  border-radius: var(--gp-radius);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}

.gp-btn-primary {
  background: var(--gp-btn-primary-bg);
  color: var(--gp-btn-primary-text);
}
.gp-btn-primary:hover { background: var(--gp-btn-primary-hover); color: var(--gp-white); }

.gp-btn-secondary {
  background: var(--gp-btn-secondary-bg);
  color: var(--gp-btn-secondary-text);
}
.gp-btn-secondary:hover { background: var(--gp-btn-secondary-hover); color: var(--gp-white); }

.gp-btn-ghost {
  background: transparent;
  color: var(--gp-white);
  border: 1px solid rgba(255,255,255,0.7);
}
.gp-btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--gp-white); }

/* Mobile announcement + portal strip (inside .gp-mobile-chrome on mobile) */
.gp-mtop {
  display: block;
  position: relative;
  z-index: auto;
  background: linear-gradient(90deg, #020617 0%, #0f172a 50%, #020617 100%);
  border-bottom: 1px solid #1e293b;
  -webkit-font-smoothing: antialiased;
}
.gp-mtop-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  overflow: hidden;
  min-height: var(--gp-mtop-height);
  box-sizing: border-box;
}
.gp-mtop-portal {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  background: #ea580c;
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.gp-mtop-portal:hover,
.gp-mtop-portal:focus-visible {
  background: #c2410c;
  color: #fff !important;
  outline: none;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.35);
}
.gp-mtop-portal-icon {
  display: block;
  flex-shrink: 0;
}
.gp-mtop-ticker {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.gp-mtop-ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: gp-mtop-marquee 28s linear infinite;
  will-change: transform;
}
.gp-mtop-ticker-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: #e2e8f0;
  letter-spacing: 0.01em;
}
.gp-mtop-ticker-gap {
  padding-inline: 1.25rem;
  color: rgba(148, 163, 184, 0.5);
}
@keyframes gp-mtop-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
[dir="rtl"] .gp-mtop-ticker-track {
  animation-name: gp-mtop-marquee-rtl;
}
@keyframes gp-mtop-marquee-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}
@media (min-width: 768px) {
  .gp-mtop { display: none !important; }
}

/* Unified site chrome: topbar + header */
.gp-site-chrome {
  width: 100%;
}
@media (max-width: 767px) {
  /* Mobile: pin marquee + header together (do not alter desktop rules below) */
  .gp-site-chrome {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--gp-white);
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  }
  .gp-site-chrome:has(.gp-header.is-nav-open) {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  }
}
@media (min-width: 768px) {
  /* Desktop: pin topbar + header together as one sticky unit */
  .gp-site-chrome {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--gp-white);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  }
}

/* Unified mobile sticky chrome: marquee + header */
.gp-mobile-chrome {
  width: 100%;
}
@media (max-width: 767px) {
  .gp-mobile-chrome {
    position: relative;
    top: auto;
    z-index: auto;
    width: 100%;
    background: transparent;
    box-shadow: none;
  }
  .gp-header {
    position: relative;
    top: auto;
    z-index: auto;
    background: var(--gp-white);
    border-bottom: none;
    box-shadow: none;
  }
  .gp-header.is-nav-open {
    box-shadow: none;
  }
  .gp-nav-drawer {
    border-top: 1px solid #f1f5f9;
  }
}
@media (min-width: 768px) {
  .gp-mobile-chrome {
    position: static;
    background: transparent;
    box-shadow: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gp-mtop-ticker-track {
    animation: none;
    transform: none;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .gp-mtop-ticker-text + .gp-mtop-ticker-gap,
  .gp-mtop-ticker-text + .gp-mtop-ticker-gap + .gp-mtop-ticker-text {
    display: none;
  }
}

/* Header / elite corporate top bar — full-bleed gradient, content on site grid */
.gp-top {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, var(--gp-top-bg-from) 0%, var(--gp-top-bg-via) 50%, var(--gp-top-bg-to) 100%);
  color: var(--gp-top-text);
  border-bottom: 1px solid var(--gp-top-border);
  padding-block: 0;
  padding-inline: 0;
  font-size: 0.875rem; /* text-sm */
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Equal vertical breathing · content optically centered AR/EN */
.gp-top-shell.gp-container {
  display: flex;
  align-items: center;
  width: min(100%, var(--gp-max));
  max-width: var(--gp-max);
  margin-inline: auto;
  padding-inline: 1rem;
  padding-block: 0.5rem; /* equal top/bottom */
  box-sizing: border-box;
  min-height: 2.75rem;
}
@media (min-width: 640px) {
  .gp-top-shell.gp-container { padding-inline: 1.5rem; }
}
@media (min-width: 1024px) {
  .gp-top-shell.gp-container { padding-inline: 2rem; }
}
.gp-top a {
  color: var(--gp-top-text);
  text-decoration: none;
  font-weight: 600;
  font-size: inherit;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.gp-top a:hover,
.gp-top a:focus-visible {
  color: var(--gp-top-hover);
  outline: none;
}
/* Main sticky header — 3-column grid (logo | centered nav | CTA) */
.gp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--gp-white);
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.gp-header.is-nav-open {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.gp-header-shell.gp-container {
  width: min(100%, var(--gp-max));
  max-width: var(--gp-max);
  margin-inline: auto;
  padding-inline: 1rem;
  padding-block: 0.5rem;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .gp-header-shell.gp-container { padding-inline: 1.5rem; }
}
@media (min-width: 1024px) {
  .gp-header-shell.gp-container { padding-inline: 2rem; min-height: 4.75rem; }
}
.gp-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  width: 100%;
  min-height: 3.5rem;
  gap: 0.75rem;
}
.gp-header-brand {
  justify-self: start;
  min-width: 0;
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 100%;
}
.gp-header-nav {
  justify-self: center;
  display: none; /* md+ */
  align-items: center;
  height: 100%;
}
.gp-header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0.5rem;
}
.gp-logo {
  display: flex;
  align-items: center;
  max-width: 100%;
  height: 100%;
  background: transparent;
  text-decoration: none;
}
.gp-logo picture {
  display: flex;
  align-items: center;
  max-width: 100%;
  height: 100%;
}
.gp-logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: clamp(2.65rem, 8vw, 3.35rem);
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
@media (min-width: 768px) {
  .gp-logo img {
    max-height: clamp(2.85rem, 4.2vw, 3.5rem);
    max-width: min(100%, 20rem);
  }
}
/* Mobile header language switch — globe + AR/EN pill beside hamburger */
.gp-header-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}
.gp-header-lang-globe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
}
.gp-header-lang-pill {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  background: #f8fafc;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.gp-header-lang-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.15rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #64748b;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.gp-header-lang-opt + .gp-header-lang-opt {
  border-inline-start: 1px solid #e2e8f0;
}
.gp-header-lang-opt[aria-current="true"] {
  background: linear-gradient(180deg, #0b1f3a 0%, #071018 100%);
  color: #fff;
}
.gp-header-lang-opt:hover,
.gp-header-lang-opt:focus-visible {
  color: #ea580c;
  outline: none;
}
.gp-header-lang-opt[aria-current="true"]:hover,
.gp-header-lang-opt[aria-current="true"]:focus-visible {
  color: #fff;
}
.gp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2rem; /* space-x-8 */
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
.gp-nav-link {
  color: #334155;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.gp-nav-link:hover,
.gp-nav-link:focus-visible {
  color: #ea580c;
  outline: none;
}
.gp-nav-link[aria-current="page"] {
  color: var(--gp-accent);
  font-weight: 600;
}
.gp-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ea580c;
  color: var(--gp-white) !important;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.gp-nav-cta:hover,
.gp-nav-cta:focus-visible {
  background: #c2410c;
  color: var(--gp-white) !important;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.28);
  outline: none;
}
.gp-nav-cta--desktop { display: none; }
.gp-nav-cta--block {
  width: 100%;
  margin-top: 0.35rem;
}
.gp-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: var(--gp-white);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.gp-nav-toggle:hover,
.gp-nav-toggle:focus-visible {
  border-color: #fb923c;
  outline: none;
}
.gp-nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #334155;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.gp-nav-toggle[aria-expanded="true"] .gp-nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.gp-nav-toggle[aria-expanded="true"] .gp-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.gp-nav-toggle[aria-expanded="true"] .gp-nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.gp-nav-drawer {
  border-top: 1px solid #f1f5f9;
  background: var(--gp-white);
  padding: 0.75rem 1rem 1.15rem;
  max-height: min(70vh, 28rem);
  overflow-y: auto;
  animation: gp-drawer-in 0.25s ease;
}
.gp-nav-drawer[hidden] { display: none !important; }
@keyframes gp-drawer-in {
  from { opacity: 0; transform: translateY(-0.35rem); }
  to { opacity: 1; transform: translateY(0); }
}
.gp-nav-drawer-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--gp-max);
  display: grid;
  gap: 0.35rem;
}
.gp-nav-drawer-list a {
  display: block;
  padding: 0.75rem 0.85rem;
  color: #334155;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.gp-nav-drawer-list a:hover,
.gp-nav-drawer-list a:focus-visible {
  background: #fff7ed;
  color: #ea580c;
  outline: none;
}
.gp-nav-drawer-list a[aria-current="page"] {
  color: var(--gp-accent);
  background: #fff7ed;
  font-weight: 600;
}
@media (min-width: 768px) {
  .gp-header-nav { display: flex; }
  .gp-nav-cta--desktop { display: inline-flex; }
  .gp-header-lang { display: none; }
  .gp-nav-toggle { display: none; }
  .gp-nav-drawer { display: none !important; }
}
/* On very small screens keep logo + actions readable (still 3 cols but center empty) */
@media (max-width: 767px) {
  .gp-header-grid {
    grid-template-columns: 1fr auto;
  }
  .gp-header-nav { display: none; }
  .gp-header-brand { grid-column: 1; }
  .gp-header-actions { grid-column: 2; gap: 0.4rem; }
  .gp-logo img {
    max-height: clamp(2.5rem, 11vw, 3.15rem);
    max-width: min(100%, calc(100vw - 9.5rem));
  }
}

/* Hero (shared base for service pages) */
.gp-hero {
  position: relative;
  min-height: min(70vh, 520px);
  display: grid;
  align-items: end;
  color: var(--gp-white);
  background: var(--gp-primary) center/cover no-repeat;
}
.gp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,51,102,0.35) 0%, rgba(0,51,102,0.88) 100%);
}
.gp-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: calc(var(--gp-space-section) * 2.5);
}
.gp-hero .gp-h1,
.gp-hero .gp-lead { color: var(--gp-white); }
.gp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gp-space-element);
  margin-top: calc(var(--gp-space-element) * 1.25);
}

/* Homepage cinematic hero — FedEx/Flexport class */
.gp-hero-home {
  position: relative;
  min-height: calc(100vh - 5.5rem);
  min-height: 85vh;
  display: grid;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-block: 2.5rem;
}
.gp-hero-home::before { display: none; } /* use .gp-hero-overlay instead */
.gp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.55) 0%, rgba(15, 23, 42, 0.35) 42%, rgba(2, 6, 23, 0.75) 100%),
    linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.95) 0%,
      rgba(15, 23, 42, 0.85) 50%,
      rgba(2, 6, 23, 0.5) 100%
    );
}
@media (min-width: 768px) {
  .gp-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(2, 6, 23, 0.95) 0%,
      rgba(15, 23, 42, 0.85) 50%,
      rgba(2, 6, 23, 0.5) 100%
    );
  }
  [dir="rtl"] .gp-hero-overlay {
    background: linear-gradient(
      270deg,
      rgba(2, 6, 23, 0.95) 0%,
      rgba(15, 23, 42, 0.85) 50%,
      rgba(2, 6, 23, 0.5) 100%
    );
  }
}
@media (max-width: 767px) {
  .gp-hero-home {
    min-height: min(88vh, 720px);
    background-position: center;
  }
  [dir="rtl"] .gp-hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 6, 23, 0.55) 0%, rgba(15, 23, 42, 0.35) 42%, rgba(2, 6, 23, 0.75) 100%),
      linear-gradient(
        270deg,
        rgba(2, 6, 23, 0.95) 0%,
        rgba(15, 23, 42, 0.85) 50%,
        rgba(2, 6, 23, 0.5) 100%
      );
  }
}
.gp-hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 992px) {
  .gp-hero-stage {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}
.gp-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.gp-hero-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fb923c;
  background: rgba(67, 20, 7, 0.4);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .gp-hero-badge { font-size: 0.875rem; }
}
.gp-hero-title {
  margin: 0 auto 0.85rem;
  width: 100%;
  max-width: 42rem;
  color: #fff;
  font-size: 1.875rem; /* text-3xl */
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
@media (min-width: 640px) {
  .gp-hero-title { font-size: 3rem; max-width: 44rem; } /* sm:text-5xl */
}
@media (min-width: 1024px) {
  .gp-hero-title { font-size: 3.75rem; max-width: 48rem; } /* lg:text-6xl */
}
.gp-hero-lead {
  margin: 0 auto 1.5rem;
  width: 100%;
  max-width: 42rem;
  color: #cbd5e1; /* slate-300 */
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  text-wrap: pretty;
}
@media (min-width: 640px) {
  .gp-hero-lead { font-size: 1rem; max-width: 44rem; }
}
@media (min-width: 1024px) {
  .gp-hero-lead { font-size: 1.0625rem; max-width: 48rem; }
}
/* EN desktop: 5-line lead balance (slightly smaller type) */
@media (min-width: 768px) {
  html[lang="en"] .gp-hero-lead {
    font-size: 0.96875rem;
    line-height: 1.68;
    margin-inline: auto;
  }
}
@media (min-width: 1024px) {
  html[lang="en"] .gp-hero-lead {
    font-size: 0.9375rem;
    line-height: 1.65;
    letter-spacing: -0.008em;
    margin-inline: auto;
  }
}

/* Trust & stats — executive credibility band */
@keyframes gp-trust-badge-glow {
  0%, 100% {
    box-shadow:
      0 4px 0 #b34700,
      0 8px 18px rgba(255, 102, 0, 0.32);
  }
  50% {
    box-shadow:
      0 4px 0 #b34700,
      0 8px 28px rgba(255, 102, 0, 0.48),
      0 0 22px rgba(255, 102, 0, 0.28);
  }
}
@keyframes gp-trust-rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gp-trust-panel-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gp-trust {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-block: 4rem;
  border-top: 1px solid rgba(0, 51, 102, 0.08);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 115, 230, 0.06), transparent 60%),
    linear-gradient(180deg, #e8f0f8 0%, #f4f6f9 50%, #ffffff 100%);
}
@media (min-width: 640px) {
  .gp-trust { padding-block: 5.5rem; }
}
.gp-trust-inner {
  width: min(100%, 80rem);
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .gp-trust-inner { padding-inline: 1.5rem; }
}
@media (min-width: 1024px) {
  .gp-trust-inner { padding-inline: 2rem; }
}
.gp-trust-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
  width: 100%;
}
@media (min-width: 640px) {
  .gp-trust-head { margin-bottom: 3rem; }
}
.gp-trust-badge {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.55rem 1.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(180deg, #ff8533 0%, #ff6600 48%, #e65c00 100%);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 0 #b34700,
    0 8px 18px rgba(255, 102, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: gp-trust-badge-glow 6s ease-in-out infinite;
}
@media (min-width: 640px) {
  .gp-trust-badge { font-size: 0.875rem; }
}
html[lang="en"] .gp-trust-badge {
  font-family: var(--gp-font-en);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
html[lang="ar"] .gp-trust-badge {
  font-family: var(--gp-font-ar);
}
.gp-trust-title {
  margin: 0 0 1.25rem;
  max-width: 52rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #003366;
  text-wrap: balance;
  opacity: 0;
  animation: gp-trust-rise-in 0.85s ease 0.12s forwards;
}
@media (min-width: 640px) {
  .gp-trust-title { font-size: 1.875rem; }
}
@media (min-width: 1024px) {
  .gp-trust-title { font-size: 2.125rem; }
}
html[lang="en"] .gp-trust-title { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-trust-title { font-family: var(--gp-font-ar); }
.gp-trust-lead {
  margin: 0;
  width: min(92%, 42rem);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  color: #555555;
  text-wrap: pretty;
  opacity: 0;
  animation: gp-trust-rise-in 1s ease 0.28s forwards;
}
@media (min-width: 640px) {
  .gp-trust-lead { font-size: 1rem; width: min(88%, 46rem); }
}
html[lang="en"] .gp-trust-lead { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-trust-lead { font-family: var(--gp-font-ar); }

.gp-trust-office {
  margin: 0 auto 2rem;
  width: min(100%, 56rem);
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 36px rgba(148, 163, 184, 0.18);
  background: #0a192f;
  opacity: 0;
  animation: gp-trust-rise-in 1s ease 0.36s forwards;
}
.gp-trust-office-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .gp-trust-office { margin-bottom: 2.5rem; }
}

/* Trust & stats — executive light glass + logistics orange */
.gp-trust-panel {
  position: relative;
  width: min(100%, 72rem);
  margin-inline: auto;
  padding: 1rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow:
    0 20px 40px -12px rgba(148, 163, 184, 0.28),
    0 8px 16px rgba(148, 163, 184, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  animation: gp-trust-panel-in 0.9s ease 0.45s forwards;
  overflow: hidden;
}
.gp-trust-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 55% at 50% 0%,
    rgba(249, 115, 22, 0.05),
    transparent 68%
  );
  pointer-events: none;
}
@media (min-width: 640px) {
  .gp-trust-panel {
    padding: 2rem;
    background: rgba(248, 250, 252, 0.9);
  }
}
.gp-trust-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  direction: inherit;
}
@media (min-width: 1024px) {
  .gp-trust-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.gp-trust-cell {
  min-width: 0;
  display: flex;
}
.gp-trust-cell-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  padding: 1.25rem 0.875rem;
  border-radius: 1rem;
  text-align: center;
  direction: inherit;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.98),
    rgba(248, 250, 252, 0.95)
  );
  border: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 1px 3px rgba(148, 163, 184, 0.12);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
@media (min-width: 640px) {
  .gp-trust-cell-inner { padding: 1.5rem; }
}
.gp-trust-cell-inner:hover,
.gp-trust-cell-inner:focus-within {
  border-color: rgba(251, 146, 60, 0.5);
  box-shadow:
    0 8px 20px -6px rgba(249, 115, 22, 0.14),
    0 2px 6px rgba(148, 163, 184, 0.1);
}
.gp-trust-cell-value {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  unicode-bidi: isolate;
  white-space: nowrap;
  text-align: center;
  color: #f97316;
  filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.2));
}
.gp-trust-cell-value bdi {
  unicode-bidi: isolate;
}
@media (min-width: 640px) {
  .gp-trust-cell-value { font-size: 2.125rem; }
}
@media (min-width: 1024px) {
  .gp-trust-cell-value { font-size: 2.375rem; }
}
.gp-trust-cell-rule {
  display: block;
  width: 2.5rem;
  height: 1px;
  margin: 0.5rem auto 0.625rem;
  border-radius: 9999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(249, 115, 22, 0.85),
    transparent
  );
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.35);
}
.gp-trust-cell-label {
  margin: 0;
  max-width: 13rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.625;
  color: #475569;
  text-align: center;
  text-wrap: balance;
}
@media (max-width: 639px) {
  .gp-trust-cell-label {
    max-width: none;
    font-size: 0.6875rem;
  }
}
@media (min-width: 640px) {
  .gp-trust-cell-label { font-size: 0.875rem; }
}
html[lang="en"] .gp-trust-cell-label { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-trust-cell-label { font-family: var(--gp-font-ar); }

@media (prefers-reduced-motion: reduce) {
  .gp-trust-badge { animation: none; }
  .gp-trust-title,
  .gp-trust-lead,
  .gp-trust-office,
  .gp-trust-panel {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Homepage services showcase */
.gp-svc-showcase {
  position: relative;
  width: 100%;
  padding-block: 4rem;
  background:
    radial-gradient(ellipse 90% 40% at 50% 0%, rgba(249, 115, 22, 0.04), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #ffffff 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}
@media (min-width: 640px) {
  .gp-svc-showcase { padding-block: 5.5rem; }
}
.gp-svc-showcase-inner {
  width: min(100%, 80rem);
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .gp-svc-showcase-inner { padding-inline: 1.5rem; }
}
@media (min-width: 1024px) {
  .gp-svc-showcase-inner { padding-inline: 2rem; }
}
.gp-svc-showcase-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
  width: 100%;
}
@media (min-width: 640px) {
  .gp-svc-showcase-head { margin-bottom: 3rem; }
}
.gp-svc-showcase-badge {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #c2410c;
  background: rgba(255, 237, 213, 0.85);
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: 9999px;
}
html[lang="en"] .gp-svc-showcase-badge {
  font-family: var(--gp-font-en);
  text-transform: uppercase;
}
html[lang="ar"] .gp-svc-showcase-badge {
  font-family: var(--gp-font-ar);
}
.gp-svc-showcase-title {
  margin: 0 0 1.25rem;
  max-width: 52rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: #003366;
  text-wrap: balance;
}
@media (min-width: 640px) {
  .gp-svc-showcase-title { font-size: 1.875rem; }
}
@media (min-width: 1024px) {
  .gp-svc-showcase-title { font-size: 2.125rem; }
}
html[lang="en"] .gp-svc-showcase-title { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-svc-showcase-title { font-family: var(--gp-font-ar); }
.gp-svc-showcase-lead {
  margin: 0;
  width: min(100%, 48rem);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  color: #475569;
  text-wrap: pretty;
}
@media (min-width: 640px) {
  .gp-svc-showcase-lead { font-size: 1rem; }
}
html[lang="en"] .gp-svc-showcase-lead { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-svc-showcase-lead { font-family: var(--gp-font-ar); }
.gp-svc-showcase-lead-link {
  color: #ea580c;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.gp-svc-showcase-lead-link:hover,
.gp-svc-showcase-lead-link:focus-visible {
  color: #c2410c;
}
.gp-svc-showcase-promo-wrap {
  margin: 1.35rem 0 0;
  text-align: center;
}
.gp-svc-showcase-promo {
  display: inline-block;
  max-width: 100%;
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.42;
  text-align: center;
  color: #ffffff;
  background: #ff6600;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  box-shadow:
    0 6px 18px rgba(255, 102, 0, 0.28),
    0 2px 6px rgba(255, 102, 0, 0.18);
  opacity: 0;
  animation:
    gp-svc-promo-rise-in 0.85s ease 0.15s forwards,
    gp-svc-promo-glow 5s ease-in-out 1s infinite;
}
.gp-svc-showcase-promo-line {
  display: block;
}
@media (max-width: 767px) {
  .gp-svc-showcase-promo {
    width: fit-content;
    max-width: calc(100% - 0.5rem);
    padding: 0.6rem 0.8rem;
    font-size: clamp(0.5625rem, 2.65vw, 0.6875rem);
  }
  .gp-svc-showcase-promo-line {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .gp-svc-showcase-promo {
    padding: 0.7rem 1.5rem;
    font-size: 0.8125rem;
    line-height: 1.35;
    white-space: nowrap;
  }
  .gp-svc-showcase-promo-line {
    display: inline;
  }
  html[lang="en"] .gp-svc-showcase-promo-line + .gp-svc-showcase-promo-line::before {
    content: " ";
  }
  html[lang="ar"] .gp-svc-showcase-promo-line + .gp-svc-showcase-promo-line::before {
    content: "\00a0";
  }
}
@media (min-width: 1024px) {
  .gp-svc-showcase-promo { font-size: 0.875rem; }
}
html[lang="en"] .gp-svc-showcase-promo {
  font-family: var(--gp-font-en);
}
html[lang="ar"] .gp-svc-showcase-promo {
  font-family: var(--gp-font-ar);
}
@keyframes gp-svc-promo-rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gp-svc-promo-glow {
  0%, 100% {
    box-shadow:
      0 6px 18px rgba(255, 102, 0, 0.28),
      0 2px 6px rgba(255, 102, 0, 0.18);
  }
  50% {
    box-shadow:
      0 8px 24px rgba(255, 102, 0, 0.38),
      0 0 20px rgba(255, 102, 0, 0.22);
  }
}
.gp-svc-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  direction: inherit;
}
@media (min-width: 640px) {
  .gp-svc-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .gp-svc-showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.gp-svc-showcase-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow:
    0 4px 14px rgba(148, 163, 184, 0.12),
    0 1px 3px rgba(148, 163, 184, 0.08);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.gp-svc-showcase-card:hover,
.gp-svc-showcase-card:focus-within {
  border-color: rgba(251, 146, 60, 0.45);
  box-shadow:
    0 16px 32px -8px rgba(249, 115, 22, 0.16),
    0 6px 14px rgba(148, 163, 184, 0.1);
  transform: translateY(-3px);
}
.gp-svc-showcase-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0f172a;
}
.gp-svc-showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 6, 23, 0.55) 0%,
    rgba(2, 6, 23, 0.05) 55%,
    transparent 100%
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gp-svc-showcase-card:hover .gp-svc-showcase-media::after,
.gp-svc-showcase-card:focus-within .gp-svc-showcase-media::after {
  opacity: 0.85;
}
.gp-svc-showcase-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gp-svc-showcase-card:hover .gp-svc-showcase-media img,
.gp-svc-showcase-card:focus-within .gp-svc-showcase-media img {
  transform: scale(1.04);
}
.gp-svc-showcase-index {
  position: absolute;
  top: 0.75rem;
  inset-inline-start: 0.75rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff7ed;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.gp-svc-showcase-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.75rem;
  padding: 1.125rem 1rem 1.25rem;
  text-align: start;
  direction: inherit;
}
@media (min-width: 640px) {
  .gp-svc-showcase-body { padding: 1.25rem 1.125rem 1.375rem; }
}
.gp-svc-showcase-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #003366;
}
@media (min-width: 640px) {
  .gp-svc-showcase-name { font-size: 1.0625rem; }
}
.gp-svc-showcase-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.gp-svc-showcase-name a:hover,
.gp-svc-showcase-name a:focus-visible {
  color: #ea580c;
  outline: none;
}
html[lang="en"] .gp-svc-showcase-name { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-svc-showcase-name { font-family: var(--gp-font-ar); }
.gp-svc-showcase-desc {
  margin: 0;
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #64748b;
}
@media (min-width: 640px) {
  .gp-svc-showcase-desc { font-size: 0.875rem; }
}
html[lang="en"] .gp-svc-showcase-desc { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-svc-showcase-desc { font-family: var(--gp-font-ar); }
.gp-svc-showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ea580c;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}
.gp-svc-showcase-cta:hover,
.gp-svc-showcase-cta:focus-visible {
  color: #c2410c;
  outline: none;
  gap: 0.55rem;
}
html[lang="en"] .gp-svc-showcase-cta { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-svc-showcase-cta { font-family: var(--gp-font-ar); }
.gp-svc-showcase-cta-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  display: block;
  transition: transform 0.2s ease;
}
.gp-svc-showcase-cta:hover .gp-svc-showcase-cta-icon,
.gp-svc-showcase-cta:focus-visible .gp-svc-showcase-cta-icon {
  transform: translateX(-2px);
}
html[dir="rtl"] .gp-svc-showcase-cta:hover .gp-svc-showcase-cta-icon,
html[dir="rtl"] .gp-svc-showcase-cta:focus-visible .gp-svc-showcase-cta-icon {
  transform: translateX(2px);
}
@media (prefers-reduced-motion: reduce) {
  .gp-svc-showcase-card,
  .gp-svc-showcase-media img,
  .gp-svc-showcase-cta,
  .gp-svc-showcase-cta-icon {
    transition: none;
  }
  .gp-svc-showcase-promo {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .gp-svc-showcase-card:hover,
  .gp-svc-showcase-card:focus-within {
    transform: none;
  }
  .gp-svc-showcase-card:hover .gp-svc-showcase-media img,
  .gp-svc-showcase-card:focus-within .gp-svc-showcase-media img {
    transform: none;
  }
}

.gp-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) {
  .gp-hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}
.gp-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
@media (min-width: 640px) {
  .gp-hero-cta { width: auto; }
}
.gp-hero-cta-primary {
  background: #ea580c;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.35);
}
.gp-hero-cta-primary:hover,
.gp-hero-cta-primary:focus-visible {
  background: #c2410c;
  color: #fff !important;
  outline: none;
}
.gp-hero-cta-secondary {
  background: rgba(15, 23, 42, 0.6);
  color: #fff !important;
  border: 1px solid rgba(51, 65, 85, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.gp-hero-cta-secondary:hover,
.gp-hero-cta-secondary:focus-visible {
  background: #1e293b;
  color: #fff !important;
  outline: none;
}

/* Hero quick-action widget */
.gp-hero-widget {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(71, 85, 105, 0.55);
  border-radius: 1rem;
  padding: 1rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
@media (min-width: 640px) {
  .gp-hero-widget { padding: 1.25rem; }
}
.gp-hero-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.3rem;
  background: rgba(2, 6, 23, 0.55);
  border-radius: 0.75rem;
}
.gp-hero-tab {
  min-height: 2.75rem;
  padding: 0.65rem 0.75rem;
  border: 0;
  border-radius: 0.55rem;
  background: transparent;
  color: #cbd5e1;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (min-width: 640px) {
  .gp-hero-tab { font-size: 0.875rem; }
}
.gp-hero-tab.is-active,
.gp-hero-tab[aria-selected="true"] {
  background: rgba(234, 88, 12, 0.18);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(251, 146, 60, 0.35);
}
.gp-hero-tab:focus-visible {
  outline: 2px solid #fb923c;
  outline-offset: 2px;
}
.gp-hero-panel[hidden] { display: none !important; }
.gp-hero-label {
  display: block;
  margin-bottom: 0.4rem;
  color: #e2e8f0;
  font-size: 0.8125rem;
  font-weight: 600;
}
.gp-hero-form p { margin: 0 0 0.85rem; }
.gp-hero-fields {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .gp-hero-fields { grid-template-columns: 1fr 1fr; }
}
.gp-hero-form-row {
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .gp-hero-form-row {
    grid-template-columns: 1fr auto;
    align-items: stretch;
  }
}
.gp-hero-input {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(100, 116, 139, 0.55);
  border-radius: 0.65rem;
  background: rgba(2, 6, 23, 0.55);
  color: #fff;
  font-size: 1rem; /* prevents iOS zoom */
  box-sizing: border-box;
}
.gp-hero-input::placeholder { color: #94a3b8; }
.gp-hero-input:focus {
  outline: 2px solid rgba(251, 146, 60, 0.65);
  outline-offset: 1px;
  border-color: rgba(251, 146, 60, 0.55);
}
.gp-hero-submit {
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border: 0;
  border-radius: 0.65rem;
  background: #ea580c;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.gp-hero-submit:hover,
.gp-hero-submit:focus-visible {
  background: #c2410c;
  outline: none;
}
.gp-hero-submit--block { width: 100%; margin-top: 0.25rem; }
.gp-hero-hint {
  margin: 1rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(30, 41, 59, 0.6);
  color: #94a3b8;
  font-size: 0.75rem;
  line-height: 1.625;
}
.gp-hero-hint-line {
  display: inline;
}
.gp-hero-hint-line + .gp-hero-hint-line::before {
  content: " ";
}
@media (min-width: 768px) {
  .gp-hero-hint--track {
    max-width: 24rem;
  }
  .gp-hero-hint--track .gp-hero-hint-line {
    display: block;
  }
  .gp-hero-hint--track .gp-hero-hint-line + .gp-hero-hint-line::before {
    content: none;
  }
}

/* Cards / advantages */
.gp-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gp-space-element);
}
@media (min-width: 768px) {
  .gp-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .gp-cards.gp-cards-3 { grid-template-columns: repeat(3, 1fr); }
  .gp-cards.gp-cards-4 { grid-template-columns: repeat(4, 1fr); }
}
.gp-card {
  background: var(--gp-neutral-light);
  padding: var(--gp-space-section);
  border-inline-start: 4px solid var(--gp-accent);
}
.gp-card h3 {
  margin: 0 0 0.5rem;
  color: var(--gp-primary);
  font-size: 1.05rem;
}
.gp-card p { margin: 0; font-size: 0.95rem; }

/* Process timeline */
.gp-steps {
  display: grid;
  gap: var(--gp-space-element);
  counter-reset: step;
}
@media (min-width: 768px) {
  .gp-steps { grid-template-columns: repeat(5, 1fr); }
}
.gp-step {
  background: var(--gp-white);
  border: 1px solid #e0e6ee;
  padding: var(--gp-space-element);
  position: relative;
}
.gp-step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  background: var(--gp-accent);
  color: var(--gp-white);
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}
.gp-step h3 { margin: 0 0 0.35rem; font-size: 0.95rem; color: var(--gp-primary); }
.gp-step p { margin: 0; font-size: 0.88rem; }

/* Gallery */
.gp-gallery {
  display: grid;
  gap: var(--gp-space-element);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .gp-gallery { grid-template-columns: 2fr 1fr; }
}
.gp-gallery figure {
  margin: 0;
  background: var(--gp-neutral-light);
  overflow: hidden;
}
.gp-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.gp-gallery figcaption {
  padding: 0.65rem var(--gp-space-element);
  font-size: 0.85rem;
  color: #555;
}

/* FAQ */
.gp-faq details {
  border-bottom: 1px solid #e6e6e6;
  padding: var(--gp-space-element) 0;
}
.gp-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--gp-primary);
  list-style: none;
}
.gp-faq summary::-webkit-details-marker { display: none; }
.gp-faq details p {
  margin: 0.65rem 0 0;
  color: #444;
}

/* Related services */
.gp-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.gp-chip {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  background: var(--gp-neutral-light);
  color: var(--gp-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--gp-radius);
}
.gp-chip:hover { background: #e8eef5; color: var(--gp-secondary); }

/* CTA band (service pages) */
.gp-cta-band {
  background: var(--gp-primary);
  color: var(--gp-white);
  padding-block: calc(var(--gp-space-section) * 2);
}
.gp-cta-band .gp-h2 { color: var(--gp-white); }
.gp-cta-band p { color: rgba(255,255,255,0.9); max-width: 40rem; }

/* Homepage shipping CTA — premium band */
@keyframes gp-cta-ship-title-in {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gp-cta-ship-lead-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gp-cta-ship-btn-pulse {
  0%, 100% {
    box-shadow:
      0 6px 20px rgba(255, 102, 0, 0.35),
      0 2px 6px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow:
      0 8px 28px rgba(255, 102, 0, 0.5),
      0 0 24px rgba(251, 146, 60, 0.25);
  }
}
@keyframes gp-cta-ship-route-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-40px); }
}
.gp-cta-ship {
  position: relative;
  overflow: hidden;
  padding-block: 4.5rem;
  background: linear-gradient(135deg, #002b5c 0%, #003366 48%, #004080 100%);
  color: #ffffff;
}
@media (min-width: 1024px) {
  .gp-cta-ship { padding-block: 5.5rem; }
}
.gp-cta-ship-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.gp-cta-ship-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(255, 102, 0, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(0, 115, 230, 0.12) 0%, transparent 50%);
  opacity: 0.9;
}
.gp-cta-ship-routes {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 110%;
  height: auto;
  min-height: 55%;
  animation: gp-cta-ship-route-drift 28s linear infinite;
}
.gp-cta-ship-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--gp-max));
  margin-inline: auto;
}
.gp-cta-ship-content {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}
.gp-cta-ship-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.55rem, 3.8vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  opacity: 0;
  animation: gp-cta-ship-title-in 0.85s ease 0.1s forwards;
}
html[lang="en"] .gp-cta-ship-title { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-cta-ship-title { font-family: var(--gp-font-ar); }
.gp-cta-ship-lead {
  margin: 0 auto 2rem;
  max-width: 40rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 500;
  line-height: 1.75;
  color: #d9e2ec;
  opacity: 0;
  animation: gp-cta-ship-lead-in 0.9s ease 0.35s forwards;
}
html[lang="en"] .gp-cta-ship-lead { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-cta-ship-lead { font-family: var(--gp-font-ar); }
.gp-cta-ship-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.7rem 0.9rem;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  opacity: 0;
  animation: gp-cta-ship-lead-in 0.9s ease 0.55s forwards;
}
.gp-cta-ship-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 1 1 0;
  min-width: 0;
  min-height: 54px;
  padding: 0.9rem 1.1rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border-radius: 0.55rem;
  border: 2px solid transparent;
  white-space: normal;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease;
}
@media (min-width: 480px) {
  .gp-cta-ship-actions {
    gap: 0.85rem 1rem;
    max-width: none;
  }
  .gp-cta-ship-btn {
    flex: 0 1 auto;
    min-height: 48px;
    padding: 0.75rem 1.5rem;
  }
}
.gp-cta-ship-btn:focus-visible {
  outline: 2px solid #fb923c;
  outline-offset: 3px;
}
.gp-cta-ship-btn--wa {
  color: #ffffff;
  background: #ff6600;
  border-color: rgba(255, 255, 255, 0.15);
  animation: gp-cta-ship-btn-pulse 3s ease-in-out 1.2s infinite;
}
.gp-cta-ship-btn--wa:hover,
.gp-cta-ship-btn--wa:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #ff6600 0%, #fb923c 45%, #fbbf24 100%);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  animation: none;
  box-shadow:
    0 10px 28px rgba(255, 102, 0, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.2);
}
.gp-cta-ship-btn--svc {
  color: #003366;
  background: #ffffff;
  border-color: rgba(0, 51, 102, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 14px rgba(0, 0, 0, 0.12);
}
.gp-cta-ship-btn--svc:hover,
.gp-cta-ship-btn--svc:focus-visible {
  color: #ffffff;
  background: #003366;
  border-color: #003366;
  transform: translateY(-2px);
  box-shadow:
    0 8px 22px rgba(0, 51, 102, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.gp-cta-ship-btn-icon {
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .gp-cta-ship-title,
  .gp-cta-ship-lead,
  .gp-cta-ship-actions {
    opacity: 1;
    animation: none;
    transform: none;
  }
  .gp-cta-ship-btn--wa { animation: none; }
  .gp-cta-ship-routes { animation: none; }
}

/* Legal */
.gp-legal {
  background: var(--gp-neutral-light);
  font-size: 0.9rem;
}
.gp-legal ul { margin: 0; padding-inline-start: 1.2rem; }

.gp-legal-hero {
  padding-block: 1.75rem 2.15rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 102, 0, 0.07), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
@media (min-width: 768px) {
  .gp-legal-hero { padding-block: 2.25rem 2.5rem; }
}
.gp-legal-updated {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}
.gp-legal-main {
  padding-block: 0.5rem 3.25rem;
}
.gp-legal-doc {
  max-width: 46rem;
  margin-inline: auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.45rem;
  padding: 1.35rem 1.25rem 1.6rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}
@media (min-width: 768px) {
  .gp-legal-doc { padding: 1.75rem 1.85rem 2rem; }
}
.gp-legal-block + .gp-legal-block {
  margin-top: 1.55rem;
  padding-top: 1.45rem;
  border-top: 1px solid #e2e8f0;
}
.gp-legal-h2 {
  margin: 0 0 0.65rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #0a192f;
  line-height: 1.35;
}
.gp-legal-p {
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.75;
  color: #334155;
}
.gp-legal-list {
  margin: 0.55rem 0 0;
  padding-inline-start: 1.2rem;
  color: #334155;
  line-height: 1.7;
}
.gp-legal-list li {
  margin-bottom: 0.45rem;
  font-size: 0.975rem;
}
.gp-legal-list li:last-child { margin-bottom: 0; }
.gp-legal-address {
  margin: 0.85rem 0 0;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #0f172a;
}
.gp-legal-address a {
  color: #003366;
  font-weight: 700;
  text-decoration: none;
}
.gp-legal-address a:hover { color: #ff6600; }
.gp-legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
}
.gp-footer-legal {
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  line-height: 1.3;
}
.gp-footer-legal a {
  flex: 0 0 auto;
  font-size: clamp(0.66rem, 2.4vw, 0.8125rem);
  font-weight: 600;
  color: rgba(216, 180, 106, 0.92);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.gp-footer-legal a:hover,
.gp-footer-legal a:focus-visible {
  color: #ffffff;
}
.gp-footer-legal-sep {
  flex: 0 0 auto;
  margin-inline: 0.38rem;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 500;
  font-size: clamp(0.66rem, 2.4vw, 0.8125rem);
  user-select: none;
}
@media (min-width: 768px) {
  .gp-footer-legal a,
  .gp-footer-legal-sep {
    font-size: 0.8125rem;
  }
  .gp-footer-legal-sep {
    margin-inline: 0.55rem;
  }
}
.gp-complaints-jump {
  margin: 1.25rem 0 0;
  text-align: center;
}
.gp-complaints-form-section {
  padding-block: 0 3.25rem;
}
.gp-complaints-form-panel {
  max-width: 46rem;
  margin-inline: auto;
}

/* Footer — premium 4-column logistics band */
@keyframes gp-footer-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gp-footer {
  position: relative;
  background: linear-gradient(180deg, #0f1a2f 0%, #152238 52%, #1a2f4a 100%);
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.65;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: gp-footer-fade-in 0.85s ease 0.15s forwards;
}
.gp-footer-topline {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #c5a059 20%, #d8b46a 50%, #c5a059 80%, transparent 100%);
}
.gp-footer-inner {
  width: min(100% - 2rem, var(--gp-max));
  margin-inline: auto;
  padding-block: 2.75rem 1.25rem;
}
@media (max-width: 767px) {
  /* Clear fixed contact dock so copyright + legal stay readable */
  .gp-footer-inner {
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }
}
@media (min-width: 768px) {
  .gp-footer-inner { padding-block: 3.25rem 1.5rem; }
}
.gp-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .gp-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.75rem;
  }
}
@media (min-width: 1024px) {
  .gp-footer-grid {
    grid-template-columns: 1.25fr 0.95fr 0.95fr 0.95fr 0.9fr;
    gap: 1.75rem 1.25rem;
  }
}
.gp-footer-col {
  min-width: 0;
}
.gp-footer-col--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.gp-footer-network-note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.72);
  max-width: 22rem;
}
.gp-net-bridge {
  margin-block: 2.5rem 0.5rem;
  padding: 1.5rem 1.35rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #002B5B 0%, #003366 55%, #0f172a 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 43, 91, 0.22);
}
.gp-net-bridge--home {
  margin-block-start: 2rem;
}
.gp-net-bridge-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
}
.gp-net-bridge-text {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52rem;
}
.gp-net-bridge-link {
  color: #fdba74;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.gp-net-bridge-link:hover,
.gp-net-bridge-link:focus-visible {
  color: #fff;
}
.gp-net-bridge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.gp-net-bridge .gp-btn-primary {
  background: #ea580c;
  border-color: #ea580c;
}
.gp-net-bridge .gp-btn-primary:hover {
  background: #c2410c;
  border-color: #c2410c;
  color: #fff;
}
.gp-net-bridge .gp-btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.gp-net-bridge .gp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}
@media (min-width: 768px) {
  .gp-net-bridge {
    padding: 1.75rem 1.75rem;
  }
}
.gp-footer-logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 0.75rem;
}
.gp-footer-logo {
  display: block;
  /* +40px vs prior sizes; height:auto keeps aspect ratio */
  width: min(100%, 14.25rem); /* ~228px mobile */
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
  margin-inline: auto;
  border-radius: 0;
}
@media (min-width: 768px) {
  .gp-footer-logo {
    width: min(100%, 15rem); /* ~240px desktop */
  }
}
.gp-footer-brand {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
}
@media (max-width: 767px) {
  .gp-footer-brand {
    font-size: 0.9rem;
    line-height: 1.45;
  }
}
.gp-footer-address {
  margin: 0 0 0.75rem;
  font-style: normal;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}
.gp-footer-tagline {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #cccccc;
  max-width: 28rem;
  text-align: center;
}
html[lang="en"] .gp-footer-tagline { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-footer-tagline { font-family: var(--gp-font-ar); }
.gp-footer-payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}
.gp-footer-pay {
  display: inline-flex;
  line-height: 0;
  border-radius: 6px;
  background: #ffffff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35),
    0 4px 12px rgba(2, 6, 23, 0.28);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gp-footer-pay svg {
  display: block;
}
.gp-footer-pay:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 18px rgba(2, 6, 23, 0.35);
}
.gp-footer-heading {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #c5a059;
}
html[lang="en"] .gp-footer-heading { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-footer-heading { font-family: var(--gp-font-ar); }
.gp-footer-heading--credits {
  font-size: 0.875rem;
}
.gp-footer-credits-icon {
  color: #c5a059;
  flex-shrink: 0;
}
.gp-footer-list,
.gp-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gp-footer-list li,
.gp-footer-contact li {
  margin-bottom: 0.45rem;
}
.gp-footer-list a,
.gp-footer-contact a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.gp-footer-list a:hover,
.gp-footer-list a:focus-visible,
.gp-footer-contact a:hover,
.gp-footer-contact a:focus-visible {
  color: #d8b46a;
}
.gp-footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.gp-footer-contact-icon {
  flex-shrink: 0;
  color: #c5a059;
}
.gp-footer-support-note {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}
.gp-footer-credits {
  font-size: 0.75rem;
  line-height: 1.65;
  color: #aaaaaa;
}
.gp-footer-credits p {
  margin: 0 0 0.35rem;
}
.gp-footer-credits a {
  color: #bbbbbb;
  text-decoration: none;
  transition: color 0.2s ease;
}
.gp-footer-credits a:hover,
.gp-footer-credits a:focus-visible {
  color: #d8b46a;
}
.gp-footer-bar {
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(197, 160, 89, 0.22);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
}
.gp-footer-copy,
.gp-footer-bar p {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.45;
  letter-spacing: 0.015em;
  opacity: 1;
  -webkit-text-fill-color: #ffffff;
}
.gp-footer-legal {
  margin-top: 0;
  order: 2;
}
.gp-footer-copy {
  order: 1;
}
@media (min-width: 768px) {
  .gp-footer-copy,
  .gp-footer-bar p {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.35);
  }
  .gp-footer-bar {
    gap: 0.7rem;
  }
}
@media (max-width: 767px) {
  .gp-footer-col--services {
    margin-top: 30px;
  }
  .gp-footer-col--services,
  .gp-footer-col--network,
  .gp-footer-col--contact,
  .gp-footer-col--credits {
    /* AR: نحو اليسار · EN: نحو اليمين — عبر logical start */
    padding-inline-start: 15px;
  }
  .gp-footer-copy,
  .gp-footer-bar p {
    font-size: clamp(0.62rem, 2.8vw, 0.75rem);
    letter-spacing: 0;
    max-width: 100%;
    padding-inline: 0.5rem;
  }
  html[lang="en"] .gp-footer-copy,
  html[lang="en"] .gp-footer-bar p {
    white-space: nowrap;
  }
  .gp-footer-legal {
    padding-inline: 0.35rem;
    justify-content: center;
  }
  .gp-footer-legal-sep {
    margin-inline: 0.32rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gp-footer {
    opacity: 1;
    animation: none;
  }
}

/* Contact dock — full-width row: call · WhatsApp · chat (AD/Ajman pattern · logistics palette) */
.gp-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  z-index: 10050;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 0;
  padding: 0.7rem 0.5rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  box-sizing: border-box;
  background: transparent;
}
.gp-dock__btn {
  width: 52px;
  height: 52px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32), 0 0 0 3px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  margin: 0;
  pointer-events: auto;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gp-dock__btn:hover,
.gp-dock__btn:focus-visible {
  transform: translateY(-2px);
}
.gp-dock__icon {
  width: 22px;
  height: 22px;
  display: block;
}
.gp-dock__btn--call {
  background: linear-gradient(145deg, #0b1f3a, #071018);
  color: var(--gp-accent) !important;
  position: relative;
}
.gp-dock__btn--call::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(241, 90, 34, 0.75);
  animation: gpDockPulse 1.8s ease-out 1;
  pointer-events: none;
}
.gp-dock__btn--wa {
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #fff !important;
}
.gp-dock__btn--chat {
  background: linear-gradient(145deg, #0b1f3a, #071018);
  color: var(--gp-accent) !important;
  position: relative;
}
.gp-dock__btn--chat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(241, 90, 34, 0.75);
  pointer-events: none;
}
@keyframes gpDockPulse {
  0% { opacity: 0.95; box-shadow: inset 0 0 0 2px rgba(241, 90, 34, 0.85); }
  100% { opacity: 0; box-shadow: inset 0 0 0 8px rgba(241, 90, 34, 0); }
}
flowise-chatbot {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: visible !important;
}
.gp-float:hover { filter: brightness(1.08); color: #fff; }

.gp-muted { color: #666; font-size: 0.9rem; }
.gp-section-alt { background: var(--gp-neutral-light); }

/* Top bar / nav (shared layout) — elite Flexport-class chrome */
.gp-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 0.75rem 1.5rem;
  flex-wrap: wrap;
  min-height: 1.75rem;
}
.gp-top-contact,
.gp-top-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gp-top-contact > li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  line-height: 1;
}
/* Phone/email always LTR so +1 / latin email never reverse under dir=rtl */
.gp-top-contact {
  direction: ltr;
  flex-direction: row;
  unicode-bidi: isolate;
  gap: 0.85rem;
}
.gp-top-bullet {
  display: flex;
  align-items: center;
  color: var(--gp-top-muted);
  font-size: 0.85rem;
  line-height: 1;
  user-select: none;
}
.gp-top-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  color: var(--gp-top-text);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  padding-block: 0;
}
.gp-top-link:hover,
.gp-top-link:focus-visible { color: var(--gp-top-hover); }
.gp-top-link:hover .gp-top-icon--accent,
.gp-top-link:focus-visible .gp-top-icon--accent { color: var(--gp-top-hover); }
.gp-top-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.gp-top-phone-label {
  font-weight: 700;
  letter-spacing: 0;
}
.gp-top-phone-num {
  direction: ltr;
  unicode-bidi: isolate;
}
.gp-top-link span:not(.gp-top-phone-label):not(.gp-top-phone-num) {
  display: inline-block;
  direction: ltr;
  unicode-bidi: plaintext;
  line-height: 1;
}
.gp-top-icon {
  display: block;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: inherit;
  opacity: 1;
}
.gp-top-icon--accent { color: var(--gp-top-icon); }
.gp-top-portal {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  color: var(--gp-top-text);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.95rem;
  border-radius: 0.375rem;
  background: linear-gradient(180deg, rgba(51, 65, 85, 0.55) 0%, rgba(15, 23, 42, 0.85) 100%);
  border: 1px solid rgba(226, 232, 240, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(0, 0, 0, 0.2);
  outline: none;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.gp-top-portal:hover,
.gp-top-portal:focus-visible {
  color: var(--gp-top-text);
  background: linear-gradient(180deg, rgba(255, 102, 0, 0.22) 0%, rgba(15, 23, 42, 0.9) 100%);
  border-color: rgba(251, 146, 60, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 0 0 1px rgba(255, 102, 0, 0.2);
  outline: none;
}
.gp-top-rail {
  display: block;
  align-self: center;
  width: 1px;
  height: 1rem;
  background: rgba(226, 232, 240, 0.55);
  flex-shrink: 0;
}
.gp-lang {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.875rem;
  line-height: 1;
}
.gp-lang-opt {
  display: inline-flex;
  align-items: center;
  padding: 0 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1;
  transition: color 0.25s ease;
}
.gp-lang-sep {
  display: inline-block;
  width: 1px;
  height: 0.85rem;
  margin-inline: 0.3rem;
  background: rgba(241, 245, 249, 0.65);
  align-self: center;
  user-select: none;
}
.gp-lang-opt[aria-current="true"] {
  color: var(--gp-top-text);
  font-weight: 700;
}
.gp-lang-opt:hover,
.gp-lang-opt:focus-visible,
.gp-lang-opt[aria-current="true"]:hover {
  color: var(--gp-top-hover);
}

@media (max-width: 767px) {
  .gp-top { display: none !important; }
}
@media (min-width: 768px) {
  .gp-top {
    display: flex;
    position: relative;
    top: auto;
    z-index: auto;
  }
  .gp-header {
    position: relative;
    top: auto;
    z-index: auto;
    box-shadow: none;
  }
}

/* (homepage hero height handled under .gp-hero-home) */

/* Services hub page — world-class section head */
.gp-svc-hub {
  padding-block: 3.5rem 4.5rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 237, 213, 0.45), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 42%);
}
@media (min-width: 768px) {
  .gp-svc-hub { padding-block: 4.5rem 5.5rem; }
}
.gp-svc-hub-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto 2.75rem;
  max-width: 52rem;
}
@media (min-width: 768px) {
  .gp-svc-hub-head { margin-bottom: 3.25rem; }
}
.gp-svc-hub-badge {
  display: inline-block;
  margin: 0 0 1.25rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #c2410c;
  background: rgba(255, 237, 213, 0.9);
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: 9999px;
  line-height: 1.2;
}
html[lang="en"] .gp-svc-hub-badge {
  font-family: var(--gp-font-en);
  text-transform: uppercase;
}
html[lang="ar"] .gp-svc-hub-badge {
  font-family: var(--gp-font-ar);
}
.gp-svc-hub-title {
  margin: 0 0 1.15rem;
  max-width: 46rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #003366;
  text-wrap: balance;
}
@media (min-width: 640px) {
  .gp-svc-hub-title { font-size: 1.875rem; }
}
@media (min-width: 1024px) {
  .gp-svc-hub-title { font-size: 2.25rem; }
}
html[lang="en"] .gp-svc-hub-title { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-svc-hub-title { font-family: var(--gp-font-ar); }
.gp-svc-hub-lead {
  margin: 0;
  width: min(100%, 44rem);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.85;
  color: #475569;
  text-wrap: pretty;
}
@media (min-width: 640px) {
  .gp-svc-hub-lead { font-size: 1.0625rem; }
}
html[lang="en"] .gp-svc-hub-lead { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-svc-hub-lead { font-family: var(--gp-font-ar); }
.gp-svc-hub-grid {
  margin-top: 0;
}

/* Homepage / hub service cards */
.gp-svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gp-space-section);
}
@media (min-width: 768px) {
  .gp-svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .gp-svc-grid { grid-template-columns: repeat(4, 1fr); }
}
.gp-svc-card {
  background: var(--gp-white);
  border: 1px solid #e0e6ee;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.gp-svc-card-media {
  display: block;
  background: var(--gp-primary);
}
.gp-svc-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.gp-svc-card-body {
  padding: var(--gp-space-element);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.gp-svc-card-body h2,
.gp-svc-card-body h3,
.gp-svc-card-title {
  margin: 0;
  font-size: 1.05rem;
  color: var(--gp-primary);
}
.gp-svc-card-body h2 a,
.gp-svc-card-body h3 a,
.gp-svc-card-title a {
  color: inherit;
  text-decoration: none;
}
.gp-svc-card-body h2 a:hover,
.gp-svc-card-body h3 a:hover,
.gp-svc-card-title a:hover { color: var(--gp-accent); }
.gp-svc-card-body p {
  margin: 0;
  font-size: 0.92rem;
  flex: 1;
}
.gp-svc-card-body .gp-btn { align-self: flex-start; }

/* Homepage process — quote → pickup → transit → delivery */
@keyframes gp-process-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gp-process {
  position: relative;
  padding-block: 4rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 51, 102, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #f1f5f9 100%);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .gp-process { padding-block: 5.25rem; }
}
.gp-process-inner {
  width: min(100% - 2rem, var(--gp-max));
  margin-inline: auto;
}
.gp-process-head {
  max-width: 42rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .gp-process-head { margin-bottom: 3.25rem; }
}
.gp-process-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c2410c;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.08);
}
html[lang="en"] .gp-process-badge { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-process-badge { font-family: var(--gp-font-ar); }
.gp-process-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  line-height: 1.28;
  color: #0f172a;
}
html[lang="en"] .gp-process-title { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-process-title { font-family: var(--gp-font-ar); }
.gp-process-lead {
  margin: 0 auto;
  max-width: 40rem;
  font-size: 0.975rem;
  line-height: 1.75;
  color: #475569;
}
@media (min-width: 768px) {
  .gp-process-lead { font-size: 1.025rem; }
}
html[lang="en"] .gp-process-lead { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-process-lead { font-family: var(--gp-font-ar); }

.gp-process-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  direction: inherit;
}
@media (min-width: 900px) {
  .gp-process-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: start;
  }
  .gp-process-track::before {
    content: "";
    position: absolute;
    top: 1.65rem;
    inset-inline: 8%;
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(255, 102, 0, 0.15) 0%,
      rgba(255, 102, 0, 0.55) 20%,
      rgba(0, 51, 102, 0.35) 50%,
      rgba(255, 102, 0, 0.55) 80%,
      rgba(255, 102, 0, 0.15) 100%
    );
    z-index: 0;
    pointer-events: none;
  }
  html[dir="rtl"] .gp-process-track::before {
    background: linear-gradient(
      270deg,
      rgba(255, 102, 0, 0.15) 0%,
      rgba(255, 102, 0, 0.55) 20%,
      rgba(0, 51, 102, 0.35) 50%,
      rgba(255, 102, 0, 0.55) 80%,
      rgba(255, 102, 0, 0.15) 100%
    );
  }
}

.gp-process-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.15rem;
  padding-inline: 0.15rem;
  opacity: 0;
  animation: gp-process-rise 0.75s ease var(--gp-process-delay, 0.1s) forwards;
  border-block-end: 1px solid rgba(226, 232, 240, 0.9);
}
.gp-process-step:last-child {
  border-block-end: 0;
}
@media (min-width: 900px) {
  .gp-process-step {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 1.1rem;
    padding: 0 0.65rem;
    border-block-end: 0;
  }
}

.gp-process-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.gp-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(145deg, #003366 0%, #004080 55%, #002b5c 100%);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 3px rgba(0, 51, 102, 0.1),
    0 8px 20px rgba(0, 51, 102, 0.22);
  font-variant-numeric: tabular-nums;
}
html[lang="en"] .gp-process-num { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-process-num { font-family: var(--gp-font-ar); }
.gp-process-icon {
  display: none;
}
@media (min-width: 900px) {
  .gp-process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.7rem;
  }
  .gp-process-icon--quote {
    color: #003366;
    background: rgba(0, 51, 102, 0.08);
    border: 1px solid rgba(0, 51, 102, 0.12);
  }
  .gp-process-icon--pickup {
    color: #ea580c;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.2);
  }
  .gp-process-icon--transit {
    color: #0369a1;
    background: rgba(0, 115, 230, 0.1);
    border: 1px solid rgba(0, 115, 230, 0.18);
  }
  .gp-process-icon--deliver {
    color: #0f766e;
    background: rgba(15, 118, 110, 0.1);
    border: 1px solid rgba(15, 118, 110, 0.18);
  }
}

.gp-process-body {
  min-width: 0;
  padding-block: 0.15rem;
}
@media (min-width: 900px) {
  .gp-process-body {
    padding-block: 0;
  }
}
.gp-process-step-title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}
html[lang="en"] .gp-process-step-title { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-process-step-title { font-family: var(--gp-font-ar); }
.gp-process-step-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #475569;
}
@media (min-width: 900px) {
  .gp-process-step-text {
    font-size: 0.875rem;
    max-width: 15.5rem;
    margin-inline: auto;
  }
}
html[lang="en"] .gp-process-step-text { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-process-step-text { font-family: var(--gp-font-ar); }

.gp-process-foot {
  margin: 2.25rem 0 0;
  text-align: center;
}
.gp-process-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff !important;
  background: #ff6600;
  border-radius: 0.5rem;
  box-shadow: 0 8px 22px rgba(255, 102, 0, 0.28);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.gp-process-cta:hover,
.gp-process-cta:focus-visible {
  background: #e65c00;
  color: #ffffff !important;
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 102, 0, 0.35);
}
html[lang="en"] .gp-process-cta { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-process-cta { font-family: var(--gp-font-ar); }

@media (prefers-reduced-motion: reduce) {
  .gp-process-step {
    opacity: 1;
    animation: none;
    transform: none;
  }
  .gp-process-cta {
    transition: none;
  }
  .gp-process-cta:hover,
  .gp-process-cta:focus-visible {
    transform: none;
  }
}

/* Homepage corridors — USA · Gulf · Europe · Worldwide */
@keyframes gp-corridors-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gp-corridors-route-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-28px); }
}
.gp-corridors {
  position: relative;
  overflow: hidden;
  padding-block: 4rem;
  background: linear-gradient(145deg, #020617 0%, #0a192f 42%, #003366 100%);
  color: #ffffff;
}
@media (min-width: 1024px) {
  .gp-corridors { padding-block: 5.25rem; }
}
.gp-corridors-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.gp-corridors-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 80% 15%, rgba(255, 102, 0, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 10% 85%, rgba(0, 115, 230, 0.14) 0%, transparent 50%);
}
.gp-corridors-routes {
  position: absolute;
  inset-block-end: -8%;
  inset-inline-start: 0;
  width: 112%;
  height: auto;
  min-height: 55%;
  animation: gp-corridors-route-drift 32s linear infinite;
}
.gp-corridors-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--gp-max));
  margin-inline: auto;
}
.gp-corridors-head {
  max-width: 44rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .gp-corridors-head { margin-bottom: 3.25rem; }
}
.gp-corridors-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fdba74;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(251, 146, 60, 0.4);
  border-radius: 9999px;
}
html[lang="en"] .gp-corridors-badge { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-corridors-badge { font-family: var(--gp-font-ar); }
.gp-corridors-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  font-weight: 800;
  line-height: 1.28;
  color: #ffffff;
}
html[lang="en"] .gp-corridors-title { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-corridors-title { font-family: var(--gp-font-ar); }
.gp-corridors-lead {
  margin: 0 auto;
  max-width: 40rem;
  font-size: 0.975rem;
  line-height: 1.75;
  color: #cbd5e1;
}
@media (min-width: 768px) {
  .gp-corridors-lead { font-size: 1.025rem; }
}
html[lang="en"] .gp-corridors-lead { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-corridors-lead { font-family: var(--gp-font-ar); }

.gp-corridors-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  direction: inherit;
}
@media (min-width: 640px) {
  .gp-corridors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}
@media (min-width: 1024px) {
  .gp-corridors-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

.gp-corridors-lane {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.15rem 1.35rem;
  text-align: start;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  animation: gp-corridors-rise 0.75s ease var(--gp-corridors-delay, 0.1s) forwards;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.gp-corridors-lane:hover,
.gp-corridors-lane:focus-within {
  border-color: rgba(251, 146, 60, 0.45);
  background: rgba(15, 23, 42, 0.62);
  transform: translateY(-3px);
}
.gp-corridors-lane-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gp-corridors-lane-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  color: #fb923c;
  background: rgba(255, 102, 0, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.28);
}
.gp-corridors-lane--usa .gp-corridors-lane-icon {
  color: #93c5fd;
  background: rgba(0, 115, 230, 0.14);
  border-color: rgba(147, 197, 253, 0.28);
}
.gp-corridors-lane--gulf .gp-corridors-lane-icon {
  color: #fdba74;
  background: rgba(255, 102, 0, 0.14);
  border-color: rgba(251, 146, 60, 0.32);
}
.gp-corridors-lane--europe .gp-corridors-lane-icon {
  color: #7dd3fc;
  background: rgba(14, 165, 233, 0.14);
  border-color: rgba(125, 211, 252, 0.3);
}
.gp-corridors-lane--world .gp-corridors-lane-icon {
  color: #5eead4;
  background: rgba(15, 118, 110, 0.16);
  border-color: rgba(94, 234, 212, 0.28);
}
.gp-corridors-lane-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
}
html[lang="en"] .gp-corridors-lane-title { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-corridors-lane-title { font-family: var(--gp-font-ar); }
.gp-corridors-lane-body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #cbd5e1;
  flex: 1;
}
html[lang="en"] .gp-corridors-lane-body { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-corridors-lane-body { font-family: var(--gp-font-ar); }
.gp-corridors-lane-hubs {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #94a3b8;
  font-weight: 600;
}
html[lang="en"] .gp-corridors-lane-hubs { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-corridors-lane-hubs { font-family: var(--gp-font-ar); }
.gp-corridors-hub-sep {
  margin-inline: 0.35rem;
  opacity: 0.7;
}
.gp-corridors-hub {
  color: #e2e8f0;
}

.gp-corridors-foot {
  margin: 2.25rem 0 0;
  text-align: center;
}
.gp-corridors-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff !important;
  background: #ff6600;
  border-radius: 0.5rem;
  box-shadow: 0 8px 22px rgba(255, 102, 0, 0.32);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.gp-corridors-cta:hover,
.gp-corridors-cta:focus-visible {
  background: #e65c00;
  color: #ffffff !important;
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 102, 0, 0.4);
}
html[lang="en"] .gp-corridors-cta { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-corridors-cta { font-family: var(--gp-font-ar); }

@media (prefers-reduced-motion: reduce) {
  .gp-corridors-lane {
    opacity: 1;
    animation: none;
    transform: none;
  }
  .gp-corridors-routes {
    animation: none;
  }
  .gp-corridors-cta {
    transition: none;
  }
  .gp-corridors-cta:hover,
  .gp-corridors-cta:focus-visible,
  .gp-corridors-lane:hover,
  .gp-corridors-lane:focus-within {
    transform: none;
  }
}

/* Benefits showcase — homepage #benefits */
@keyframes gp-benefits-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gp-benefits {
  position: relative;
  padding-block: 4rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #f1f5f9 100%);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .gp-benefits { padding-block: 5.25rem; }
}
.gp-benefits-inner {
  width: min(100% - 2rem, var(--gp-max));
  margin-inline: auto;
}
.gp-benefits-head {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .gp-benefits-head { margin-bottom: 3rem; }
}
.gp-benefits-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c2410c;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.08);
}
html[lang="en"] .gp-benefits-badge { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-benefits-badge { font-family: var(--gp-font-ar); }
.gp-benefits-title {
  margin: 0;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  line-height: 1.28;
  color: #0f172a;
}
html[lang="en"] .gp-benefits-title { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-benefits-title { font-family: var(--gp-font-ar); }
.gp-benefits-rule {
  display: block;
  width: 4.5rem;
  height: 3px;
  margin: 0.85rem auto 0;
  border-radius: 9999px;
  background: linear-gradient(90deg, #ff6600 0%, #fb923c 55%, #fdba74 100%);
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.35);
}
.gp-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  direction: inherit;
}
@media (min-width: 768px) {
  .gp-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}
.gp-benefits-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.35rem 1.25rem 1.45rem;
  text-align: start;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1rem;
  box-shadow:
    0 4px 16px rgba(148, 163, 184, 0.1),
    0 1px 3px rgba(148, 163, 184, 0.06);
  opacity: 0;
  animation: gp-benefits-rise 0.75s ease var(--gp-benefits-delay, 0.1s) forwards;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.gp-benefits-card:hover,
.gp-benefits-card:focus-within {
  border-color: rgba(251, 146, 60, 0.4);
  box-shadow:
    0 14px 32px -8px rgba(249, 115, 22, 0.14),
    0 4px 12px rgba(148, 163, 184, 0.08);
  transform: translateY(-3px);
}
.gp-benefits-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.85rem;
  flex-shrink: 0;
}
.gp-benefits-card--hq .gp-benefits-icon {
  color: #003366;
  background: rgba(0, 51, 102, 0.08);
  border: 1px solid rgba(0, 51, 102, 0.12);
}
.gp-benefits-card--track .gp-benefits-icon {
  color: #ea580c;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(255, 102, 0, 0.2);
}
.gp-benefits-card--lang .gp-benefits-icon {
  color: #475569;
  background: rgba(100, 116, 139, 0.1);
  border: 1px solid rgba(100, 116, 139, 0.18);
}
.gp-benefits-card-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}
html[lang="en"] .gp-benefits-card-title { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-benefits-card-title { font-family: var(--gp-font-ar); }
.gp-benefits-card-body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.72;
  color: #475569;
}
html[lang="en"] .gp-benefits-card-body { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-benefits-card-body { font-family: var(--gp-font-ar); }
@media (prefers-reduced-motion: reduce) {
  .gp-benefits-card {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

/* Quick contact — executive showcase (homepage #contact) */
.gp-qcontact {
  position: relative;
  padding-block: 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 115, 230, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 48%, #eef2f7 100%);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .gp-qcontact { padding-block: 5.5rem; }
}
.gp-qcontact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(148, 163, 184, 0.14) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  pointer-events: none;
}
.gp-qcontact-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--gp-max));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .gp-qcontact-inner { padding-inline: 0.5rem; }
}
.gp-qcontact-head {
  max-width: 44rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .gp-qcontact-head { margin-bottom: 3rem; }
}
.gp-qcontact-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c2410c;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.1);
}
html[lang="en"] .gp-qcontact-badge { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-qcontact-badge { font-family: var(--gp-font-ar); }
.gp-qcontact-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
}
html[lang="en"] .gp-qcontact-title { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-qcontact-title { font-family: var(--gp-font-ar); }
.gp-qcontact-lead {
  margin: 0 auto;
  max-width: 40rem;
  font-size: 0.975rem;
  line-height: 1.7;
  color: #475569;
}
html[lang="en"] .gp-qcontact-lead { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-qcontact-lead { font-family: var(--gp-font-ar); }
.gp-qcontact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .gp-qcontact-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.75rem;
  }
}
.gp-qcontact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.gp-qcontact-channel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1rem;
  box-shadow:
    0 4px 14px rgba(148, 163, 184, 0.1),
    0 1px 3px rgba(148, 163, 184, 0.06);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.gp-qcontact-channel:hover,
.gp-qcontact-channel:focus-visible {
  border-color: rgba(251, 146, 60, 0.45);
  box-shadow:
    0 12px 28px -6px rgba(249, 115, 22, 0.14),
    0 4px 10px rgba(148, 163, 184, 0.08);
  transform: translateY(-2px);
  color: #0f172a;
}
.gp-qcontact-channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
}
.gp-qcontact-channel--wa .gp-qcontact-channel-icon {
  color: #fff;
  background: linear-gradient(145deg, #34d399 0%, #25d366 55%, #16a34a 100%);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}
.gp-qcontact-channel--call .gp-qcontact-channel-icon {
  color: #fff;
  background: linear-gradient(145deg, #3b82f6 0%, #0073e6 55%, #003366 100%);
  box-shadow: 0 4px 12px rgba(0, 115, 230, 0.3);
}
.gp-qcontact-channel--mail .gp-qcontact-channel-icon {
  color: #fff;
  background: linear-gradient(145deg, #1e40af 0%, #003366 100%);
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.28);
}
.gp-qcontact-channel-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  text-align: start;
}
.gp-qcontact-channel-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #64748b;
}
.gp-qcontact-channel-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  word-break: break-word;
}
.gp-qcontact-channel-hint {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.4;
}
.gp-qcontact-channel-arrow {
  display: inline-flex;
  color: #94a3b8;
  transition: color 0.2s ease, transform 0.2s ease;
}
html[dir="rtl"] .gp-qcontact-channel-arrow svg {
  transform: scaleX(-1);
}
.gp-qcontact-channel:hover .gp-qcontact-channel-arrow,
.gp-qcontact-channel:focus-visible .gp-qcontact-channel-arrow {
  color: var(--gp-accent);
  transform: translateX(2px);
}
html[dir="rtl"] .gp-qcontact-channel:hover .gp-qcontact-channel-arrow,
html[dir="rtl"] .gp-qcontact-channel:focus-visible .gp-qcontact-channel-arrow {
  transform: scaleX(-1) translateX(2px);
}
.gp-qcontact-office {
  margin-top: 0.35rem;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.96) 0%, rgba(15, 23, 42, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  color: #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}
.gp-qcontact-office-title {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fb923c;
}
.gp-qcontact-office-address {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #f1f5f9;
}
.gp-qcontact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gp-qcontact-pills li {
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
}
.gp-qcontact-form-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1.125rem;
  overflow: hidden;
  box-shadow:
    0 20px 40px -12px rgba(15, 23, 42, 0.12),
    0 4px 12px rgba(148, 163, 184, 0.08);
}
.gp-qcontact-form-head {
  padding: 1.35rem 1.35rem 1.1rem;
  background: linear-gradient(135deg, #003366 0%, #0f172a 100%);
  color: #f8fafc;
  border-bottom: 3px solid var(--gp-accent);
}
.gp-qcontact-form-title {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
}
html[lang="en"] .gp-qcontact-form-title { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-qcontact-form-title { font-family: var(--gp-font-ar); }
.gp-qcontact-form-sub {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(241, 245, 249, 0.88);
}
html[lang="en"] .gp-qcontact-form-sub { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-qcontact-form-sub { font-family: var(--gp-font-ar); }
.gp-qcontact-form {
  padding: 1.35rem;
}
@media (min-width: 640px) {
  .gp-qcontact-form { padding: 1.5rem 1.6rem 1.6rem; }
}
.gp-qcontact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1rem;
}
@media (min-width: 640px) {
  .gp-qcontact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.gp-qcontact-field {
  margin: 0 0 1rem;
}
.gp-qcontact-field--full {
  grid-column: 1 / -1;
}
.gp-qcontact-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}
.gp-qcontact-field input,
.gp-qcontact-field textarea,
.gp-qcontact-field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.gp-qcontact-field input::placeholder,
.gp-qcontact-field textarea::placeholder {
  color: #94a3b8;
}
.gp-qcontact-field input:focus,
.gp-qcontact-field textarea:focus,
.gp-qcontact-field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--gp-secondary);
  box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.15);
}
.gp-qcontact-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #64748b 50%), linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position: calc(100% - 1.1rem) calc(50% - 0.15rem), calc(100% - 0.75rem) calc(50% - 0.15rem);
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
  background-repeat: no-repeat;
  padding-inline-end: 2.25rem;
}
html[dir="rtl"] .gp-qcontact-field select {
  background-position: 1.1rem calc(50% - 0.15rem), 0.75rem calc(50% - 0.15rem);
}
.gp-qcontact-field textarea {
  min-height: 7rem;
  resize: vertical;
}
.gp-qcontact-form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.25rem;
}
.gp-qcontact-submit {
  width: 100%;
  min-height: 48px;
  font-size: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.28);
}
.gp-qcontact-form-note {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}

/* Legacy quick contact tiles (service pages fallback) */
.gp-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gp-space-element);
}
@media (min-width: 768px) {
  .gp-contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.gp-contact-tile {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: var(--gp-space-section);
  text-decoration: none;
  color: var(--gp-white);
  border-radius: var(--gp-radius);
  min-height: 110px;
  justify-content: center;
}
.gp-contact-tile:hover { filter: brightness(1.06); color: var(--gp-white); }
.gp-contact-wa { background: #25d366; }
.gp-contact-call { background: var(--gp-secondary); }
.gp-contact-mail { background: var(--gp-primary); }
.gp-contact-label { font-weight: 700; font-size: 0.9rem; opacity: 0.95; }
.gp-contact-value { font-size: 1.1rem; font-weight: 700; }

/* Forms */
.gp-form-card {
  max-width: 40rem;
  background: var(--gp-neutral-light);
  padding: var(--gp-space-section);
  border-inline-start: 4px solid var(--gp-accent);
}
.gp-form-title {
  margin: 0 0 var(--gp-space-element);
  color: var(--gp-primary);
  font-size: 1.15rem;
}
.gp-form-card label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--gp-primary);
}
.gp-form-card input,
.gp-form-card textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #cfd8e3;
  border-radius: var(--gp-radius);
  font: inherit;
  background: var(--gp-white);
  color: var(--gp-neutral-dark);
}
.gp-form-card input:focus,
.gp-form-card textarea:focus {
  outline: 2px solid var(--gp-secondary);
  outline-offset: 1px;
}
.gp-form-card p { margin: 0 0 var(--gp-space-element); }

/* ── Service landing page (pilot: door-to-door) ── */
@keyframes gp-lp-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gp-lp-panel-in {
  from { opacity: 0; transform: translateY(10px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes gp-lp-rule-draw {
  from { transform: scaleX(0); opacity: 0.35; }
  to { transform: scaleX(1); opacity: 1; }
}

.gp-lp-inner {
  width: min(100% - 2rem, var(--gp-max));
  margin-inline: auto;
}

.gp-lp-crumbs {
  padding-block: 0.85rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e8f0;
}
.gp-lp-crumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: #64748b;
}
.gp-lp-crumbs-list li:not(:last-child)::after {
  content: "·";
  margin-inline-start: 0.55rem;
  opacity: 0.55;
}
.gp-lp-crumbs a {
  color: #003366;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.gp-lp-crumbs a:hover { color: #ff6600; }
.gp-lp-crumbs [aria-current="page"] {
  color: #0f172a;
  font-weight: 700;
}

/* Inside service hero — top center, light on dark */
.gp-lp-crumbs--hero {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  z-index: 2;
  width: min(100% - 2rem, var(--gp-max));
  margin: 0;
  padding: 0.55rem 1rem;
  transform: translateX(-50%);
  background: rgba(2, 6, 23, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.25);
}
@media (min-width: 768px) {
  .gp-lp-crumbs--hero { top: 1.35rem; padding: 0.6rem 1.25rem; }
}
.gp-lp-crumbs--hero .gp-lp-crumbs-list {
  justify-content: center;
  align-items: center;
  gap: 0.3rem 0.45rem;
  font-size: 0.8125rem;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.3;
}
@media (min-width: 640px) {
  .gp-lp-crumbs--hero .gp-lp-crumbs-list { font-size: 0.875rem; }
}
.gp-lp-crumbs--hero .gp-lp-crumbs-list li:not(:last-child)::after {
  content: "/";
  margin-inline-start: 0.45rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.gp-lp-crumbs--hero a {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(2, 6, 23, 0.35);
}
.gp-lp-crumbs--hero a:hover {
  color: #ffb380;
}
.gp-lp-crumbs--hero [aria-current="page"] {
  color: #ffb380;
  font-weight: 700;
  max-width: 14rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .gp-lp-crumbs--hero [aria-current="page"] { max-width: 22rem; }
}

.gp-lp-hero {
  position: relative;
  min-height: clamp(22rem, 68vh, 34rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a192f center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.gp-lp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.55) 0%, rgba(2, 6, 23, 0.62) 50%, rgba(2, 6, 23, 0.55) 100%),
    radial-gradient(ellipse 58% 48% at 78% 18%, rgba(255, 102, 0, 0.22) 0%, transparent 58%);
}
html[dir="rtl"] .gp-lp-hero-overlay {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.55) 0%, rgba(2, 6, 23, 0.62) 50%, rgba(2, 6, 23, 0.55) 100%),
    radial-gradient(ellipse 58% 48% at 22% 18%, rgba(255, 102, 0, 0.22) 0%, transparent 58%);
}
.gp-lp-hero-stage {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--gp-max));
  margin-inline: auto;
  padding-block: 4.75rem 3.5rem;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .gp-lp-hero-stage { padding-block: 5rem 3.75rem; }
}
.gp-lp-hero-copy {
  max-width: 42rem;
  width: 100%;
  text-align: start;
}

/* Homepage-aligned orange 3D pill (dark surfaces) */
.gp-lp-badge {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: 0.55rem 1.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(180deg, #ff8533 0%, #ff6600 48%, #e65c00 100%);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 0 #b34700,
    0 8px 18px rgba(255, 102, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  animation: gp-trust-badge-glow 6s ease-in-out infinite;
}
@media (min-width: 640px) {
  .gp-lp-badge { font-size: 0.875rem; }
}
html[lang="en"] .gp-lp-badge {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
/* Light surfaces: soft process-style pill */
.gp-lp-badge--light {
  color: #c2410c;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(251, 146, 60, 0.35);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.1);
  animation: none;
}

.gp-lp-title {
  margin: 0 0 0.9rem;
  font-size: clamp(1.8rem, 4.6vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  color: #fff;
  letter-spacing: -0.02em;
}
.gp-lp-lead {
  margin: 0 0 1.6rem;
  font-size: clamp(0.98rem, 2vw, 1.125rem);
  line-height: 1.72;
  color: #e2e8f0;
  max-width: 38rem;
}
.gp-lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  html[lang="ar"] .gp-lp-hero-ctas {
    flex-wrap: nowrap;
    width: 100%;
    gap: 0.5rem;
  }
  html[lang="ar"] .gp-lp-hero-ctas .gp-lp-btn {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 0.55rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
}
@media (max-width: 639px) {
  html[lang="ar"] .gp-hero-ctas {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0.5rem;
  }
  html[lang="ar"] .gp-hero-cta {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    padding-inline: 0.65rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }
}
.gp-lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.75rem 1.4rem;
  border-radius: 0.6rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.gp-lp-btn--primary {
  color: #fff !important;
  background: linear-gradient(180deg, #ff8533 0%, #ff6600 55%, #e65c00 100%);
  box-shadow: 0 10px 24px rgba(255, 102, 0, 0.34), inset 0 1px 0 rgba(255,255,255,0.25);
}
.gp-lp-btn--primary:hover,
.gp-lp-btn--primary:focus-visible {
  background: linear-gradient(180deg, #ff944d 0%, #e65c00 100%);
  color: #fff !important;
  outline: none;
  transform: translateY(-2px);
}
.gp-lp-btn--ghost {
  color: #fff !important;
  background: rgba(15, 23, 42, 0.42);
  border-color: rgba(148, 163, 184, 0.45);
  backdrop-filter: blur(10px);
}
.gp-lp-btn--ghost:hover,
.gp-lp-btn--ghost:focus-visible {
  background: rgba(30, 41, 59, 0.78);
  color: #fff !important;
  outline: none;
}

/* ── Trust strip (classic 4-col + light differentiated cells) ── */
.gp-lp-trust {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-block: 1.35rem 1.5rem;
  background: #f1f5f9;
  border-block: 1px solid #e2e8f0;
}
.gp-lp-trust-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 900px) {
  .gp-lp-trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }
}
.gp-lp-trust-item {
  position: relative;
  text-align: center;
  padding: 1.15rem 0.85rem 1.2rem;
  border-radius: 0.85rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 18px rgba(148, 163, 184, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: gp-lp-rise 0.65s ease both;
  animation-delay: var(--gp-lp-delay, 0s);
}
.gp-lp-trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(148, 163, 184, 0.18);
}
.gp-lp-trust-item--1 {
  border-color: rgba(251, 146, 60, 0.45);
  box-shadow: 0 6px 18px rgba(255, 102, 0, 0.08);
}
.gp-lp-trust-item--2 {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.08);
}
.gp-lp-trust-item--3 {
  border-color: rgba(100, 116, 139, 0.35);
}
.gp-lp-trust-item--4 {
  border-color: rgba(74, 222, 128, 0.4);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.08);
}
.gp-lp-trust-value {
  margin: 0 0 0.4rem;
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  font-weight: 800;
  line-height: 1.3;
  color: #ea580c;
  white-space: nowrap;
}
.gp-lp-trust-label {
  margin: 0;
  font-size: clamp(0.72rem, 1.8vw, 0.82rem);
  line-height: 1.45;
  color: #64748b;
  white-space: nowrap;
}
@media (max-width: 420px) {
  .gp-lp-trust-label {
    white-space: normal;
    font-size: 0.7rem;
  }
}

.gp-lp-section {
  position: relative;
  padding-block: 4.25rem;
  background: #fff;
}
@media (min-width: 1024px) {
  .gp-lp-section { padding-block: 5.25rem; }
}
.gp-lp-section--muted {
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(0, 115, 230, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.gp-lp-section--navy {
  overflow: hidden;
  background: linear-gradient(145deg, #020617 0%, #0a192f 48%, #003366 100%);
  color: #fff;
}
.gp-lp-corridors-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(255, 102, 0, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 90% 20%, rgba(0, 115, 230, 0.18) 0%, transparent 50%);
  opacity: 0.9;
}
.gp-lp-section-head {
  max-width: 42rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}
.gp-lp-section-head--start {
  margin-inline: 0;
  text-align: start;
  max-width: none;
}
.gp-lp-section-head--use {
  max-width: min(100%, 52rem);
}
.gp-lp-section-head--rel {
  max-width: 48rem;
}
@media (min-width: 1024px) {
  .gp-lp-section-head:not(.gp-lp-section-head--rel),
  .gp-lp-quote .gp-lp-section-head {
    max-width: none;
  }
  .gp-lp-section-head:not(.gp-lp-section-head--rel) .gp-lp-h2,
  .gp-lp-quote .gp-lp-h2 {
    white-space: nowrap;
  }
}
.gp-lp-section-head--light .gp-lp-text { color: #cbd5e1; }
.gp-lp-corridors-lead {
  margin-top: 1.15rem !important;
  max-width: min(100%, 38rem);
  margin-inline: auto;
  text-wrap: balance;
  line-height: 1.75;
}
@media (min-width: 1024px) {
  .gp-lp-corridors-lead {
    max-width: 40rem;
  }
}
.gp-lp-rule {
  display: block;
  width: 3.25rem;
  height: 3px;
  margin: 0.85rem auto 1rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #ff8533, #ff6600 55%, #e65c00);
  transform-origin: center;
}
.gp-lp-section-head--start .gp-lp-rule {
  margin-inline: 0;
  transform-origin: inline-start;
}
.gp-lp-h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3.1vw, 2.05rem);
  font-weight: 800;
  line-height: 1.28;
  color: #0f172a;
  letter-spacing: -0.015em;
}
.gp-lp-h2--light { color: #fff; }
.gp-lp-h3 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}
.gp-lp-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
}
.gp-lp-text--center { text-align: center; }
.gp-lp-text--light { color: #cbd5e1; }

.gp-lp-split {
  display: grid;
  gap: 2.25rem;
}
@media (min-width: 900px) {
  .gp-lp-split {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.75rem;
    align-items: start;
  }
}
.gp-lp-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.gp-lp-include {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.95rem;
  padding: 1.05rem 1rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 18px rgba(148, 163, 184, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: gp-lp-rise 0.6s ease both;
  animation-delay: var(--gp-lp-delay, 0s);
}
.gp-lp-include:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 146, 60, 0.45);
  box-shadow: 0 12px 28px rgba(148, 163, 184, 0.16);
}
.gp-lp-include-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #004080 0%, #003366 100%);
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.28);
}
.gp-lp-include-title {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
}
.gp-lp-include-body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
}

.gp-lp-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gp-lp-process { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .gp-lp-process { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.9rem; }
}
.gp-lp-process-step {
  position: relative;
  padding: 1.25rem 1.05rem 1.3rem;
  border-radius: 0.95rem;
  border-top: 3px solid #ff6600;
  background: #fff;
  box-shadow: 0 8px 22px rgba(148, 163, 184, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: gp-lp-rise 0.65s ease both;
  animation-delay: var(--gp-lp-delay, 0s);
}
.gp-lp-process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(148, 163, 184, 0.18);
}
.gp-lp-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 0.75rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(160deg, #ff8533 0%, #ff6600 48%, #e65c00 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 4px 0 #b34700,
    0 8px 16px rgba(255, 102, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.gp-lp-process-title {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
}
.gp-lp-process-body {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.65;
  color: #475569;
}

.gp-lp-usecases {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gp-lp-usecases { grid-template-columns: repeat(3, 1fr); }
}
.gp-lp-usecase {
  padding: 1.35rem 1.2rem;
  border-radius: 0.95rem;
  border-inline-start: 3px solid #ff6600;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 22px rgba(148, 163, 184, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: gp-lp-rise 0.65s ease both;
  animation-delay: var(--gp-lp-delay, 0s);
}
.gp-lp-usecase:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(148, 163, 184, 0.16);
}
.gp-lp-usecase-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}
.gp-lp-usecase-body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
}

.gp-lp-corridors {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 768px) {
  .gp-lp-corridors { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .gp-lp-corridors { grid-template-columns: repeat(4, 1fr); }
}
.gp-lp-corridor {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.1rem;
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 0.95rem;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.gp-lp-corridor:hover {
  transform: translateY(-3px);
  border-color: rgba(251, 146, 60, 0.45);
  background: rgba(15, 23, 42, 0.58);
}
.gp-lp-corridor strong {
  font-size: 1.02rem;
  color: #fff;
}
.gp-lp-corridor span {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.gp-lp-adv {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gp-lp-adv { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1.75rem; }
}
.gp-lp-adv-item {
  padding: 1.25rem 1.15rem;
  border-radius: 0.95rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 18px rgba(148, 163, 184, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease;
  animation: gp-lp-rise 0.6s ease both;
  animation-delay: var(--gp-lp-delay, 0s);
}
.gp-lp-adv-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 51, 102, 0.25);
}
.gp-lp-adv-title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #003366;
}
.gp-lp-adv-body {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.7;
  color: #475569;
}

/* ── FAQ (world-standard accordion) ── */
.gp-lp-faq-wrap {
  max-width: 46rem;
  margin-inline: auto;
}
.gp-lp-faq-wrap .gp-lp-section-head { margin-inline: auto; }
.gp-lp-faq {
  display: grid;
  gap: 0.75rem;
}
.gp-lp-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.95rem;
  background: #fff;
  box-shadow: 0 4px 14px rgba(148, 163, 184, 0.08);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.gp-lp-faq-item[open] {
  border-color: rgba(251, 146, 60, 0.45);
  box-shadow: 0 10px 26px rgba(148, 163, 184, 0.14);
}
.gp-lp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.2rem;
  font-weight: 700;
  color: #003366;
}
.gp-lp-faq-item summary::-webkit-details-marker { display: none; }
.gp-lp-faq-q {
  flex: 1;
  text-align: start;
  font-size: 0.98rem;
  line-height: 1.45;
}
.gp-lp-faq-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: rgba(255, 102, 0, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.35);
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease;
}
.gp-lp-faq-icon::before,
.gp-lp-faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.65rem;
  height: 2px;
  background: #e65c00;
  border-radius: 9999px;
  transform: translate(-50%, -50%);
}
.gp-lp-faq-icon::after {
  width: 2px;
  height: 0.65rem;
}
.gp-lp-faq-item[open] .gp-lp-faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 102, 0, 0.18);
}
.gp-lp-faq-a {
  padding: 0 1.2rem 1.15rem;
}
.gp-lp-faq-a p {
  margin: 0;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.85rem;
  color: #475569;
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ── Quote / contact (qcontact-aligned) ── */
.gp-lp-quote {
  position: relative;
  padding-block: 4.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 115, 230, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}
@media (min-width: 1024px) {
  .gp-lp-quote { padding-block: 5.5rem; }
}
.gp-lp-quote-layout {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 960px) {
  .gp-lp-quote-layout {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 2rem;
    align-items: start;
  }
}
.gp-lp-quote-channels {
  display: grid;
  gap: 0.75rem;
}
.gp-lp-channel {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 0.95rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(148, 163, 184, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.gp-lp-channel:hover,
.gp-lp-channel:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(251, 146, 60, 0.45);
  box-shadow: 0 12px 28px rgba(148, 163, 184, 0.16);
  outline: none;
}
.gp-lp-channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  color: #fff;
}
.gp-lp-channel--wa .gp-lp-channel-icon { background: #16a34a; }
.gp-lp-channel--call .gp-lp-channel-icon { background: #003366; }
.gp-lp-channel--mail .gp-lp-channel-icon { background: #0ea5e9; }
.gp-lp-channel-body {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}
.gp-lp-channel-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #64748b;
}
.gp-lp-channel-value {
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
  word-break: break-word;
}
.gp-lp-channel-hint {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.45;
}
.gp-lp-quote-office {
  margin-top: 0.35rem;
  padding: 1.1rem 1.15rem;
  border-radius: 0.95rem;
  background: linear-gradient(145deg, #0a192f 0%, #003366 100%);
  color: #fff;
}
.gp-lp-quote-office-title {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fdba74;
}
.gp-lp-quote-office-address {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e2e8f0;
}
.gp-lp-form-panel {
  border-radius: 1.1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 36px rgba(148, 163, 184, 0.14);
  overflow: hidden;
}
.gp-lp-form-head {
  padding: 1.25rem 1.35rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.gp-lp-form-title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}
.gp-lp-form-sub {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #64748b;
}
.gp-lp-form {
  padding: 1.25rem 1.35rem 1.45rem;
}
.gp-lp-fields-2 {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .gp-lp-fields-2 { grid-template-columns: 1fr 1fr; }
}
.gp-lp-field { margin: 0 0 0.95rem; }
.gp-lp-field--full { grid-column: 1 / -1; }
.gp-lp-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
}
.gp-lp-field input,
.gp-lp-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.55rem;
  font: inherit;
  background: #fff;
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.gp-lp-field input::placeholder,
.gp-lp-field textarea::placeholder {
  color: #94a3b8;
}
.gp-lp-field input:focus,
.gp-lp-field textarea:focus {
  outline: none;
  border-color: #fdba74;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
}
.gp-lp-form-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.35rem;
  justify-items: center;
  text-align: center;
}
.gp-lp-form-actions .gp-lp-btn {
  min-width: min(100%, 16rem);
}
.gp-lp-form-note {
  margin: 0;
  max-width: 28rem;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  text-align: center;
}

#gp-lp-rel-title {
  max-width: 48rem;
  margin-inline: auto;
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
}
.gp-lp-related-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .gp-lp-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .gp-lp-related-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.gp-lp-related-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 22px rgba(148, 163, 184, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.gp-lp-related-card:hover,
.gp-lp-related-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(251, 146, 60, 0.4);
  box-shadow: 0 16px 36px rgba(148, 163, 184, 0.18);
}
.gp-lp-related-card.is-current {
  border-color: rgba(255, 102, 0, 0.55);
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.12);
}
.gp-lp-related-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a192f;
}
.gp-lp-related-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2, 6, 23, 0.55) 100%);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.gp-lp-related-card:hover .gp-lp-related-media::after,
.gp-lp-related-card:focus-within .gp-lp-related-media::after {
  opacity: 0.9;
}
.gp-lp-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gp-lp-related-card:hover .gp-lp-related-media img,
.gp-lp-related-card:focus-within .gp-lp-related-media img {
  transform: scale(1.06);
}
.gp-lp-related-index {
  position: absolute;
  z-index: 1;
  inset-block-start: 0.75rem;
  inset-inline-start: 0.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}
.gp-lp-related-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.05rem 1.05rem 1.2rem;
  gap: 0.45rem;
}
.gp-lp-related-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}
.gp-lp-related-name a {
  color: #0f172a;
  text-decoration: none;
}
.gp-lp-related-name a:hover,
.gp-lp-related-name a:focus-visible {
  color: #ff6600;
  outline: none;
}
.gp-lp-related-desc {
  margin: 0;
  flex: 1;
  font-size: 0.84rem;
  line-height: 1.6;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gp-lp-related-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff6600;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}
.gp-lp-related-cta:hover,
.gp-lp-related-cta:focus-visible {
  color: #e65c00;
  outline: none;
  gap: 0.55rem;
}
.gp-lp-related-cta-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  display: block;
  transition: transform 0.2s ease;
}
.gp-lp-related-cta:hover .gp-lp-related-cta-icon,
.gp-lp-related-cta:focus-visible .gp-lp-related-cta-icon {
  transform: translateX(-2px);
}
html[dir="rtl"] .gp-lp-related-cta:hover .gp-lp-related-cta-icon,
html[dir="rtl"] .gp-lp-related-cta:focus-visible .gp-lp-related-cta-icon {
  transform: translateX(2px);
}
.gp-lp-related-card.is-current .gp-lp-related-cta {
  color: #003366;
  pointer-events: none;
}

.gp-lp-legal {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}
.gp-lp-legal ul {
  margin: 1rem 0 0;
  padding: 1.15rem 1.25rem;
  text-align: start;
  list-style: none;
  border-radius: 0.95rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #475569;
  line-height: 1.7;
  font-size: 0.9rem;
  box-shadow: 0 6px 18px rgba(148, 163, 184, 0.08);
}
.gp-lp-legal li {
  position: relative;
  margin-bottom: 0.55rem;
  padding-inline-start: 1rem;
}
.gp-lp-legal li:last-child { margin-bottom: 0; }
.gp-lp-legal li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.65em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 9999px;
  background: #ff6600;
}

html[lang="en"] .gp-lp-title,
html[lang="en"] .gp-lp-h2,
html[lang="en"] .gp-lp-h3,
html[lang="en"] .gp-lp-badge,
html[lang="en"] .gp-lp-btn,
html[lang="en"] .gp-lp-form-title,
html[lang="en"] .gp-lp-related-name,
html[lang="en"] .gp-lp-trust-value { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-lp-title,
html[lang="ar"] .gp-lp-h2,
html[lang="ar"] .gp-lp-h3,
html[lang="ar"] .gp-lp-badge,
html[lang="ar"] .gp-lp-btn,
html[lang="ar"] .gp-lp-form-title,
html[lang="ar"] .gp-lp-related-name,
html[lang="ar"] .gp-lp-trust-value { font-family: var(--gp-font-ar); }

@media (prefers-reduced-motion: reduce) {
  .gp-lp-badge,
  .gp-lp-trust-item,
  .gp-lp-include,
  .gp-lp-process-step,
  .gp-lp-usecase,
  .gp-lp-adv-item {
    animation: none !important;
  }
  .gp-lp-btn,
  .gp-lp-channel,
  .gp-lp-related-card,
  .gp-lp-related-media img,
  .gp-lp-related-cta,
  .gp-lp-related-cta-icon,
  .gp-lp-faq-icon,
  .gp-lp-include,
  .gp-lp-process-step,
  .gp-lp-usecase,
  .gp-lp-corridor,
  .gp-lp-adv-item {
    transition: none !important;
  }
  .gp-lp-btn--primary:hover,
  .gp-lp-btn--primary:focus-visible,
  .gp-lp-trust-item:hover,
  .gp-lp-include:hover,
  .gp-lp-process-step:hover,
  .gp-lp-usecase:hover,
  .gp-lp-corridor:hover,
  .gp-lp-adv-item:hover,
  .gp-lp-channel:hover,
  .gp-lp-related-card:hover {
    transform: none !important;
  }
  .gp-lp-related-card:hover .gp-lp-related-media img,
  .gp-lp-related-card:focus-within .gp-lp-related-media img {
    transform: none !important;
  }
}

/* —— About page —— */
.gp-about-hero {
  padding-block: 2.75rem 3rem;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255, 237, 213, 0.5), transparent 58%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 55%);
}
@media (min-width: 768px) {
  .gp-about-hero { padding-block: 3.25rem 3.75rem; }
}
.gp-about-crumbs {
  margin: 0 0 1.5rem;
  text-align: center;
}
.gp-about-crumbs-list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0.45rem 1rem;
  font-size: 0.8125rem;
  color: #64748b;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 9999px;
}
.gp-about-crumbs-list li:not(:last-child)::after {
  content: "/";
  margin-inline-start: 0.45rem;
  color: #94a3b8;
}
.gp-about-crumbs a {
  color: #003366;
  font-weight: 700;
  text-decoration: none;
}
.gp-about-crumbs a:hover { color: #ff6600; }
.gp-about-crumbs [aria-current="page"] {
  color: #0f172a;
  font-weight: 700;
}
.gp-about-hero-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}
.gp-about-badge {
  display: inline-block;
  margin: 0 0 1.15rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #c2410c;
  background: rgba(255, 237, 213, 0.92);
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: 9999px;
  line-height: 1.2;
}
html[lang="en"] .gp-about-badge {
  font-family: var(--gp-font-en);
  text-transform: uppercase;
}
html[lang="ar"] .gp-about-badge { font-family: var(--gp-font-ar); }
.gp-about-badge--light {
  align-self: center;
  margin-bottom: 1rem;
}
.gp-about-copy-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 0 1.15rem;
}
.gp-about-copy-head .gp-about-badge {
  margin-bottom: 0.85rem;
}
.gp-about-copy-head .gp-about-section-title {
  margin-bottom: 0;
}
.gp-about-hero-title {
  margin: 0 0 1.1rem;
  max-width: 42rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: #003366;
  text-wrap: balance;
}
@media (min-width: 640px) {
  .gp-about-hero-title { font-size: 1.95rem; }
}
@media (min-width: 1024px) {
  .gp-about-hero-title { font-size: 2.35rem; }
}
html[lang="en"] .gp-about-hero-title { font-family: var(--gp-font-en); }
html[lang="ar"] .gp-about-hero-title { font-family: var(--gp-font-ar); }
.gp-about-hero-lead {
  margin: 0;
  max-width: 40rem;
  font-size: 0.975rem;
  line-height: 1.85;
  color: #475569;
  text-wrap: pretty;
}
@media (min-width: 640px) {
  .gp-about-hero-lead { font-size: 1.0625rem; }
}

.gp-about-story,
.gp-about-leaders {
  padding-block: 2.75rem 3.25rem;
}
@media (min-width: 900px) {
  .gp-about-story,
  .gp-about-leaders {
    padding-block: 3.25rem 3.75rem;
  }
}
.gp-about-leaders {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 70%);
}
.gp-about-split {
  display: grid;
  gap: 1.1rem;
  align-items: center;
}
@media (max-width: 899px) {
  .gp-about-media--office {
    transform: translateY(-25px);
  }
  .gp-about-story .gp-about-copy-head {
    margin-top: 25px;
  }
}
@media (min-width: 640px) {
  .gp-about-split { gap: 1.5rem; }
}
@media (min-width: 900px) {
  .gp-about-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
  .gp-about-split--leader {
    grid-template-columns: 0.95fr 1.05fr;
  }
}
.gp-about-media {
  margin: 0;
}
.gp-about-media-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.35rem;
  box-shadow:
    0 18px 40px rgba(10, 25, 47, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
}
.gp-about-portrait-img {
  display: block;
  width: min(100%, 22rem);
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 0.35rem;
  box-shadow:
    0 18px 40px rgba(10, 25, 47, 0.14),
    0 0 0 1px rgba(10, 25, 47, 0.06);
  background: #e8edf3;
}
.gp-about-media--portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(100%, 22rem);
  margin-inline: auto;
}
@media (min-width: 900px) {
  .gp-about-portrait-img { width: 100%; margin-inline: 0; }
  .gp-about-media--portrait {
    max-width: min(100%, 26rem);
    margin-inline: 0 auto;
  }
  html[dir="rtl"] .gp-about-media--portrait { margin-inline: auto 0; }
}
.gp-about-media-cap {
  margin: 0.55rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}
.gp-about-media-cap--person {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  margin-top: 0.85rem;
  text-align: center;
}
.gp-about-person-name {
  display: block;
  width: 100%;
  font-size: 1.05rem;
  font-weight: 800;
  color: #003366;
  line-height: 1.35;
  text-align: center;
}
.gp-about-person-title {
  display: block;
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 900px) {
  .gp-about-media--office .gp-about-media-cap:not(.gp-about-media-cap--person) {
    text-align: start;
  }
  .gp-about-media--portrait .gp-about-media-cap {
    text-align: center;
  }
}
.gp-about-section-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.35;
  color: #003366;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .gp-about-section-title { font-size: 1.65rem; }
}
.gp-about-text {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.85;
  color: #334155;
}
.gp-about-role {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ff6600;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.55;
}
.gp-about-role-line {
  display: block;
}
.gp-about-role-sep {
  display: none;
}
@media (min-width: 768px) {
  .gp-about-role-line {
    display: inline;
  }
  .gp-about-role-sep {
    display: inline;
  }
}
.gp-about-quote {
  margin: 0 0 1.15rem;
  padding: 1rem 1.15rem;
  border-inline-start: 3px solid #ff6600;
  background: rgba(255, 237, 213, 0.35);
}
.gp-about-quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #0f172a;
  font-weight: 500;
}
.gp-about-points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.gp-about-points li {
  position: relative;
  padding-inline-start: 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  color: #003366;
}
.gp-about-points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #ff6600;
}

.gp-about-pillars {
  padding-block: 3.25rem 3.75rem;
  background: #0a192f;
  color: #e2e8f0;
}
.gp-about-pillars-head {
  text-align: center;
  margin-bottom: 2rem;
}
.gp-about-pillars-head .gp-about-badge {
  color: #fff;
  background: linear-gradient(180deg, #ff8533 0%, #ff6600 48%, #e65c00 100%);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 0 #b34700, 0 8px 18px rgba(255, 102, 0, 0.28);
}
.gp-about-pillars-head .gp-about-section-title {
  color: #fff;
  margin-bottom: 0;
}
.gp-about-pillars-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gp-about-pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.gp-about-pillar {
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.35rem;
}
.gp-about-pillar-title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffb380;
}
.gp-about-pillar-text {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.75;
  color: #cbd5e1;
}

.gp-about-cta {
  padding-block: 3.5rem;
  background:
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(255, 237, 213, 0.55), transparent 60%),
    #ffffff;
  text-align: center;
}
.gp-about-cta-inner { max-width: 40rem; margin-inline: auto; }
.gp-about-cta-title {
  margin: 0 0 0.85rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: #003366;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .gp-about-cta-title { font-size: 1.75rem; }
}
.gp-about-cta-lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
}
.gp-about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Contact page */
.gp-contact-hero {
  padding-block: 1.75rem 2.25rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 102, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
@media (min-width: 768px) {
  .gp-contact-hero { padding-block: 2.25rem 2.75rem; }
}
.gp-contact-alert {
  margin: 0 auto 1.25rem;
  max-width: 44rem;
  padding: 0.95rem 1.15rem;
  border-radius: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}
.gp-contact-alert--ok {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}
.gp-contact-alert--err {
  color: #9f1239;
  background: #fff1f2;
  border: 1px solid #fecdd3;
}
.gp-contact-main {
  padding-block: 0.5rem 3.25rem;
}
.gp-contact-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 960px) {
  .gp-contact-layout {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 2.5rem;
  }
}
.gp-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.gp-contact-hours {
  margin-top: 0.5rem;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(180deg, #0a192f 0%, #0f2744 100%);
  color: #e2e8f0;
  border-radius: 0.35rem;
}
.gp-contact-hours-title {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}
.gp-contact-hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.gp-contact-hours-list li {
  position: relative;
  padding-inline-start: 1.1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.9);
}
.gp-contact-hours-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 9999px;
  background: #fb923c;
}
.gp-contact-form-panel {
  margin: 0;
}
.gp-contact-hq {
  padding-block: 2.75rem 3.25rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 70%);
}
.gp-contact-address {
  display: block;
  margin: 0 auto 1.15rem;
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
  color: #003366;
  text-align: center;
  width: 100%;
  max-width: 100%;
}
.gp-contact-address-line {
  display: block;
  text-align: center;
  width: 100%;
}
.gp-contact-hq .gp-about-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.gp-contact-hq .gp-about-points {
  width: 100%;
  text-align: center;
}
.gp-contact-hq .gp-about-media-cap {
  text-align: center;
  width: 100%;
}
.gp-contact-maps {
  margin: 1.35rem 0 0;
  text-align: center;
  width: 100%;
}
.gp-contact-maps .gp-btn {
  display: inline-flex;
}
@media (max-width: 899px) {
  .gp-contact-hq .gp-about-media--office {
    transform: none;
  }
  .gp-contact-hq .gp-about-copy-head {
    margin-top: 0.5rem;
  }
}
@media (min-width: 900px) {
  .gp-contact-hq .gp-about-media--office .gp-about-media-cap:not(.gp-about-media-cap--person) {
    text-align: center;
  }
}

/* FAQs page */
.gp-faqs-hero {
  padding-block: 1.75rem 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 102, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
@media (min-width: 768px) {
  .gp-faqs-hero { padding-block: 2.25rem 2.5rem; }
}
.gp-faqs-toc {
  margin-top: 1.75rem;
}
.gp-faqs-toc-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gp-faqs-toc-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  color: #003366;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(148, 163, 184, 0.08);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.gp-faqs-toc-link:hover,
.gp-faqs-toc-link:focus-visible {
  color: #c2410c;
  border-color: rgba(251, 146, 60, 0.55);
  background: #fff7ed;
  outline: none;
}
.gp-faqs-body {
  padding-block: 0.25rem 1rem;
}
.gp-faqs-group {
  padding-block: 2rem 2.35rem;
}
.gp-faqs-group:nth-child(even) {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 85%);
}
.gp-faqs-group-inner {
  max-width: 46rem;
}
.gp-faqs-group-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 0 1.35rem;
}
.gp-faqs-group-head .gp-about-section-title {
  margin-bottom: 0.55rem;
}
.gp-faqs-group-lead {
  margin: 0;
  max-width: 38rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
}

/* Quote page */
.gp-quote-hero {
  padding-block: 1.75rem 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 102, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
@media (min-width: 768px) {
  .gp-quote-hero { padding-block: 2.25rem 2.5rem; }
}
.gp-quote-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}
.gp-quote-trust li {
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #003366;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(148, 163, 184, 0.08);
}
.gp-quote-main {
  padding-block: 0.75rem 3.25rem;
}
.gp-quote-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 960px) {
  .gp-quote-layout {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 2.5rem;
  }
}
.gp-quote-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gp-quote-aside-card {
  padding: 1.25rem 1.3rem;
  border-radius: 0.35rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.gp-quote-aside-card--navy {
  background: linear-gradient(180deg, #0a192f 0%, #0f2744 100%);
  border-color: transparent;
  color: #e2e8f0;
}
.gp-quote-aside-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: #003366;
  line-height: 1.4;
}
.gp-quote-aside-card--navy .gp-quote-aside-title {
  color: #fff;
}
.gp-quote-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.gp-quote-steps li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #334155;
}
.gp-quote-step-num {
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: #ff6600;
}
.gp-quote-channels {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.gp-quote-channels a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.gp-quote-channels a span {
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.85);
}
.gp-quote-channels a:hover,
.gp-quote-channels a:focus-visible {
  color: #fb923c;
  outline: none;
}
.gp-quote-aside-note {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #64748b;
}
.gp-quote-form-panel {
  margin: 0;
}
.gp-quote-options {
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f8fafc;
}
.gp-quote-options legend {
  padding-inline: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}
.gp-quote-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.45rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #334155;
  cursor: pointer;
}
.gp-quote-check input {
  margin-top: 0.2rem;
  accent-color: #ff6600;
}
.gp-quote-services {
  padding-block: 2.5rem 3rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 80%);
}
.gp-quote-services-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
}
.gp-quote-service-grid {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 640px) {
  .gp-quote-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .gp-quote-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.gp-quote-service-link {
  display: flex;
  align-items: center;
  min-height: 3.25rem;
  padding: 0.75rem 0.95rem;
  border-radius: 0.35rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  color: #003366;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.gp-quote-service-link:hover,
.gp-quote-service-link:focus-visible {
  color: #c2410c;
  border-color: rgba(251, 146, 60, 0.55);
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.12);
  outline: none;
}

/* Tracking page */
.gp-track-hero {
  padding-block: 1.75rem 2.25rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 102, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
@media (min-width: 768px) {
  .gp-track-hero { padding-block: 2.25rem 2.75rem; }
}
.gp-track-lookup {
  max-width: 40rem;
  margin: 1.85rem auto 0;
  padding: 1.25rem 1.25rem 1.15rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.45rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}
.gp-track-lookup-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}
.gp-track-lookup-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .gp-track-lookup-row {
    flex-direction: row;
    align-items: stretch;
  }
}
.gp-track-lookup-input {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 0.45rem;
}
.gp-track-lookup-input:focus {
  outline: none;
  background: #fff;
  border-color: var(--gp-secondary);
  box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.15);
}
.gp-track-lookup-btn {
  white-space: nowrap;
}
@media (min-width: 640px) {
  .gp-track-lookup-btn { padding-inline: 1.35rem; }
}
.gp-track-lookup-hint {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}
.gp-track-result {
  padding-block: 0 2rem;
}
.gp-track-result-inner {
  max-width: 44rem;
  padding: 1.5rem 1.4rem;
  border-radius: 0.45rem;
  background: linear-gradient(180deg, #0a192f 0%, #0f2744 100%);
  color: #e2e8f0;
  text-align: center;
}
.gp-track-result-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffedd5;
  background: rgba(255, 102, 0, 0.22);
  border: 1px solid rgba(251, 146, 60, 0.45);
}
.gp-track-result-badge--warn {
  color: #fef3c7;
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(251, 191, 36, 0.45);
}
.gp-track-result-title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
}
.gp-track-result-number {
  margin: 0 0 0.85rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fb923c;
}
.gp-track-result-lead {
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.9);
}
.gp-track-result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.gp-track-milestones {
  padding-block: 2.5rem 3rem;
}
.gp-track-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.75rem;
}
.gp-track-section-lead {
  margin: 0.55rem 0 0;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #64748b;
}
.gp-track-miles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 800px) {
  .gp-track-miles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}
.gp-track-mile {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.4rem;
  box-shadow: 0 6px 18px rgba(148, 163, 184, 0.08);
}
.gp-track-mile-num {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  background: #ff6600;
}
.gp-track-mile-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: #003366;
}
.gp-track-mile-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
}
.gp-track-request {
  padding-block: 1rem 3.25rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 80%);
}
.gp-track-request-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 960px) {
  .gp-track-request-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
  }
}
.gp-track-request-aside .gp-about-section-title {
  text-align: start;
  margin-bottom: 0.85rem;
}
html[dir="rtl"] .gp-track-request-aside .gp-about-section-title {
  text-align: start;
}
.gp-track-request-lead {
  margin: 0 0 1.1rem;
  font-size: 0.975rem;
  line-height: 1.75;
  color: #475569;
}
.gp-track-request-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.gp-track-request-points li {
  position: relative;
  padding-inline-start: 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}
.gp-track-request-points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.5rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 9999px;
  background: #ff6600;
}
.gp-track-form-panel {
  margin: 0;
}

/* Articles hub + article */
.gp-articles-hero {
  padding-block: 1.75rem 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 102, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
@media (min-width: 768px) {
  .gp-articles-hero { padding-block: 2.25rem 2.5rem; }
}
.gp-articles-count {
  margin: 1.35rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #64748b;
}
.gp-articles-list {
  padding-block: 0.5rem 3rem;
}
.gp-articles-empty {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem 1rem;
}
.gp-articles-empty-title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #003366;
}
.gp-articles-empty-text {
  margin: 0 0 1.35rem;
  color: #64748b;
  line-height: 1.7;
}
.gp-articles-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .gp-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .gp-articles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gp-articles-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.gp-articles-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(148, 163, 184, 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.gp-articles-card:hover,
.gp-articles-card:focus-within {
  border-color: rgba(251, 146, 60, 0.45);
  box-shadow: 0 14px 30px rgba(148, 163, 184, 0.16);
}
.gp-articles-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a192f;
}
.gp-articles-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gp-articles-card:hover .gp-articles-card-media img,
.gp-articles-card:focus-within .gp-articles-card-media img {
  transform: scale(1.04);
}
.gp-articles-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.05rem 1.1rem 1.2rem;
  flex: 1;
}
.gp-articles-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
}
.gp-articles-card-cat {
  color: #c2410c;
  background: #fff7ed;
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: 9999px;
  padding: 0.2rem 0.55rem;
}
.gp-articles-card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
}
.gp-articles-card-title a {
  color: #003366;
  text-decoration: none;
}
.gp-articles-card-title a:hover,
.gp-articles-card-title a:focus-visible {
  color: #ff6600;
  outline: none;
}
.gp-articles-card-excerpt {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gp-articles-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ff6600;
  text-decoration: none;
}
.gp-articles-card-cta:hover,
.gp-articles-card-cta:focus-visible {
  color: #e65c00;
  outline: none;
}
.gp-articles-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
}
.gp-articles-pager-link {
  font-weight: 700;
  color: #003366;
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  background: #fff;
}
.gp-articles-pager-link:hover {
  color: #c2410c;
  border-color: rgba(251, 146, 60, 0.5);
}
.gp-articles-pager-status {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}

.gp-article-hero {
  padding-block: 1.5rem 2rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.gp-article-hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .gp-article-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
}
.gp-article-hero-copy .gp-about-badge {
  margin-bottom: 0.85rem;
}
.gp-article-title {
  margin: 0 0 0.85rem;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.3;
  color: #003366;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .gp-article-title { font-size: 2.05rem; }
}
.gp-article-dek {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #475569;
}
.gp-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #64748b;
}
.gp-article-hero-media {
  margin: 0;
}
.gp-article-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.35rem;
  box-shadow: 0 18px 40px rgba(10, 25, 47, 0.12);
}
.gp-article-layout {
  display: grid;
  gap: 1.75rem;
  padding-block: 0.5rem 3rem;
  align-items: start;
}
@media (min-width: 980px) {
  .gp-article-layout {
    grid-template-columns: minmax(0, 1fr) 16.5rem;
    gap: 2.5rem;
  }
}
.gp-article-body {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #334155;
}
.gp-article-body > *:first-child { margin-top: 0; }
.gp-article-body h2,
.gp-article-body h3 {
  color: #003366;
  line-height: 1.35;
  margin: 1.75rem 0 0.75rem;
}
.gp-article-body p { margin: 0 0 1.1rem; }
.gp-article-body ul,
.gp-article-body ol {
  margin: 0 0 1.15rem;
  padding-inline-start: 1.25rem;
}
.gp-article-body li { margin: 0.35rem 0; }
.gp-article-body a { color: #0073e6; }
.gp-article-body a:hover { color: #ff6600; }
.gp-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.3rem;
}
.gp-article-aside {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
@media (min-width: 980px) {
  .gp-article-aside {
    position: sticky;
    top: 6.5rem;
  }
}
.gp-article-aside-card {
  padding: 1.15rem 1.2rem;
  border-radius: 0.35rem;
  background: linear-gradient(180deg, #0a192f 0%, #0f2744 100%);
  color: #e2e8f0;
}
.gp-article-aside-card--light {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
}
.gp-article-aside-title {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.gp-article-aside-card--light .gp-article-aside-title {
  color: #003366;
}
.gp-article-aside-text {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.9);
}
.gp-article-aside-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.gp-article-aside-links a {
  font-size: 0.875rem;
  font-weight: 700;
  color: #003366;
  text-decoration: none;
}
.gp-article-aside-links a:hover { color: #ff6600; }
.gp-article-related {
  padding-block: 2.5rem 3.25rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 80%);
}

/* Shipping cost calculator */
.gp-cost-hero {
  padding-block: 1.75rem 2.25rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 102, 0, 0.08), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
@media (min-width: 768px) {
  .gp-cost-hero { padding-block: 2.25rem 2.5rem; }
}
.gp-cost-trust {
  list-style: none;
  margin: 1.5rem auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  max-width: 52rem;
}
.gp-cost-trust li {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
}
.gp-cost-main {
  padding-block: 0.5rem 3rem;
}
.gp-cost-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 960px) {
  .gp-cost-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
    gap: 1.75rem;
  }
}
.gp-cost-form-panel,
.gp-cost-request-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.45rem;
  padding: 1.25rem 1.25rem 1.35rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}
.gp-cost-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gp-cost-result {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.45rem;
  padding: 1.25rem 1.25rem 1.35rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}
.gp-cost-result--idle,
.gp-cost-result--err {
  background: #f8fafc;
}
.gp-cost-result-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ff6600;
}
.gp-cost-result-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0a192f;
  line-height: 1.3;
}
.gp-cost-result-lead {
  margin: 0 0 1.15rem;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.55;
}
.gp-cost-metrics {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.gp-cost-metrics > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.35rem;
}
.gp-cost-metrics dt {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #64748b;
}
.gp-cost-metrics dd {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0a192f;
  text-align: end;
}
.gp-cost-drivers-title {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0a192f;
}
.gp-cost-drivers,
.gp-cost-howto,
.gp-cost-notes-list {
  margin: 0;
  padding-inline-start: 1.15rem;
  color: #334155;
  line-height: 1.55;
}
.gp-cost-drivers li,
.gp-cost-howto li,
.gp-cost-notes-list li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.gp-cost-result-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
@media (min-width: 640px) {
  .gp-cost-result-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.gp-cost-aside-card {
  border-radius: 0.45rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid #e2e8f0;
  background: #fff;
}
.gp-cost-aside-card--navy {
  background: #0a192f;
  border-color: #0a192f;
  color: #e2e8f0;
}
.gp-cost-aside-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: inherit;
}
.gp-cost-aside-card--navy p {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.9);
}
.gp-cost-aside-link {
  font-size: 0.875rem;
  font-weight: 800;
  color: #ff6600;
  text-decoration: none;
}
.gp-cost-aside-link:hover { text-decoration: underline; }
.gp-cost-request {
  padding-block: 0 3rem;
}
.gp-cost-notes {
  padding-block: 2rem 3.25rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 80%);
}
.gp-cost-notes .gp-about-section-title {
  margin-bottom: 1rem;
}

