/* ===== ROOT VARIABLES ===== */
:root {
  --primary-color:   #1b92c3;
  --primary-dark:    #1478a8;
  --primary-light:   #e8f4f8;
  --text-color:      #334155;
  --heading-color:   #0a1628;
  --muted-color:     #64748b;
  --border-color:    #e2e8f0;
  --bg-color:        #ffffff;
  --bg-light:        #f7f9fb;
  --bg-dark:         #0a1628;
  --bg-dark-mid:     #0f2040;
  --container-width: 1680px;
  --section-py:      100px;
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       16px;
  --shadow-card:     0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-hover:    0 8px 32px rgba(0,0,0,0.1);
  --transition:      0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

/* tel: links look like plain text; underline on hover signals interactivity */
a[href^="tel"]:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

/* ===== BASE ===== */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-color);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  color: var(--heading-color);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 4vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 2.5vw, 2.5rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

p {
  color: var(--text-color);
  line-height: 1.7;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 120px;
}

/* ===== SECTIONS ===== */
.section {
  padding-block: var(--section-py);
}

.section--dark {
  background-color: var(--bg-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #ffffff;
}

.section--grey {
  background-color: var(--bg-light);
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background-color: var(--primary-color);
  flex-shrink: 0;
}

.section-label--left::after {
  display: none;
}

/* ===== SECTION HEADER ===== */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 64px;
}

.section-header .subtitle {
  font-size: 1rem;
  color: var(--muted-color);
  max-width: 580px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn--primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(27, 146, 195, 0.35);
}

.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

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

.btn--outline-brand {
  background-color: transparent;
  color: var(--primary-color);
  border: 1.5px solid var(--primary-color);
}

.btn--outline-brand:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn--white {
  background-color: #ffffff;
  color: var(--heading-color);
  font-weight: 700;
}

.btn--white:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.btn .arrow {
  transition: transform var(--transition);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary-color);
  background-color: var(--primary-light);
  border: 1px solid rgba(27, 146, 195, 0.2);
}

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background-color: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Remove backdrop-filter when nav is open.
   backdrop-filter creates a new stacking context that traps
   position:fixed children inside the header element.
   Without it, .nav__links correctly covers the full viewport. */
.site-header.nav-open {
  backdrop-filter: none;
}

.nav {
  display: flex;
  align-items: center;
  padding-block: 22px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;

}

.nav__logo img {
    
  height: 44px;
  width: auto;
}

.nav__company-name {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: inherit;
  max-width: 190px;
  color: rgba(255, 255, 255, 0.85);
}

.nav__lang-item {
  order: 99;
}

.nav__links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: #ffffff;
}

.nav__links a.active {
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 2px;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language switcher — direct child of nav, always visible */
.nav__lang {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  margin-inline-start: 20px;
  transition: color var(--transition), opacity var(--transition);
}

.nav__lang:hover {
  color: #ffffff;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-dark);
  overflow: hidden;
}

.hero__inner {
  display: flex;
  align-items: stretch;
  height: 82vh;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px 120px;
  width: 40%;
  flex-shrink: 0;
  background-color: var(--primary-color);
}

.hero__image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* No overlay needed — left panel is solid blue, image stands clean */

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background-color: #daeef8;
  border-top: none;
}

.trust-bar__inner {
  display: flex;
  align-items: stretch;
}

.trust-stat {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid rgba(27, 146, 195, 0.15);
}

.trust-stat:last-child {
  border-right: none;
}

.trust-stat__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  white-space: nowrap;
}

.trust-stat__value em {
  font-style: normal;
}

.trust-stat__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-color);
  line-height: 1.35;
  max-width: 110px;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  border-radius: var(--radius-md);
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--primary-color);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted-color);
  line-height: 1.65;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  transition: gap var(--transition);
}

.service-card__link:hover {
  gap: 10px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 48px;
}

.why-choose__content .lead {
  font-size: 1rem;
  color: var(--muted-color);
  margin-bottom: 40px;
  line-height: 1.75;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.why-feature:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(27, 146, 195, 0.1);
}

.why-feature__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  color: var(--primary-color);
  flex-shrink: 0;
}

