/* 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-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 mobile sticky chrome: marquee + header */
.gp-mobile-chrome {
  width: 100%;
}
@media (max-width: 767px) {
  .gp-mobile-chrome {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    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-mobile-chrome:has(.gp-header.is-nav-open) {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  }
  .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 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: 2rem 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); }

/* 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-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-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: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
html[dir="rtl"] .gp-svc-showcase-cta-icon {
  transform: scaleX(-1);
}
.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: scaleX(-1) 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: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1rem;
  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.5rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease;
}
.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; }

/* 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 (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.35fr 1fr 1fr 0.95fr;
    gap: 2rem 1.5rem;
  }
}
.gp-footer-col {
  min-width: 0;
}
.gp-footer-logo-link {
  display: inline-block;
  margin-bottom: 0.85rem;
}
.gp-footer-logo {
  display: block;
  width: min(100%, 200px);
  height: auto;
  background: transparent;
  margin: 0;
  border-radius: 0;
}
.gp-footer-brand {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
}
.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: 22rem;
}
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;
  gap: 0.45rem;
}
.gp-footer-pay {
  display: inline-flex;
  line-height: 0;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gp-footer-pay:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(197, 160, 89, 0.2);
}
.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;
}
.gp-footer-bar p {
  margin: 0;
  font-size: 0.75rem;
  color: #777777;
  line-height: 1.5;
}
@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; }
}

/* (homepage hero height handled under .gp-hero-home) */

/* 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 h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--gp-primary);
}
.gp-svc-card-body h3 a {
  color: inherit;
  text-decoration: none;
}
.gp-svc-card-body h3 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; }

/* 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 {
  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 {
  outline: none;
  background: #fff;
  border-color: var(--gp-secondary);
  box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.15);
}
.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); }
