﻿/* =========================================================
   Alzafer Logistics Platform — Corporate Design System
   Mohammed Al-Zafer Customs Clearance & Transportation
   ========================================================= */

:root {
  /* Official brand palette — دليل الهوية البصرية V2 */
  --az-navy: #0B2545;
  --az-navy-2: #0a1f38;
  --az-navy-deep: #071a30;
  --az-blue: #0B2545;
  --az-teal: #139A8C;
  --az-teal-dark: #0f7f73;
  --az-teal-soft: rgba(19, 154, 140, 0.12);
  --az-ink: #0B2545;
  --az-muted: #5b6b7c;
  --az-line: #e2e6eb;
  --az-soft: #F4F5F7;
  --az-white: #ffffff;
  --az-overlay: rgba(11, 37, 69, 0.40); /* 40% navy overlay on images */
  --az-warning: #f59e0b;
  --az-success: #059669;
  --az-danger: #dc2626;
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.05);
  --shadow-md: 0 10px 28px rgba(11, 37, 69, 0.09);
  --shadow-lg: 0 20px 48px rgba(11, 37, 69, 0.14);
  --radius: 12px;
  --radius-lg: 18px;
  --header-h: 80px;
  --container: 1180px;
  --font-ar: "Tajawal", "Segoe UI", Tahoma, Arial, sans-serif;
  --font-en: "Inter", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  color: var(--az-ink);
  background: var(--az-soft);
  font-family: var(--font-ar);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body[dir="ltr"] {
  font-family: var(--font-en);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-muted { color: var(--az-muted); }
.text-teal { color: var(--az-teal-dark); }
.text-navy { color: var(--az-navy); }
.text-center { text-align: center; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.section {
  padding: 4.5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  font-weight: 800;
  color: var(--az-navy);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.section-lead {
  margin: 0 auto 2.25rem;
  max-width: 640px;
  color: var(--az-muted);
  font-size: 1.05rem;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head.center {
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--az-teal-soft);
  color: var(--az-teal-dark);
  border: 1px solid rgba(66, 201, 199, 0.25);
}

.badge-navy {
  background: rgba(35, 38, 64, 0.08);
  color: var(--az-navy);
  border-color: rgba(35, 38, 64, 0.12);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
  text-align: center;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--az-teal);
  color: var(--az-navy-deep);
  box-shadow: 0 8px 20px rgba(66, 201, 199, 0.28);
}

.btn-primary:hover {
  background: var(--az-teal-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-navy {
  background: var(--az-navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--az-navy-2);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-outline-dark {
  background: #fff;
  border-color: var(--az-line);
  color: var(--az-navy);
}

.btn-outline-dark:hover {
  border-color: var(--az-teal);
  color: var(--az-teal-dark);
  background: var(--az-teal-soft);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 1.6rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Top bar / Header ---------- */
.topbar {
  background: var(--az-navy-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(66, 201, 199, 0.15);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  flex-wrap: wrap;
  padding: 0.4rem 0;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: var(--az-teal);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.2rem;
}

.lang-toggle button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.78rem;
}

.lang-toggle button.active {
  background: var(--az-teal);
  color: var(--az-navy-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 32, 55, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(66, 201, 199, 0.22);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo-box {
  background: #fff;
  border: 1px solid rgba(66, 201, 199, 0.28);
  border-radius: 10px;
  width: 56px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-logo-box img {
  width: 120%;
  max-width: none;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
}

.brand-sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
}

.nav a,
.nav .nav-parent {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.55rem 0.72rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: 0.15s ease;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active,
.nav .nav-parent:hover,
.nav-item.open > .nav-parent {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav a.active {
  background: rgba(66, 201, 199, 0.18);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(66, 201, 199, 0.35);
}

/* About dropdown */
.nav-item {
  position: relative;
}

.nav-item .nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  border: 0;
  background: transparent;
  font: inherit;
}

.nav-item .nav-parent::after {
  content: "";
  width: 0;
  height: 0;
  border-inline-start: 4px solid transparent;
  border-inline-end: 4px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

.nav-sub {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-start: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--az-line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 0.4rem;
  z-index: 120;
}

.nav-item:hover .nav-sub,
.nav-item.open .nav-sub,
.nav-item:focus-within .nav-sub {
  display: block;
}

.nav-sub a {
  display: block;
  color: var(--az-navy) !important;
  padding: 0.7rem 0.85rem !important;
  border-radius: 8px;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  background: transparent !important;
}

.nav-sub a:hover {
  background: var(--az-teal-soft) !important;
  color: var(--az-teal-dark) !important;
}

/* Primary header CTA */
.btn-cta {
  background: linear-gradient(135deg, #42c9c7, #22aaa7);
  color: var(--az-navy-deep) !important;
  font-weight: 800;
  border: 0;
  box-shadow: 0 8px 22px rgba(66, 201, 199, 0.35);
  padding: 0.72rem 1.15rem;
  letter-spacing: 0.01em;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(66, 201, 199, 0.42);
  background: linear-gradient(135deg, #4fd4d2, #1f9b98);
  color: #fff !important;
}

.header-actions .btn-cta {
  display: inline-flex;
}

.nav a.active {
  background: var(--az-teal);
  color: var(--az-navy-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 2px;
  background: currentColor;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(66, 201, 199, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(58, 79, 160, 0.35), transparent 50%),
    linear-gradient(145deg, #0d3d58 0%, var(--az-navy) 42%, var(--az-navy-deep) 100%);
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 30%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--az-teal);
}

.hero-desc {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.hero-trust strong {
  color: #fff;
  display: block;
  font-size: 1.05rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(66, 201, 199, 0.22);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.hero-panel h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.quick-actions {
  display: grid;
  gap: 0.65rem;
}

.quick-action {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.2s ease;
}

.quick-action:hover {
  background: rgba(66, 201, 199, 0.14);
  border-color: rgba(66, 201, 199, 0.35);
  transform: translateX(-3px);
}

body[dir="ltr"] .quick-action:hover {
  transform: translateX(3px);
}

.quick-action-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--az-teal);
  color: var(--az-navy-deep);
  flex-shrink: 0;
  font-weight: 800;
}

.quick-action strong {
  display: block;
  font-size: 0.95rem;
}

.quick-action span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Stats ---------- */
.stats-bar {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--az-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
}

.stat-card {
  text-align: center;
  padding: 1rem 0.75rem;
  border-radius: 12px;
}

.stat-card:not(:last-child) {
  border-inline-end: 1px solid var(--az-line);
}

.stat-value {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--az-navy);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-value span {
  color: var(--az-teal-dark);
}

.stat-label {
  color: var(--az-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---------- Cards / Grids ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  background: #fff;
  border: 1px solid var(--az-line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(66, 201, 199, 0.35);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--az-teal-soft), rgba(58, 79, 160, 0.08));
  color: var(--az-navy);
  margin-bottom: 1rem;
  border: 1px solid rgba(66, 201, 199, 0.2);
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
  color: var(--az-navy);
  font-weight: 800;
}

.card p {
  margin: 0;
  color: var(--az-muted);
  font-size: 0.95rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: var(--az-teal-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ---------- Coverage / Ports ---------- */
.coverage {
  background: #fff;
  border-top: 1px solid var(--az-line);
  border-bottom: 1px solid var(--az-line);
}

.port-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.port-card .port-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--az-teal);
  box-shadow: 0 0 0 6px var(--az-teal-soft);
  margin: 0 auto 1rem;
}

.port-card h3 {
  margin: 0 0 0.35rem;
  color: var(--az-navy);
  font-size: 1.05rem;
}

.port-card p {
  margin: 0;
  color: var(--az-muted);
  font-size: 0.88rem;
}

/* ---------- About strip ---------- */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-points {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.about-point {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid var(--az-line);
  border-radius: 12px;
}

.about-point .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--az-teal-soft);
  color: var(--az-teal-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.85rem;
}

.about-visual {
  background: linear-gradient(145deg, var(--az-navy), #0d3d58);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-lg);
}

.about-visual::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(66, 201, 199, 0.15);
  top: -40px;
  inset-inline-end: -40px;
}

.about-visual h3 {
  position: relative;
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.about-visual p {
  position: relative;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.78);
}

.metric-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.metric-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.9rem;
}

.metric-box strong {
  display: block;
  font-size: 1.35rem;
  color: var(--az-teal);
}

.metric-box span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--az-navy) 0%, #0d3d58 55%, var(--az-navy-2) 100%);
  color: #fff;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(66, 201, 199, 0.1);
  top: -120px;
  inset-inline-start: -80px;
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-inner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Directory ---------- */
.filters {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) auto;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  background: #fff;
  border: 1px solid var(--az-line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.form-control,
.filters input,
.filters select,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--az-line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  background: #fff;
  color: var(--az-ink);
  outline: none;
  transition: 0.15s ease;
}

.form-control:focus,
.filters input:focus,
.filters select:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--az-teal);
  box-shadow: 0 0 0 3px var(--az-teal-soft);
}

.directory-list {
  display: grid;
  gap: 1rem;
}

.dir-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--az-line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: 0.2s ease;
}

.dir-card:hover {
  border-color: rgba(66, 201, 199, 0.4);
  box-shadow: var(--shadow-md);
}

.dir-card h3 {
  margin: 0 0 0.35rem;
  color: var(--az-navy);
  font-size: 1.1rem;
}

.dir-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.55rem 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--az-soft);
  color: var(--az-navy);
  border: 1px solid var(--az-line);
}

.tag.teal {
  background: var(--az-teal-soft);
  color: var(--az-teal-dark);
  border-color: rgba(66, 201, 199, 0.25);
}

.dir-desc {
  margin: 0;
  color: var(--az-muted);
  font-size: 0.9rem;
}

.dir-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 140px;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--az-muted);
  background: #fff;
  border: 1px dashed var(--az-line);
  border-radius: var(--radius-lg);
}

/* ---------- Forms ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--az-navy), #0d3d58);
  color: #fff;
  padding: 3rem 0;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
}

.form-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1px solid var(--az-line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.form-card h2 {
  margin: 0 0 0.35rem;
  color: var(--az-navy);
  font-size: 1.25rem;
}

.form-card > p {
  margin: 0 0 1.5rem;
  color: var(--az-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--az-navy);
}

.form-group .hint {
  font-size: 0.8rem;
  color: var(--az-muted);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.form-note {
  font-size: 0.85rem;
  color: var(--az-muted);
}

.side-info {
  display: grid;
  gap: 1rem;
}

.info-card {
  background: #fff;
  border: 1px solid var(--az-line);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.info-card h3 {
  margin: 0 0 0.75rem;
  color: var(--az-navy);
  font-size: 1.05rem;
}

.info-list {
  display: grid;
  gap: 0.75rem;
}

.info-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--az-muted);
  font-size: 0.92rem;
}

.info-list strong {
  color: var(--az-navy);
  display: block;
}

.alert {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  display: none;
}

.alert.show { display: block; }

.alert-success {
  background: rgba(5, 150, 105, 0.1);
  color: var(--az-success);
  border: 1px solid rgba(5, 150, 105, 0.25);
}

.alert-error {
  background: rgba(220, 38, 38, 0.08);
  color: var(--az-danger);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

/* ---------- Service detail ---------- */
.service-detail {
  display: grid;
  gap: 1.25rem;
}

.service-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.service-num {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--az-navy);
  color: var(--az-teal);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}

/* ---------- Value showcase: process / checklist / problem-solution ---------- */
.value-section {
  background: var(--az-soft);
  border-top: 1px solid var(--az-line);
  border-bottom: 1px solid var(--az-line);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--az-line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.65rem;
  inset-inline-end: -1.55rem;
  width: 1.55rem;
  height: 2px;
  background: repeating-linear-gradient(
    to left,
    var(--az-teal) 0 6px,
    transparent 6px 11px
  );
}

body[dir="ltr"] .process-step:not(:last-child)::after {
  background: repeating-linear-gradient(
    to right,
    var(--az-teal) 0 6px,
    transparent 6px 11px
  );
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--az-navy);
  color: var(--az-teal);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  color: var(--az-navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.process-step p {
  margin: 0;
  color: var(--az-muted);
  font-size: 0.9rem;
}

.doc-checklist {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.doc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--az-ink);
  line-height: 1.5;
}

.doc-checklist .check-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--az-teal-soft);
  color: var(--az-teal-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.72rem;
  margin-top: 0.1rem;
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.ps-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--az-line);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.ps-problem,
.ps-solution {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.ps-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.85rem;
}

.ps-problem .ps-icon {
  background: rgba(220, 38, 38, 0.1);
  color: var(--az-danger);
}

.ps-solution .ps-icon {
  background: var(--az-teal-soft);
  color: var(--az-teal-dark);
}

.ps-pair strong {
  display: block;
  color: var(--az-navy);
  font-size: 0.86rem;
  margin-bottom: 0.15rem;
}

.ps-pair span {
  display: block;
  color: var(--az-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.ps-arrow {
  color: var(--az-line);
  font-weight: 800;
  font-size: 1.1rem;
}

.ps-arrow::before {
  content: "\2190";
}

body[dir="ltr"] .ps-arrow::before {
  content: "\2192";
}

@media (max-width: 860px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-step:not(:last-child)::after {
    content: none;
  }
  .ps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ps-pair {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ps-problem,
  .ps-solution {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ps-arrow {
    transform: rotate(-90deg);
    justify-self: center;
  }
  body[dir="ltr"] .ps-arrow {
    transform: rotate(90deg);
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--az-navy-deep);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0;
  max-width: 320px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: #fff;
  margin: 0 0 1rem;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--az-teal);
}

.footer-contact li {
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
}

.footer-contact a {
  display: inline;
  color: #fff;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* ---------- Floating contact ---------- */
.float-contact {
  position: fixed;
  bottom: 1.25rem;
  inset-inline-end: 1.25rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  border: 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.75rem;
  transition: 0.2s ease;
}

.float-btn:hover {
  transform: translateY(-2px);
}

.float-btn.phone {
  background: var(--az-teal-dark);
  color: #fff;
  font-size: 1.15rem;
}

.float-btn.quote {
  background: var(--az-navy);
  width: auto;
  border-radius: 999px;
  padding: 0 1rem;
  height: 46px;
}

/* ---------- Ads-ready landing helpers ---------- */
.utm-banner {
  display: none;
  background: var(--az-teal-soft);
  border-bottom: 1px solid rgba(66, 201, 199, 0.25);
  padding: 0.55rem 0;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--az-navy);
}

.utm-banner.show { display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid,
  .about-strip,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) {
    border-inline-end: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .filters {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: var(--az-navy-2);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(66, 201, 199, 0.2);
    box-shadow: var(--shadow-lg);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 1rem;
  }

  .header-actions .btn {
    display: none;
  }

  .header-actions .btn-mobile-show {
    display: inline-flex;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    position: relative;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .dir-card {
    grid-template-columns: 1fr;
  }

  .dir-actions {
    flex-direction: row;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .stats-grid,
  .grid-4,
  .form-grid,
  .filters,
  .footer-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .stat-card:not(:last-child) {
    border-inline-end: 0;
    border-bottom: 1px solid var(--az-line);
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .topbar-links span.hide-sm {
    display: none;
  }

  .float-contact {
    bottom: 0.85rem;
    inset-inline-end: 0.85rem;
  }
}

/* ---------- Design system v2: destinations, mobile, polish ---------- */
.dest-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}
.dest-card {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.04), rgba(66, 201, 199, 0.08)),
    #fff;
}
.dest-card h3 { margin: 0 0 0.35rem; font-size: 1.15rem; color: var(--az-navy); }
.dest-card .dest-tag {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
}
.dest-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.9rem; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.trust-pill {
  background: #fff;
  border: 1px solid var(--az-line);
  border-radius: 14px;
  padding: 1rem 0.85rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.trust-pill strong {
  display: block;
  font-size: 1.35rem;
  color: var(--az-navy);
  font-weight: 800;
  line-height: 1.1;
}
.trust-pill span {
  display: block;
  margin-top: 0.35rem;
  color: var(--az-muted);
  font-size: 0.85rem;
  font-weight: 600;
}
.card {
  border-radius: 16px;
}
.card:hover {
  transform: translateY(-2px);
}
.hero h1 {
  text-wrap: balance;
}
.section {
  padding: 4.75rem 0;
}
.page-hero {
  padding: 3.4rem 0 3.2rem;
  background:
    radial-gradient(ellipse 70% 80% at 90% 10%, rgba(66, 201, 199, 0.16), transparent 50%),
    linear-gradient(135deg, var(--az-navy), #0d3d58);
}
.about-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
}
.about-subnav a {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--az-line);
  background: #fff;
  color: var(--az-navy);
  font-weight: 700;
  font-size: 0.88rem;
}
.about-subnav a.active,
.about-subnav a:hover {
  border-color: var(--az-teal);
  background: var(--az-teal-soft);
  color: var(--az-teal-dark);
}
.pricing-entry {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--az-line);
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: var(--shadow-md);
}
.pricing-entry h3 { margin: 0 0 0.5rem; color: var(--az-navy); font-size: 1.35rem; }
@media (max-width: 1024px) {
  .dest-hero-grid,
  .pricing-entry,
  .trust-row { grid-template-columns: 1fr 1fr; }
  .nav { justify-content: flex-start; }
}
@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: var(--az-navy-2);
    flex-direction: column;
    align-items: stretch;
    padding: 0.65rem;
    border-bottom: 1px solid rgba(66, 201, 199, 0.2);
    box-shadow: var(--shadow-lg);
    max-height: min(78vh, 560px);
    overflow: auto;
  }
  .nav.open { display: flex; }
  .nav a,
  .nav .nav-parent {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 1rem;
  }
  .nav-sub {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    background: rgba(255,255,255,0.04);
    margin: 0.15rem 0 0.4rem;
    padding: 0.25rem;
  }
  .nav-item.open .nav-sub { display: block; }
  .nav-sub a {
    color: rgba(255,255,255,0.9) !important;
  }
  .nav-sub a:hover {
    background: rgba(66, 201, 199, 0.16) !important;
    color: #fff !important;
  }
  .header-actions .btn-cta {
    display: inline-flex !important;
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
  }
  .trust-row,
  .dest-hero-grid,
  .pricing-entry { grid-template-columns: 1fr; }
}


/* =========================================================
   Brand identity V2 — logo, overlays, media, footer strip
   ========================================================= */
.brand {
  gap: 0.65rem;
  align-items: center;
}
.brand-logo-box {
  background: #fff;
  border: 1px solid rgba(19, 154, 140, 0.22);
  border-radius: 12px;
  width: auto;
  min-width: 52px;
  height: 52px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(11, 37, 69, 0.08);
}
.brand-logo-box img,
.brand-logo-box .brand-logo-img {
  width: auto !important;
  max-width: 148px;
  height: 40px !important;
  max-height: 42px;
  object-fit: contain;
  display: block;
}
.brand-logo-full {
  height: 72px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}
.header-inner { padding-block: 0.4rem; }
.brand-text .brand-title { color: #fff; font-size: 1.02rem; }
.brand-text .brand-sub { color: rgba(255,255,255,0.72); font-size: 0.72rem; }

/* Navy 40% overlay on photographic sections */
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 240px;
  background: var(--az-navy) center/cover no-repeat;
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--az-overlay);
  pointer-events: none;
}
.media-frame > * {
  position: relative;
  z-index: 1;
}
.media-frame.hero-media {
  min-height: 100%;
  border-radius: 18px;
  background-image:
    linear-gradient(145deg, rgba(11,37,69,0.55), rgba(19,154,140,0.25)),
    radial-gradient(circle at 70% 30%, rgba(19,154,140,0.35), transparent 45%),
    linear-gradient(160deg, #0B2545, #0a3d4a 55%, #139A8C);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
}

.site-header {
  background: linear-gradient(135deg, #0B2545 0%, #0a1f38 100%);
  border-bottom: 1px solid rgba(19, 154, 140, 0.28);
}
.topbar {
  background: #071a30;
  border-bottom: 1px solid rgba(19, 154, 140, 0.18);
}
.btn-primary,
.btn-cta {
  background: linear-gradient(135deg, #139A8C, #0f7f73);
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(19, 154, 140, 0.32);
}
.btn-primary:hover,
.btn-cta:hover {
  background: linear-gradient(135deg, #16b0a0, #0d6e64);
  color: #fff !important;
}
.badge {
  background: rgba(19, 154, 140, 0.14);
  color: #0f7f73;
  border-color: rgba(19, 154, 140, 0.28);
}
.card-icon {
  background: linear-gradient(135deg, rgba(19,154,140,0.14), rgba(11,37,69,0.06));
  border-color: rgba(19,154,140,0.2);
  color: var(--az-navy);
}
.port-dot {
  background: #139A8C;
  box-shadow: 0 0 0 6px rgba(19, 154, 140, 0.14);
}
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 85% 15%, rgba(19, 154, 140, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 85%, rgba(11, 37, 69, 0.5), transparent 50%),
    linear-gradient(145deg, #071a30 0%, #0B2545 42%, #0a3a42 100%);
}
.page-hero {
  background:
    radial-gradient(ellipse 70% 80% at 90% 10%, rgba(19, 154, 140, 0.18), transparent 50%),
    linear-gradient(135deg, #0B2545, #0a3040);
}
.cta-band {
  background: linear-gradient(135deg, #0B2545 0%, #0a3040 55%, #0B2545 100%);
}
.site-footer {
  background: #071a30;
}
.footer-contact-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}
.footer-contact-bar a,
.footer-contact-bar span {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
}
.footer-contact-bar strong {
  display: block;
  color: #139A8C;
  font-size: 0.78rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-control:focus {
  border-color: #139A8C;
  box-shadow: 0 0 0 3px rgba(19, 154, 140, 0.15);
}
.nav a.active {
  background: rgba(19, 154, 140, 0.2);
  box-shadow: inset 0 0 0 1px rgba(19, 154, 140, 0.4);
}
.section-title { color: #0B2545; }
.text-navy { color: #0B2545; }
.text-teal { color: #0f7f73; }
.about-visual {
  background: linear-gradient(145deg, #0B2545, #0a3d48);
}
.about-visual .metric-box strong { color: #139A8C; }
.float-btn.phone { background: #139A8C; }
.float-btn.quote { background: #0B2545; }

/* =========================================================
   Freightclear-style pivot — white header, gradient accent strip,
   dropdown nav, Gulf-modern geometric motif (no photography)
   ========================================================= */
:root {
  --fc-blue: #0ea5c4;
  --fc-green: #6fbf3e;
}

.topbar {
  background: var(--az-soft);
  color: var(--az-ink);
  border-bottom: 1px solid var(--az-line);
}
.topbar a { color: var(--az-ink); }
.topbar a:hover { color: var(--az-teal-dark); }
.topbar-links span.hide-sm { color: var(--az-muted); }

.lang-toggle {
  background: #fff;
  border: 1px solid var(--az-line);
}
.lang-toggle button { color: var(--az-muted); }
.lang-toggle button.active { background: var(--az-teal); color: #fff; }

.site-header {
  background: #fff;
  border-bottom: none;
  box-shadow: var(--shadow-sm);
}
.site-header::after {
  content: "";
  display: block;
  position: absolute;
  inset-inline: 0;
  bottom: -4px;
  height: 4px;
  background: linear-gradient(90deg, var(--fc-blue), var(--fc-green));
}

.brand-text .brand-title { color: var(--az-navy); }
.brand-text .brand-sub { color: var(--az-muted); }

.nav a,
.nav .nav-parent {
  color: var(--az-navy);
}
.nav a:hover,
.nav a.active,
.nav .nav-parent:hover,
.nav-item.open > .nav-parent {
  color: var(--az-navy);
  background: var(--az-soft);
}
.nav a.active,
.nav-parent.active {
  background: var(--az-teal-soft);
  box-shadow: inset 0 0 0 1px rgba(19, 154, 140, 0.35);
}
.nav-item .nav-parent::after {
  border-top-color: rgba(11, 37, 69, 0.55);
}

.menu-toggle {
  border: 1px solid var(--az-line);
  background: var(--az-soft);
  color: var(--az-navy);
}

@media (max-width: 860px) {
  .nav {
    background: #fff;
    border: 1px solid var(--az-line);
    box-shadow: var(--shadow-lg);
  }
  .nav a,
  .nav .nav-parent { color: var(--az-navy); }
  .nav-sub { background: var(--az-soft); }
  .nav-sub a { color: var(--az-navy) !important; }
  .nav-sub a:hover { background: var(--az-teal-soft) !important; color: var(--az-teal-dark) !important; }
}

.hero {
  background:
    radial-gradient(ellipse 80% 60% at 85% 15%, rgba(111, 191, 62, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 45% at 10% 85%, rgba(14, 165, 196, 0.28), transparent 50%),
    linear-gradient(145deg, #071a30 0%, #0B2545 42%, #0a3a42 100%);
}
.hero::before {
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 26px);
}
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 90% 10%, rgba(111, 191, 62, 0.18), transparent 50%),
    linear-gradient(135deg, #0B2545, #0a3040);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 26px);
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.cta-band {
  background: linear-gradient(135deg, #0B2545 0%, #0a3040 55%, #0B2545 100%);
}

.icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fc-blue), var(--fc-green));
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(14, 165, 196, 0.35);
  flex-shrink: 0;
}