.why-feature__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.why-feature h4 {
  font-size: 0.95rem;
  line-height: 1.3;
}

.why-feature p {
  font-size: 0.84rem;
  color: var(--muted-color);
  line-height: 1.55;
}

.why-choose__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.why-choose__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== BENTO GRID ===== */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bento-card:hover img {
  transform: scale(1.04);
}

.bento-card--tall {
  grid-row: span 2;
}

/* Explicit column placement — prevents auto-placement from breaking the layout */
.bento-grid > :nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.bento-grid > :nth-child(2) { grid-column: 2; grid-row: 1; }
.bento-grid > :nth-child(3) { grid-column: 2; grid-row: 2; }
.bento-grid > :nth-child(4) { grid-column: 3; grid-row: 1 / span 2; }

/* Dark navy stat cards (no image) */
.bento-card--dark {
  background-color: var(--bg-dark-mid);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius-md);
}

.bento-card--dark .bento-card__label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.bento-card--dark .bento-card__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

/* Category pill badge */
.bento-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: rgba(27, 146, 195, 0.3);
  border: 1px solid rgba(27, 146, 195, 0.45);
  align-self: flex-start;
}

.bento-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.82) 0%, rgba(10,22,40,0.08) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
}

.bento-card__overlay .bento-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bento-card__label {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.bento-card__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* ===== PROCESS ===== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  /* Circle center = .process-step padding-top (36px) + half circle height (32px) = 68px */
  top: 68px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(27, 146, 195, 0.4) 0px,
    rgba(27, 146, 195, 0.4) 8px,
    transparent 8px,
    transparent 16px
  );
  pointer-events: none;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 36px 20px;
}

.process-step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-step p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ===== FLEET ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fleet-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.fleet-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.fleet-card__image {
  height: 240px;
  overflow: hidden;
}

.fleet-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-card__image img {
  transform: scale(1.05);
}

.fleet-card__body {
  padding: 28px;
}

.fleet-card__body h3 {
  margin-bottom: 10px;
}

.fleet-card__body p {
  font-size: 0.9rem;
  color: var(--muted-color);
  margin-bottom: 20px;
}

.fleet-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(105deg, #1478a8 0%, var(--primary-color) 50%, #22a8e0 100%);
  padding-block: 80px;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner__text h2 {
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-banner__text p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  font-size: 1rem;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .lead {
  font-size: 1rem;
  color: var(--muted-color);
  margin-bottom: 40px;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  color: var(--primary-color);
}

.contact-detail__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-color);
  margin-bottom: 4px;
}

.contact-detail__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--heading-color);
  line-height: 1.5;
}

