/* =========================================================
   Arabia Support — Equipment Rental
   Core stylesheet (shared by Arabic + English versions)
   Uses CSS logical properties so one file serves both
   RTL (default, <html dir="rtl">) and LTR (<html dir="ltr">)
   ========================================================= */

:root {
  --navy-950: #0b1420;
  --navy-900: #0f1c2d;
  --navy-800: #152537;
  --navy-700: #1d3348;
  --navy-600: #2a4a63;
  --steel-300: #9fb3c4;
  --steel-100: #e7edf2;
  --amber-500: #e09354;
  --amber-400: #ea8b3e;
  --amber-600: #eb8634;
  --white: #ffffff;
  --ink: #12202f;
  --gray-600: #5b6b7a;
  --gray-200: #e4e9ee;
  --gray-100: #f4f6f8;
  --success: #1f9d55;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(15, 28, 45, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 28, 45, 0.12);
  --shadow-lg: 0 20px 60px rgba(15, 28, 45, 0.18);
  --container: 1220px;
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
.page-shell {
  width: 100%;
}
body {
  margin: 0;
  width: 100%;
  background: var(--white);
  color: var(--ink);
  font-family: "Cairo", "Poppins", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.page-shell[dir="ltr"] {
  font-family: "Poppins", "Cairo", Arial, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-600);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--amber-500);
  display: inline-block;
}
.section {
  padding: 88px 0;
}
.section--tight {
  padding: 60px 0;
}
.section-head {
  max-width: 680px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
h2.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.3;
}
.section-sub {
  margin-top: 14px;
  color: var(--gray-600);
  font-size: 1.05rem;
}
.bg-tint {
  background: var(--gray-100);
}
.bg-navy {
  background: var(--navy-900);
  color: var(--steel-100);
}
.bg-navy .section-title {
  color: var(--white);
}
.bg-navy .section-sub {
  color: var(--steel-300);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(242, 150, 15, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(242, 150, 15, 0.45);
}
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn-dark {
  background: var(--navy-900);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-800);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(242, 150, 15, 0.12);
  color: var(--amber-600);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-950);
  color: var(--steel-300);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 9px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar-links a:hover {
  color: var(--amber-400);
}
.topbar-lang a {
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
}
.topbar-lang a.is-active {
  background: var(--amber-500);
  color: var(--navy-950);
}
.icon-sm {
  width: 14px;
  height: 14px;
  flex: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 20, 32, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand-mark {
  width: auto;
  height: 75px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-text {
  color: var(--white);
  line-height: 1.15;
}
.brand-text strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.brand-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--steel-300);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 170px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  color: var(--steel-100);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--amber-400);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-cta .btn {
  padding: 11px 22px;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  align-items: center;
  justify-content: center;
  flex: none;
}
.nav-toggle svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(
      1100px 500px at 15% -10%,
      rgba(242, 150, 15, 0.18),
      transparent 60%
    ),
    linear-gradient(
      160deg,
      var(--navy-950) 0%,
      var(--navy-900) 55%,
      var(--navy-700) 100%
    );
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    rgba(0, 0, 0, 0.9) 40%,
    transparent 95%
  );
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-block: 96px 70px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.22;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber-400);
}
.hero-lead {
  margin-top: 20px;
  font-size: 1.12rem;
  color: var(--steel-300);
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat span {
  font-size: 0.85rem;
  color: var(--steel-300);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy-800), var(--navy-700));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.hero-visual svg {
  width: 72%;
  height: 72%;
}
.hero-badge-float {
  position: absolute;
  bottom: -20px;
  inset-inline-start: -20px;
  background: var(--white);
  color: var(--navy-900);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
}
.hero-badge-float .dot {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.hero-badge-float .dot svg {
  width: 24px;
  height: 24px;
  color: var(--amber-600);
}
.hero-badge-float strong {
  display: block;
  font-size: 0.95rem;
}
.hero-badge-float span {
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding-block: 26px;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-600);
  font-weight: 700;
  font-size: 0.92rem;
}
.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--amber-600);
  flex: none;
}

/* ---------- Category / equipment cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cards-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.cards-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.eq-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.eq-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.eq-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff3e0, #ffe3b8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.eq-icon svg {
  width: 30px;
  height: 30px;
  color: var(--amber-600);
}
.eq-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 10px;
}
.eq-card p {
  color: var(--gray-600);
  font-size: 0.96rem;
  flex: 1;
}
.eq-card .eq-more {
  margin-top: 18px;
  font-weight: 700;
  color: var(--amber-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
}
.eq-card .eq-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.page-shell[dir="rtl"] .eq-card .eq-more svg {
  transform: scaleX(-1);
}
.eq-card:hover .eq-more svg {
  transform: translateX(4px);
}
.page-shell[dir="rtl"] .eq-card:hover .eq-more svg {
  transform: scaleX(-1) translateX(4px);
}

/* ---------- Image placeholder block ---------- */
.img-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-300);
  border: 1px dashed rgba(255, 255, 255, 0.25);
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05) 0 2px,
    transparent 2px 14px
  );
}
.img-placeholder .ph-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
}
.img-placeholder svg {
  width: 40px;
  height: 40px;
  margin-inline: auto;
  margin-bottom: 10px;
  color: var(--amber-400);
}
.img-placeholder span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.img-placeholder.ratio-16-9 {
  aspect-ratio: 16/9;
  min-height: 0;
}
.img-placeholder.ratio-1-1 {
  aspect-ratio: 1/1;
  min-height: 0;
}
.img-placeholder.ratio-4-3 {
  aspect-ratio: 4/3;
  min-height: 0;
}