/* ===== CONTACT FORM CARD ===== */
.contact-form-card {
  background-color: var(--bg-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

.contact-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group + .form-group,
.form-row + .form-group,
.form-group + .form-row {
  margin-top: 20px;
}

/* Columns inside a .form-row sit side-by-side — reset the sibling margin */
.form-row .form-group + .form-group {
  margin-top: 0;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

.form-group label span {
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--heading-color);
  background-color: var(--bg-light);
  outline: none;
  transition: border-color var(--transition), background-color var(--transition);
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  background-color: var(--bg-color);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-submit {
  margin-top: 28px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted-color);
  justify-content: center;
}

/* ── Form validation error states ── */
.form-group--error input,
.form-group--error select,
.form-group--error textarea {
  border-color: #ef4444;
  background-color: #fff8f8;
}

.form-group--error input:focus,
.form-group--error select:focus,
.form-group--error textarea:focus {
  border-color: #ef4444;
}

.form-error {
  font-size: 12px;
  font-weight: 500;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 16px;
}

/* ── Form submission status banner ── */
.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.form-status--success {
  display: block;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

.form-status--error {
  display: block;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

/* ===== LOCATIONS ===== */
.locations-section {
  padding-top: 0;
}

.locations-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding-top: var(--section-py);
  margin-bottom: 56px;
}

.locations-header .subtitle {
  font-size: 1rem;
  color: var(--muted-color);
  max-width: 500px;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.location-card {
  background-color: var(--bg-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

.location-card__map {
  width: 100%;
  height: 320px;
  display: block;
  border: none;
}

.location-card__body {
  padding: 32px;
}

.location-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.location-card__accent {
  width: 4px;
  height: 28px;
  background-color: var(--primary-color);
  border-radius: 2px;
  flex-shrink: 0;
}

.location-card__title h3 {
  margin: 0;
}

.location-card__address {
  padding-left: 16px;
  margin-bottom: 20px;
}

.location-card__address strong {
  display: block;
  font-size: 1rem;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.location-card__address p {
  font-size: 0.875rem;
  color: var(--muted-color);
}

.location-card__divider {
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 20px;
}

.location-card__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 16px;
}

.location-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-color);
}

.location-contact-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--bg-dark);
  padding-top: 72px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand img {
  height: 44px;
  margin-bottom: 20px;
}

.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.footer__social-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: rgba(27, 146, 195, 0.08);
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: #ffffff;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer__contact-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__credit {
  flex: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__credit a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer__copy {
  flex: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

.footer__legal {
  flex: 1;
  display: flex;
  gap: 28px;
  justify-content: flex-end;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== ANIMATIONS ===== */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-anim].anim--visible {
  opacity: 1;
  transform: translateY(0);
}

[data-anim="fade"] {
  transform: none;
}

[data-anim-delay="1"] { transition-delay: 0.1s; }
[data-anim-delay="2"] { transition-delay: 0.2s; }
[data-anim-delay="3"] { transition-delay: 0.3s; }
[data-anim-delay="4"] { transition-delay: 0.4s; }

/* ===== SERVICES PAGE ===== */

/* Force dark header on light-hero pages */
body.page-services .site-header {
  background-color: var(--bg-dark);
}
body.page-services .site-header.scrolled {
  background-color: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
}

@media (max-width: 1024px) {
  body.page-services .site-header {
    position: relative; /* important */
  }    
  body.page-services .nav__links {
    background: var(--bg-dark);
    color: #fff;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  body.page-services .nav__links a {
    color: #fff;
  }
  body.page-services .nav__links .nav__lang {
    color: #fff;
  }
  body.page-services .nav__links .nav__cta-link {
    background: #fff;
    color: var(--primary-color);
  }
}

/* ── Services Hero ─────────────────────────────────────── */
.services-hero {
  background: radial-gradient(ellipse at 75% 55%, #bde0f5 0%, #ddf0fa 20%, #f0f9fd 45%, #ffffff 70%);
  padding-top: 180px;
  padding-bottom: 100px;
}

.services-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 740px;
  margin: 0 auto;
}

.services-hero__sub {
  font-size: 1.05rem;
  color: var(--muted-color);
  line-height: 1.75;
  max-width: 560px;
}

/* ── Service Pillars ──────────────────────────────────── */
.svc-pillars {
  background-color: var(--bg-color);
}

.svc-pillar {
  padding-block: var(--section-py);
  border-bottom: 1px solid var(--border-color);
}

.svc-pillar:last-child {
  border-bottom: none;
}

.svc-pillar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.svc-pillar__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 10 / 7;
}

.svc-pillar__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.svc-pillar__image:hover img {
  transform: scale(1.03);
}

.svc-pillar__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background-color: rgba(10, 22, 40, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.svc-pillar__content h2 {
  margin-bottom: 12px;
}

.svc-pillar__lead {
  font-size: 1rem;
  color: var(--muted-color);
  line-height: 1.75;
  margin-bottom: 28px;
}

.svc-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.svc-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
}

.svc-feature__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  color: var(--primary-color);
  flex-shrink: 0;
}

.svc-feature__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.svc-feature__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading-color);
}

.svc-feature__desc {
  font-size: 0.8rem;
  color: var(--muted-color);
  line-height: 1.55;
}

/* ── Core Capability ──────────────────────────────────── */
.cap-section-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 48px;
}

.cap-section-desc {
  font-size: 0.95rem;
  color: var(--muted-color);
  line-height: 1.8;
  padding-top: 10px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cap-card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.cap-card--wide {
  grid-column: span 2;
}

.cap-card--dark {
  background-color: var(--bg-dark);
  border-color: transparent;
}

.cap-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.cap-card__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  color: var(--primary-color);
  flex-shrink: 0;
}

.cap-card--dark .cap-card__icon {
  background-color: rgba(27, 146, 195, 0.15);
}

.cap-card h3 {
  font-size: 1rem;
  margin: 0;
}

.cap-card--dark h3 {
  color: #ffffff;
}

.cap-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cap-card__list--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}

.cap-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-color);
  line-height: 1.4;
}

.cap-card--dark .cap-card__list li {
  color: rgba(255, 255, 255, 0.6);
}

.cap-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
  flex-shrink: 0;
}

/* ── Fleet Visual Strip ────────────────────────────────── */
.fleet-strip-section {
  background-color: var(--bg-dark);
  padding-block: var(--section-py);
}

.fleet-strip__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.fleet-strip__header h2 {
  color: #ffffff;
}

.fleet-strip__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  text-align: right;
}

.fleet-strip__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fleet-strip__card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
}

.fleet-strip__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fleet-strip__card:hover img {
  transform: scale(1.04);
}

.fleet-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.fleet-strip__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: rgba(27, 146, 195, 0.3);
  border: 1px solid rgba(27, 146, 195, 0.5);
  align-self: flex-start;
}

.fleet-strip__card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fleet-strip__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.fleet-strip__card-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Process Cards (How We Work) ─────────────────────── */
.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background-color: var(--bg-color);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.process-card__accent {
  height: 3px;
  background-color: var(--primary-color);
}

.process-card__body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-card__num {
  font-size: 2.75rem;
  font-weight: 800;
  color: rgba(27, 146, 195, 0.18);
  line-height: 1;
  font-family: 'Inter', sans-serif;
  display: block;
}

.process-card h3 {
  font-size: 1rem;
  margin: 0;
}

.process-card p {
  font-size: 0.875rem;
  color: var(--muted-color);
  line-height: 1.65;
}

/* ===== CONTACT PAGE ===== */

.contact-page-hero {
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 96px;
  text-align: center;
}

/* Subtle dot-grid texture — matches about-hero */
.contact-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Blue glow */
.contact-page-hero::after {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(27,146,195,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.contact-page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.contact-page-hero__content .section-label {
  color: var(--primary-color);
  justify-content: center;
}

.contact-page-hero__content .section-label::before,
.contact-page-hero__content .section-label::after {
  background-color: var(--primary-color);
  opacity: 0.5;
}

.contact-page-hero__content h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 16px;
  margin-bottom: 20px;
}

.contact-page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */

/* ── About Hero ─────────────────────────────────────── */
.about-hero {
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid texture */
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.about-hero__body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 180px;
  padding-bottom: 80px;
  text-align: center;
}

.about-hero__content {
  max-width: 680px;
}

.about-hero__content .section-label {
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.about-hero__content .section-label::before,
.about-hero__content .section-label::after {
  background-color: rgba(255, 255, 255, 0.2);
}

.about-hero__content h1 {
  color: #ffffff;
  margin-bottom: 20px;
}

.about-hero__sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

/* Stats strip at the bottom of the hero */
.about-hero__stats {
  position: relative;
  background-color: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-hero__stats-inner {
  display: flex;
  align-items: stretch;
}

.about-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.about-stat:last-child {
  border-right: none;
}

.about-stat__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  white-space: nowrap;
}

.about-stat__label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

/* ── Company Overview ────────────────────────────────── */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.overview__left h2 {
  margin-bottom: 16px;
}

.overview__accent-line {
  width: 48px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  margin-bottom: 36px;
}

.overview__quote {
  border-left: 3px solid var(--primary-color);
  padding-left: 20px;
  margin: 0;
}

.overview__quote p {
  font-size: 1rem;
  font-style: italic;
  color: var(--muted-color);
  line-height: 1.75;
}

.overview__right p + p {
  margin-top: 20px;
}

.overview__image {
  margin-top: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.overview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Key Metrics ──────────────────────────────────────── */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 72px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-card:last-child {
  border-right: none;
}

.metric-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(27, 146, 195, 0.15);
  border-radius: var(--radius-sm);
  color: var(--primary-color);
  margin-bottom: 24px;
}

.metric-card__value {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 12px;
}

.metric-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Pillar Cards ─────────────────────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background-color: var(--bg-color);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.pillar-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.pillar-card__accent {
  height: 3px;
  background-color: var(--primary-color);
}

.pillar-card__body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  color: var(--primary-color);
  flex-shrink: 0;
}

.pillar-card h3 {
  font-size: 1.05rem;
  margin: 0;
}

.pillar-card p {
  font-size: 0.875rem;
  color: var(--muted-color);
  line-height: 1.65;
}

/* ── What We Do ───────────────────────────────────────── */
.whatwedo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.whatwedo__content h2 {
  margin-bottom: 16px;
}

.whatwedo__content .lead {
  font-size: 1rem;
  color: var(--muted-color);
  line-height: 1.75;
  margin-bottom: 32px;
}

.capability-list {
  display: flex;
  flex-direction: column;
}

.capability-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.capability-item:first-child {
  border-top: 1px solid var(--border-color);
}

.capability-item__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.capability-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  flex-shrink: 0;
}