/* ---------- Split section (about, services detail) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gray-600);
  font-size: 1rem;
}
.check-list li svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--success);
  margin-top: 2px;
}

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--navy-900);
  padding: 56px 0;
}
.stats-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--amber-400);
}
.stat span {
  color: var(--steel-300);
  font-size: 0.92rem;
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  padding-inline-start: 0;
}
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--amber-400);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step h4 {
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.step p {
  color: var(--gray-600);
  font-size: 0.94rem;
}

/* ---------- Client logos ---------- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.logo-slot {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  padding: 10px;
}

.logo-slot img {
  width: auto;
  height: 100%;
}

/* ---------- Testimonial / CTA ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  flex-wrap: wrap;
}
.cta-band h3 {
  font-size: 1.6rem;
  font-weight: 800;
  max-width: 480px;
}
.cta-band p {
  color: var(--steel-300);
  margin-top: 10px;
}

/* ---------- Breadcrumb / page header ---------- */
.page-header {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-700));
  color: var(--white);
  padding: 56px 0 46px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--steel-300);
  margin-bottom: 16px;
}
.breadcrumb a:hover {
  color: var(--amber-400);
}
.page-header h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
}
.page-header p {
  color: var(--steel-300);
  margin-top: 12px;
  max-width: 640px;
}

/* ---------- Specs table ---------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.spec-table th,
.spec-table td {
  padding: 14px 18px;
  text-align: start;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.94rem;
}
.spec-table th {
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
}
.spec-table tr:last-child td {
  border-bottom: none;
}
.spec-table tr:nth-child(even) {
  background: var(--gray-100);
}

/* ---------- Fleet list (per-category page) ---------- */
.fleet-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fleet-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.fleet-row h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.fleet-row p {
  color: var(--gray-600);
  font-size: 0.94rem;
}
.fleet-tags {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.fleet-tags span {
  background: var(--gray-100);
  color: var(--navy-800);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy-900);
  list-style: none;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--amber-600);
  flex: none;
  margin-inline-start: 14px;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-item p {
  margin-top: 14px;
  color: var(--gray-600);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.contact-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 22px;
}
.contact-line {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-line .dot {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(242, 150, 15, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.contact-line .dot svg {
  width: 20px;
  height: 20px;
  color: var(--amber-400);
}
.contact-line strong {
  display: block;
  font-size: 0.98rem;
}
.contact-line span,
.contact-line a {
  color: var(--steel-300);
  font-size: 0.92rem;
}
.contact-line a:hover {
  color: var(--amber-400);
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  height: 230px;
  margin-top: 24px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--navy-900);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  background: var(--gray-100);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber-500);
  background: var(--white);
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-top: 10px;
}
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  display: none;
}
.form-status.show {
  display: block;
}
.form-status.ok {
  background: #e7f7ee;
  color: var(--success);
}
.form-status.err {
  background: #fdecec;
  color: #c0392b;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-700);
  color: var(--steel-300);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h5 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
  font-size: 0.98rem;
}
.footer-col li {
  margin-bottom: 12px;
  font-size: 0.92rem;
}
.footer-col a:hover {
  color: var(--amber-400);
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-row a:hover {
  background: var(--amber-500);
  color: var(--navy-950);
}
.social-row svg {
  width: 17px;
  height: 17px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 22px;
  font-size: 0.84rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover {
  color: var(--amber-400);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  inset-inline-end: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 90;
  animation: float-pulse 2.6s ease-in-out infinite;
}
.wa-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}
@keyframes float-pulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-band .container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .main-nav,
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 56px 40px;
  }
  .hero-visual {
    max-width: 340px;
    margin-inline: auto;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .fleet-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .cards-grid,
  .cards-grid.cols-3,
  .cards-grid.cols-2 {
    grid-template-columns: 1fr;
  }
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 60px 0;
  }
  .cta-band {
    padding: 36px 26px;
  }
  .topbar-links > span {
    display: none;
  }
  .topbar .container {
    justify-content: center;
    text-align: center;
  }
  .topbar-links {
    justify-content: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .hero-stat strong {
    font-size: 1.4rem;
  }
}

@media (min-width: 640px) {
  .brand-text span {
    max-width: 200px;
  }
}

/* Overflow safety net: text-bearing flex/grid children must be able to
   shrink and wrap instead of forcing their parent row wider than the
   viewport (the default flex/grid min-width is `auto`, i.e. max-content). */
.topbar-links,
.topbar-links a,
.hero-actions,
.header-cta,
.contact-line,
.fleet-row > div,
.cards-grid > *,
.steps > * {
  min-width: 0;
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy-950);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.page-shell[dir="rtl"] .mobile-nav {
  transform: translateX(-100%);
}
.mobile-nav.is-open {
  transform: translateX(0);
}
[dir="rtl"] .mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.mobile-nav a {
  display: block;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav a.is-active {
  color: var(--amber-400);
}
.mobile-nav .btn {
  margin-top: 24px;
}