.capability-item__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-color);
}

.capability-item__desc {
  font-size: 0.875rem;
  color: var(--muted-color);
  line-height: 1.65;
  padding-left: 20px;
}

.whatwedo__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.whatwedo__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── About CTA ────────────────────────────────────────── */
.about-cta {
  background: linear-gradient(105deg, #1478a8 0%, var(--primary-color) 50%, #22a8e0 100%);
  padding-block: 100px;
}

.about-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.about-cta .section-label {
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
}

.about-cta .section-label::before,
.about-cta .section-label::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.about-cta h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 2.8vw, 2.6rem);
  font-weight: 800;
  max-width: 640px;
}

.about-cta__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 1.75;
}

.about-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: var(--bg-dark);
  padding-top: 200px;
  padding-bottom: 88px;
  text-align: center;
}

.legal-hero__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.legal-hero h1 {
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 14px;
}

.legal-hero__meta {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 10px;
}

.legal-body {
  padding-top: 100px;
  padding-bottom: 140px;
  background: var(--bg-color);
}

.legal-body .container {
  max-width: 720px;
  padding: 0 40px;
}

.legal-intro {
  font-size: 1.0625rem;
  color: var(--muted-color);
  line-height: 1.75;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section__num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.legal-section__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

.legal-section p {
  margin-bottom: 14px;
  color: var(--text-color);
  line-height: 1.75;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  list-style: disc;
  padding-left: 22px;
  margin: 10px 0 14px;
}

[dir="rtl"] .legal-section ul {
  padding-left: 0;
  padding-right: 22px;
}

.legal-section ul li {
  margin-bottom: 8px;
  color: var(--text-color);
  line-height: 1.7;
}

.legal-section a {
  color: var(--primary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover {
  color: var(--primary-dark);
}

.legal-contact-list {
  list-style: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 12px 0 0 !important;
}

.legal-contact-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px !important;
}

.legal-contact-list li strong {
  color: var(--heading-color);
  min-width: 60px;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  .container { padding: 0 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-choose__top { gap: 48px; }
}

@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .container { padding: 0 40px; }
  .hero__content { width: 60%; padding-inline: 40px; }
  .why-choose__top { grid-template-columns: 1fr; }
  .why-choose__image { aspect-ratio: 16/7; }
  /* ── Bento grid tablet fix ──
     Desktop uses explicit nth-child grid-column/row placements (col 1-3).
     Those must be fully reset here — otherwise card 4 still demands
     grid-column:3 which doesn't exist in a 2-col grid, sending it off-screen. */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;          /* clear the fixed 260px desktop rows   */
  }
  .bento-grid > :nth-child(1),
  .bento-grid > :nth-child(2),
  .bento-grid > :nth-child(3),
  .bento-grid > :nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  /* Image cards: set height via aspect-ratio now that row heights are auto */
  .bento-card--tall {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
  .bento-card--wide { grid-column: span 2; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__text p { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .locations-grid { grid-template-columns: 1fr; }

  /* Services page */
  .svc-pillar__inner { grid-template-columns: 1fr; gap: 48px; }
  .cap-section-header { grid-template-columns: 1fr; gap: 28px; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .cap-card--wide { grid-column: span 2; }
  .fleet-strip__header { grid-template-columns: 1fr; gap: 16px; }
  .fleet-strip__desc { text-align: left; }
  .fleet-strip__cards { grid-template-columns: repeat(2, 1fr); }
  .process-cards { grid-template-columns: repeat(2, 1fr); }

  /* About page */
  .overview-grid { grid-template-columns: 1fr; gap: 48px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 52px 32px; }
  .metric-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .metric-card:nth-last-child(-n+2) { border-bottom: none; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .whatwedo-grid { grid-template-columns: 1fr; gap: 48px; }
  .whatwedo__image { aspect-ratio: 16 / 9; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .container { padding: 0 24px; }
  .nav__links,
  .nav__cta { display: none; }
  .nav__toggle { display: flex; margin-inline-start: auto; }

  /* Full-screen overlay menu */
  .site-header.nav-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background-color: var(--bg-dark);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 999;
  }
  .site-header.nav-open .nav__links a {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
  }
  .site-header.nav-open .nav__links a:hover { color: #ffffff; }

  /* Keep toggle on top of the overlay so it acts as close button */
  .site-header.nav-open .nav__toggle {
    position: relative;
    z-index: 1001;
  }

  /* Animate hamburger → X */
  .site-header.nav-open .nav__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header.nav-open .nav__toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .site-header.nav-open .nav__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Mobile nav CTA button (last menu item) ─────────────────── */
  .site-header.nav-open .nav__links li:last-child {
    margin-top: 12px; /* extra breathing room above the button */
  }
  .site-header.nav-open .nav__links .nav__cta-link {
    display: inline-block;
    background-color: #ffffff;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 48px;
    border-radius: var(--radius-sm);
    /* reset the active-link underline that can appear on contact.html */
    border-bottom: none;
    padding-bottom: 14px;
  }
  .site-header.nav-open .nav__links .nav__cta-link:hover {
    background-color: var(--primary-color);
    color: #ffffff;
  }

  .hero__inner { flex-direction: column; height: auto; }
  .hero__content { width: 100%; padding: 100px 24px 48px; }
  .hero__image { height: 55vw; min-height: 260px; max-height: 420px; flex: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card--wide  { grid-column: auto; }
  /* Wider aspect on mobile — 4/3 would be too tall in a single column */
  .bento-card--tall  { aspect-ratio: 16 / 9; }
  /* Dark cards: give them a minimum height so they don't look too thin */
  .bento-card--dark  { min-height: 160px; }
  /* Tighten the stacked gap between the top content+image and the bento grid */
  .why-choose__top   { gap: 40px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__credit { text-align: center; }
  .footer__legal { justify-content: center; }
  .legal-hero { padding-top: 140px; padding-bottom: 60px; }
  .legal-body { padding-top: 64px; padding-bottom: 80px; }
  .legal-body .container { padding: 0 24px; }
  .trust-bar__inner { flex-wrap: wrap; }
  .trust-stat {
    min-width: 50%;
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(27, 146, 195, 0.15);
    padding: 20px 16px;
  }
  .trust-stat:nth-child(odd) { border-right: 1px solid rgba(27, 146, 195, 0.15); }
  .trust-stat:nth-last-child(-n+2) { border-bottom: none; }

  /* Services page */
  .services-hero { padding-top: 120px; padding-bottom: 72px; }
  .cap-grid { grid-template-columns: 1fr; }
  .cap-card--wide { grid-column: auto; }
  .cap-card__list--cols { grid-template-columns: 1fr; }
  .fleet-strip__cards { grid-template-columns: repeat(2, 1fr); }
  .process-cards { grid-template-columns: repeat(2, 1fr); }

  /* About page */
  .about-hero__body { padding-top: 120px; padding-bottom: 56px; }
  .about-hero__stats-inner { flex-wrap: wrap; }
  .about-stat {
    min-width: 50%;
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 24px;
  }
  .about-stat:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.06); }
  .about-stat:nth-last-child(-n+2) { border-bottom: none; }
  .pillar-grid { grid-template-columns: 1fr; }
  .about-cta { padding-block: 72px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }

  /* Trust stats: stack value above label on very small screens */
  .trust-stat {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    padding: 18px 12px;
  }
  .trust-stat__value { font-size: 1.6rem; }
  .trust-stat__label { max-width: none; font-size: 12px; }

  /* About page */
  .about-stat { flex-direction: column; align-items: flex-start; gap: 4px; }
  .about-stat__value { font-size: 1.6rem; }
  .about-cta__actions { flex-direction: column; width: 100%; }
  .about-cta__actions .btn { width: 100%; justify-content: center; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric-card { padding: 40px 20px; }

  /* Contact page */
  .contact-page-hero { padding-top: 120px; padding-bottom: 64px; }
  .contact-page-hero__content h1 { font-size: 1.75rem; }
}

/* =============================================================
   RTL / ARABIC
   All rules are scoped to [dir="rtl"] so English pages are
   completely unaffected. Almarai is loaded only by Arabic HTML.
   ============================================================= */

/* ── Typography ─────────────────────────────────────────────── */
[dir="rtl"] body {
  font-family: 'Almarai', sans-serif;
}

/* h1–h5 and .btn hard-code font-family: Inter — override for Arabic */
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5 {
  font-family: 'Almarai', sans-serif;
}

[dir="rtl"] .btn {
  font-family: 'Almarai', sans-serif;
}

/* Form inputs inherit from body, but select/input may not in all browsers */
[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea {
  font-family: 'Almarai', sans-serif;
}

/* ── Letter-spacing — harmful for Arabic (breaks connected letters) ── */
[dir="rtl"] .section-label,
[dir="rtl"] .hero__eyebrow,
[dir="rtl"] .bento-badge,
[dir="rtl"] .bento-card__label,
[dir="rtl"] .tag,
[dir="rtl"] .process-step__number {
  letter-spacing: 0;
}

/* ── Hero — asymmetric padding must be mirrored (desktop only) ── */
/* LTR: padding: 120px 60px 80px 120px  (outer edge = left = 120px) */
/* RTL: panel sits on the right, so outer edge is the right side.   */
/* Scoped to min-width:1025px because the responsive breakpoints     */
/* already use logical props or symmetric values — no RTL fix needed */
@media (min-width: 1025px) {
  [dir="rtl"] .hero__content {
    padding: 120px 120px 80px 60px;
  }
}

/* ── Arrows — flip SVG arrows to point left in RTL ─────────── */
[dir="rtl"] .arrow {
  transform: scaleX(-1);
}

/* On hover: scaleX(-1) first flips the X axis, then translateX(4px)
   moves the element 4 px in the flipped local axis = leftward visually */
[dir="rtl"] .btn:hover .arrow {
  transform: scaleX(-1) translateX(4px);
}

[dir="rtl"] .service-card__link .arrow {
  transform: scaleX(-1);
}

/* ── Services page — pillar image badge (physical left → right) ─ */
/* .svc-pillar__badge uses position:absolute; left:16px which does   */
/* not flip automatically. Mirror it for RTL pages.                  */
[dir="rtl"] .svc-pillar__badge {
  left: auto;
  right: 16px;
}

/* ── Fleet strip description — text-align:left set at 1024px ─── */
/* Override so it reads right-aligned on Arabic pages.              */
@media (max-width: 1024px) {
  [dir="rtl"] .fleet-strip__desc {
    text-align: right;
  }
}

/* ── Mobile nav — hamburger toggle stays on the correct side ── */
/* In LTR the toggle is on the right via flex; RTL flex naturally  */
/* pushes it to the left. No change needed — browser handles it.  */

/* =============================================================
   WHATSAPP FLOATING BUTTON
   Shared by all pages (EN + AR). position:fixed is viewport-
   relative so it is not affected by dir="rtl".
   ============================================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;           /* clips the image to the circle */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
  z-index: 998;               /* below mobile nav overlay (999) */
  display: block;
  line-height: 0;             /* removes inline-block descender gap */
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  flex-shrink: 0;
}

.wa-float img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .wa-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

.nav__brand {

  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 1024px) {
  .nav__company-name {
    font-size: 13px;
    max-width: 150px;
  }
  .nav__lang-item {
    order: -1;
  }
}

@media (max-width: 480px) {
  .nav__company-name {
    font-size: 12px;
    max-width: 125px;
  }

}