/* =========================================================================
   BAKHT ALI TRANSPORT — STYLESHEET
   24/7 Towing & Vehicle Recovery, Ajman, UAE

   Contents:
   1.  Design Tokens (CSS Custom Properties)
   2.  Reset / Base
   3.  Typography
   4.  Layout Utilities
   5.  Buttons
   6.  Status Chip (signature dispatch element)
   7.  Header / Navigation
   8.  Hero
   9.  Emergency Action Bar
   10. Trust Indicators
   11. Services
   12. Featured Emergency Split
   13. How It Works
   14. Why Choose Us
   15. Service Area
   16. Fleet
   17. Local Ajman Section
   18. Reviews
   19. FAQ
   20. Final CTA
   21. Contact
   22. Footer
   23. Mobile Bottom Action Bar
   24. Scroll Reveal
   25. Responsive Breakpoints
   26. Reduced Motion / Accessibility
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* Brand colors */
  --bg-primary: #0B0D0F;
  --bg-secondary: #12161A;
  --bg-card: #171C21;
  --text-primary: #FFFFFF;
  --text-secondary: #AEB6BF;
  --accent: #E6392F;
  --accent-hover: #FF4A40;
  --accent-soft: rgba(230, 57, 47, 0.12);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);

  --bg-light: #F5F6F7;
  --bg-light-alt: #ECEEF0;
  --text-dark: #101418;
  --text-dark-secondary: #4B5563;
  --border-light: rgba(16, 20, 24, 0.10);
  --card-light: #FFFFFF;

  /* Status / signature accent (used sparingly for "live / available") */
  --status-live: #34D399;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;

  /* Type scale (fluid) */
  --fs-h1: clamp(2.25rem, 1.7rem + 2.4vw, 3.75rem);
  --fs-h2: clamp(1.75rem, 1.45rem + 1.3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-lead: clamp(1.05rem, 0.98rem + 0.3vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  /* Spacing */
  --section-py: clamp(4rem, 3rem + 4vw, 7.5rem);
  --section-py-sm: clamp(3rem, 2.5rem + 2vw, 5rem);
  --container-max: 1240px;
  --container-pad: clamp(1.25rem, 1rem + 2vw, 2.5rem);
  --gap-lg: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 200ms;
  --dur-base: 320ms;
  --dur-slow: 500ms;

  /* Elevation */
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.28);
  --shadow-card-light: 0 1px 2px rgba(16, 20, 24, 0.06), 0 12px 28px rgba(16, 20, 24, 0.08);
  --shadow-btn: 0 6px 20px rgba(230, 57, 47, 0.35);

  /* Header height (used for scroll offset) */
  --header-h: 84px;
  --header-h-scrolled: 68px;
}

/* -------------------------------------------------------------------------
   2. RESET / BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h-scrolled) + 12px);
}
body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
input, textarea, button { font: inherit; color: inherit; }

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent-hover);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* -------------------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-hover);
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent-hover);
  display: inline-block;
}
.section-light .eyebrow { color: var(--accent); }

h1, .h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h2, .h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h3, .h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.3;
}
.lead {
  font-size: var(--fs-lead);
  color: var(--text-secondary);
  line-height: 1.65;
}
.section-light .lead,
.section-light p { color: var(--text-dark-secondary); }
.section-light h2, .section-light h3, .section-light .h2 { color: var(--text-dark); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 1.6rem + 1.5vw, 3.5rem);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 0.75rem; }
.section-head p { margin-top: 0.9rem; }

/* -------------------------------------------------------------------------
   4. LAYOUT UTILITIES
   ------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section { padding-block: var(--section-py); position: relative; }
.section-sm { padding-block: var(--section-py-sm); }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-secondary { background: var(--bg-secondary); }
.section-darkest { background: #08090A; }

.grid { display: grid; gap: var(--gap-lg); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.divider-route {
  height: 1px;
  background-image: linear-gradient(to right, var(--border-strong) 0 6px, transparent 6px 14px);
  background-size: 14px 1px;
  background-repeat: repeat-x;
}
.section-light .divider-route {
  background-image: linear-gradient(to right, var(--border-light) 0 6px, transparent 6px 14px);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* -------------------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 8px 26px rgba(255, 74, 64, 0.42); }

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text-primary);
}
.btn-outline:hover { border-color: var(--text-primary); background: rgba(255,255,255,0.06); }

.section-light .btn-outline {
  border-color: var(--border-light);
  color: var(--text-dark);
}
.section-light .btn-outline:hover { border-color: var(--text-dark); background: rgba(16,20,24,0.05); }

.btn-dark {
  background: var(--text-dark);
  color: #fff;
}
.btn-dark:hover { background: #000; }

.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--fs-small); font-weight: 600; color: var(--accent-hover);
  transition: gap var(--dur-fast) var(--ease);
}
.section-light .btn-link { color: var(--accent); }
.btn-link:hover { gap: 0.65rem; }
.btn-link svg { width: 16px; height: 16px; }

.btn-group { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* -------------------------------------------------------------------------
   6. STATUS CHIP — signature dispatch-style element
   ------------------------------------------------------------------------- */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.03);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--status-live);
  box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
  animation: pulse-dot 2.2s var(--ease) infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

/* Hazard beacon on the hero illustration's tow truck */
.beacon {
  animation: beacon-pulse 1.1s ease-in-out infinite;
  transform-origin: center;
}
@keyframes beacon-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* -------------------------------------------------------------------------
   7. HEADER / NAVIGATION
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 13, 15, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: height var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
}
.site-header.is-scrolled {
  height: var(--header-h-scrolled);
  background: rgba(11, 13, 15, 0.92);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  flex-shrink: 0;
}
.brand-mark {
  width: 38px; height: 38px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text small {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav { display: flex; }
.main-nav ul { display: flex; align-items: center; gap: clamp(1.1rem, 1vw + 0.5rem, 2rem); }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.3rem 0.1rem;
  transition: color var(--dur-fast) var(--ease);
}
.main-nav a:hover { color: var(--text-primary); }
.main-nav a.is-active { color: var(--text-primary); }
.main-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.header-actions .btn { padding: 0.65rem 1.1rem; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  flex-shrink: 0;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav-panel {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg-primary);
  z-index: 99;
  overflow-y: auto;
  padding: 1.5rem var(--container-pad) 2rem;
}
.mobile-nav-panel.is-open { display: block; }
.mobile-nav-panel ul { display: flex; flex-direction: column; }
.mobile-nav-panel a {
  display: block;
  padding: 1rem 0.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-panel .btn-group { margin-top: 1.5rem; flex-direction: column; }

/* -------------------------------------------------------------------------
   8. HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(3.5rem, 3rem + 3vw, 6rem);
  padding-bottom: clamp(3.5rem, 3rem + 3vw, 6rem);
  overflow: hidden;
  background: radial-gradient(120% 100% at 85% 0%, #1a1112 0%, var(--bg-primary) 55%);
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2rem, 3vw, 4rem);
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-content .status-chip { margin-bottom: 1.5rem; }
.hero-content .eyebrow { margin-bottom: 1rem; }
.hero-content h1 { margin-top: 0.25rem; }
.hero-content .lead { margin-top: 1.25rem; max-width: 46ch; }
.hero-content .btn-group { margin-top: 2rem; }
.hero-reassurance {
  display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.75rem;
  font-size: var(--fs-small);
  color: var(--text-secondary);
}
.hero-reassurance svg { width: 16px; height: 16px; color: var(--status-live); flex-shrink: 0; }

.hero-art { position: relative; z-index: 1; }
.hero-art-frame {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(180deg, #14181D 0%, #0D1013 100%);
  box-shadow: var(--shadow-card);
}
.hero-art-frame svg { width: 100%; height: auto; display: block; }
.hero-art-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* -------------------------------------------------------------------------
   9. EMERGENCY ACTION BAR
   ------------------------------------------------------------------------- */
.emergency-bar {
  background: linear-gradient(90deg, #1a0f0e 0%, var(--bg-secondary) 100%);
  border-block: 1px solid var(--border);
}
.emergency-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.35rem;
  flex-wrap: wrap;
}
.emergency-bar-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}
.emergency-bar-text span {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-secondary);
  margin-top: 0.15rem;
}

/* -------------------------------------------------------------------------
   10. TRUST INDICATORS
   ------------------------------------------------------------------------- */
.trust-grid { grid-template-columns: repeat(4, 1fr); }
.trust-item {
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.trust-item:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.trust-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent-hover);
  margin-bottom: 1rem;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-item h3 { font-size: 1rem; }
.trust-item p { margin-top: 0.4rem; color: var(--text-secondary); font-size: var(--fs-small); }

/* -------------------------------------------------------------------------
   11. SERVICES
   ------------------------------------------------------------------------- */
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  box-shadow: var(--shadow-card-light);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230,57,47,0.35);
  box-shadow: 0 16px 34px rgba(16,20,24,0.12);
}
.service-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: #101418;
  color: var(--accent-hover);
  margin-bottom: 1.1rem;
}
.service-icon svg { width: 23px; height: 23px; }
.service-card h3 { color: var(--text-dark); }
.service-card p { margin-top: 0.5rem; color: var(--text-dark-secondary); font-size: var(--fs-small); flex-grow: 1; }
.service-card .btn-link { margin-top: 1.1rem; }

/* -------------------------------------------------------------------------
   12. FEATURED EMERGENCY SPLIT
   ------------------------------------------------------------------------- */
.featured-split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}
.featured-art {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(160deg, #14181D, #0B0D0F);
}
.featured-art svg { width: 100%; height: auto; display: block; }
.featured-content .lead { margin-top: 1.1rem; }
.featured-content .btn-group { margin-top: 2rem; }

/* -------------------------------------------------------------------------
   13. HOW IT WORKS
   ------------------------------------------------------------------------- */
.process-grid {
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 1rem;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 27px; left: 6%; right: 6%;
  height: 1px;
  background-image: linear-gradient(to right, var(--border-light) 0 8px, transparent 8px 18px);
  background-size: 18px 1px;
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.process-number {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--card-light);
  border: 1px solid var(--border-light);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  box-shadow: var(--shadow-card-light);
  margin-bottom: 1.1rem;
}
.process-step h3 { color: var(--text-dark); font-size: 1.05rem; }
.process-step p { margin-top: 0.45rem; color: var(--text-dark-secondary); font-size: var(--fs-small); }

/* -------------------------------------------------------------------------
   14. WHY CHOOSE US
   ------------------------------------------------------------------------- */
.why-grid { grid-template-columns: repeat(2, 1fr); }
.why-item {
  display: flex;
  gap: 1.1rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.why-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--accent-hover);
}
.why-icon svg { width: 20px; height: 20px; }
.why-item h3 { font-size: 1rem; }
.why-item p { margin-top: 0.35rem; color: var(--text-secondary); font-size: var(--fs-small); }

/* -------------------------------------------------------------------------
   15. SERVICE AREA
   ------------------------------------------------------------------------- */
.areas-grid { grid-template-columns: repeat(5, 1fr); gap: 0.9rem; }
.area-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.1rem;
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.area-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.area-card svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.area-card.is-primary {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
}
.area-card.is-primary svg { color: var(--accent-hover); }

.areas-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1.75rem;
  padding: 1rem 1.15rem;
  background: rgba(230,57,47,0.06);
  border: 1px solid rgba(230,57,47,0.18);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  color: var(--text-dark-secondary);
}
.areas-note svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 0.1rem; }
.areas-footer {
  display: flex; align-items: center; justify-content: center;
  margin-top: 2rem;
}

/* -------------------------------------------------------------------------
   16. FLEET
   ------------------------------------------------------------------------- */
.fleet-grid { grid-template-columns: repeat(3, 1fr); }
.fleet-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
}
.fleet-art {
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #181D22, #0E1114);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.fleet-art svg { width: 46%; height: 46%; color: var(--text-secondary); }
.fleet-art .fleet-tag {
  position: absolute; top: 0.85rem; left: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,0.35);
}
.fleet-body { padding: 1.3rem 1.4rem 1.5rem; }
.fleet-body h3 { font-size: 1rem; }
.fleet-body p { margin-top: 0.4rem; color: var(--text-secondary); font-size: var(--fs-small); }
.fleet-placeholder-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: #7C858E;
  font-style: italic;
}

/* -------------------------------------------------------------------------
   17. LOCAL AJMAN SECTION
   ------------------------------------------------------------------------- */
.local-section .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.local-copy p { margin-top: 1rem; color: var(--text-dark-secondary); }
.local-copy p:first-of-type { margin-top: 1.1rem; }
.local-stats {
  display: flex;
  gap: 1.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.local-stat { }
.local-stat strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--text-dark);
}
.local-stat span {
  font-size: var(--fs-xs);
  color: var(--text-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.local-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #0E1114;
}
.local-art svg { width: 100%; height: auto; display: block; }

/* -------------------------------------------------------------------------
   18. REVIEWS
   ------------------------------------------------------------------------- */
.reviews-grid { grid-template-columns: repeat(3, 1fr); }
.review-card {
  background: var(--bg-card);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.review-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.review-stars svg { width: 16px; height: 16px; color: var(--border-strong); }
.review-quote {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-style: italic;
}
.review-meta {
  display: flex; align-items: center; gap: 0.65rem;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
}
.review-avatar svg { width: 16px; height: 16px; }
.review-meta span { font-size: var(--fs-xs); color: #7C858E; }
.reviews-footer { display: flex; justify-content: center; margin-top: 2.25rem; }

/* -------------------------------------------------------------------------
   19. FAQ
   ------------------------------------------------------------------------- */
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0.25rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.faq-question .chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--dur-base) var(--ease);
}
.faq-question[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--dur-base) var(--ease);
}
.faq-answer p {
  padding: 0 0.25rem 1.4rem;
  color: var(--text-dark-secondary);
  font-size: 0.94rem;
  max-width: 62ch;
}

/* -------------------------------------------------------------------------
   20. FINAL CTA
   ------------------------------------------------------------------------- */
.final-cta {
  text-align: center;
  background:
    radial-gradient(60% 90% at 50% 0%, rgba(230,57,47,0.14) 0%, transparent 60%),
    #08090A;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.final-cta .container { max-width: 720px; }
.final-cta .status-chip { margin-bottom: 1.5rem; }
.final-cta .lead { margin-top: 1rem; max-width: 46ch; margin-inline: auto; }
.final-cta .btn-group { margin-top: 2.25rem; justify-content: center; }
.final-cta-foot {
  margin-top: 1.75rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* -------------------------------------------------------------------------
   21. CONTACT
   ------------------------------------------------------------------------- */
.contact-grid {
  grid-template-columns: repeat(2, 1fr);
}
.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}
.contact-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: #101418;
  color: var(--accent-hover);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-card h3 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dark-secondary); font-weight: 700; }
.contact-card a, .contact-card .value {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}
.contact-card a:hover { color: var(--accent); }
.contact-card .placeholder-tag {
  display: inline-block;
  margin-top: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(230,57,47,0.08);
  border: 1px solid rgba(230,57,47,0.25);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
}
.contact-map {
  margin-top: var(--gap-lg);
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-light);
  background: var(--bg-light-alt);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-dark-secondary);
}
.contact-map svg { width: 32px; height: 32px; color: var(--accent); margin-inline: auto; margin-bottom: 0.75rem; }
.contact-map strong { display: block; color: var(--text-dark); margin-bottom: 0.3rem; }
.contact-map p { font-size: var(--fs-small); max-width: 46ch; margin-inline: auto; }

/* -------------------------------------------------------------------------
   22. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding-top: clamp(3rem, 2.5rem + 2vw, 5rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { color: var(--text-secondary); font-size: var(--fs-small); max-width: 32ch; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.footer-social a:hover { color: var(--text-primary); border-color: var(--border-strong); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.9rem;
  color: #C9CFD6;
  transition: color var(--dur-fast) var(--ease);
}
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: #7C858E;
}
.footer-bottom a { color: #7C858E; }
.footer-bottom a:hover { color: var(--text-primary); }
.footer-bottom-links { display: flex; gap: 1.25rem; }

/* -------------------------------------------------------------------------
   23. MOBILE BOTTOM ACTION BAR
   ------------------------------------------------------------------------- */
.mobile-action-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(11,13,15,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  gap: 0.65rem;
}
.mobile-action-bar a {
  flex: 1;
  justify-content: center;
}

/* -------------------------------------------------------------------------
   24. SCROLL REVEAL
   ------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* -------------------------------------------------------------------------
   25. RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .featured-split .container { grid-template-columns: 1fr; }
  .featured-art { order: -1; }
  .local-section .container { grid-template-columns: 1fr; }
  .local-art { order: -1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; }
  .process-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-top .footer-col:last-child { grid-column: span 1; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-outline { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { padding-bottom: 68px; }
  .mobile-action-bar { display: flex; }
  .emergency-bar .container { justify-content: center; text-align: center; flex-direction: column; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; }
  .hero-content .btn-group .btn { width: 100%; }
}

/* -------------------------------------------------------------------------
   26. REDUCED MOTION / ACCESSIBILITY
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------------------
   FINAL POLISH / RESPONSIVE SAFETY
   ------------------------------------------------------------------------- */
.container, .grid, .grid > *, .site-header .container, .hero .container,
.featured-split .container, .local-section .container, .contact-grid,
.footer-top { min-width: 0; }

body, main, section, header, footer, article, div, p, h1, h2, h3, h4, a, button {
  overflow-wrap: anywhere;
}

img, svg, video, iframe { max-width: 100%; }

.credential-strip {
  background: #0E1216;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.credential-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.credential-inner > div {
  background: #0E1216;
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.credential-inner strong { font-size: .9rem; color: #fff; }
.credential-inner span { font-size: .78rem; color: var(--text-secondary); }

.contact-note { font-size: .78rem; color: var(--text-dark-secondary); }
.legal-name { margin-left: .35rem; color: #8B949E; }

/* Fleet placeholders are deliberately visual, so they can be replaced by
   real client photographs later without changing the layout. */
.fleet-art {
  min-height: 210px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 35%, rgba(230,57,47,.18), transparent 35%),
    linear-gradient(145deg, #20262c, #0d1013 70%);
}
.fleet-art::after {
  content: 'REAL FLEET PHOTO';
  position: absolute;
  left: 1rem;
  bottom: .9rem;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
}
.fleet-art svg { width: 82px; height: 82px; color: #fff; opacity: .9; }
.fleet-tag { z-index: 2; }

@media (max-width: 860px) {
  .credential-inner { grid-template-columns: 1fr; }

  .mobile-nav-panel {
    width: 100%;
    max-width: 100vw;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    overflow-y: hidden !important;
    box-sizing: border-box;
    padding: 1rem var(--container-pad) 1.15rem;
  }
  .mobile-nav-panel nav,
  .mobile-nav-panel ul { width: 100%; max-width: 100%; }
  .mobile-nav-panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .45rem;
  }
  .mobile-nav-panel li { min-width: 0; }
  .mobile-nav-panel a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    padding: .65rem .5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .92rem;
    line-height: 1.15;
    background: rgba(255,255,255,.025);
  }
  .mobile-nav-panel .btn-group {
    width: 100%;
    margin-top: .75rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: .5rem;
  }
  .mobile-nav-panel .btn-group .btn { width: 100%; min-width: 0; }
}

@media (max-width: 560px) {
  .site-header .container { gap: .5rem; }
  .brand { min-width: 0; max-width: calc(100% - 52px); }
  .brand-text { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .header-actions .js-call { display: none; }
  .nav-toggle { width: 42px; height: 42px; }
  .mobile-nav-panel .btn-group { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 380px) {
  .mobile-nav-panel ul { grid-template-columns: 1fr; }
  .mobile-nav-panel a { min-height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot, .beacon { animation: none !important; }
}


/* FINAL MOBILE MENU / SERVICE-AREA POLISH */
@media (max-width: 860px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .mobile-nav-panel {
    top: var(--header-h);
    bottom: 0;
    overflow: hidden !important;
    overscroll-behavior: none;
  }
  .mobile-nav-panel nav { overflow: visible !important; }
  .mobile-nav-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible !important;
  }
  .mobile-nav-panel .btn-group { margin-bottom: 0; }
}
@media (max-width: 380px) {
  .mobile-nav-panel { padding-top: .8rem; }
  .mobile-nav-panel a { font-size: .9rem; padding: .55rem .45rem; }
  .mobile-nav-panel .btn-group .btn { padding: .75rem .7rem; }
}


/* -------------------------------------------------------------------------
   27. SERVICE INQUIRY / WHATSAPP REQUEST FORM
   ------------------------------------------------------------------------- */
.inquiry-layout { max-width: 1040px; margin: 0 auto 2.75rem; }
.inquiry-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-light);
  padding: clamp(1.25rem, 1rem + 1.6vw, 2.2rem);
}
.inquiry-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.25rem;
}
.inquiry-head h3 { margin-top: .35rem; font-size: var(--fs-h3); color: var(--text-dark); }
.inquiry-head p:not(.eyebrow) { margin-top: .45rem; color: var(--text-dark-secondary); max-width: 700px; }
.inquiry-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .45rem .75rem;
  border-radius: var(--radius-pill);
  background: rgba(37, 211, 102, .10);
  color: #167c3f;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.service-inquiry-form fieldset {
  border: 0;
  margin: 0;
  padding: 1.2rem 0 0;
}
.service-inquiry-form fieldset + fieldset { border-top: 1px solid var(--border-light); margin-top: 1.35rem; }
.service-inquiry-form legend {
  padding: 0;
  margin-bottom: .9rem;
  color: var(--text-dark);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.form-field { min-width: 0; }
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  margin-bottom: .42rem;
  color: var(--text-dark);
  font-size: .82rem;
  font-weight: 700;
}
.form-field label span { color: var(--accent); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16,20,24,.16);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-dark);
  padding: .72rem .82rem;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.form-field textarea { min-height: 108px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #8A939D; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230,57,47,.10);
}
.form-field small { display: block; margin-top: .35rem; color: #69737d; font-size: .72rem; line-height: 1.45; }
.form-actions { margin-top: 1.25rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.form-actions .btn { min-height: 52px; }
.form-actions p {
  display: inline-flex;
  align-items: flex-start;
  gap: .4rem;
  color: #69737d;
  font-size: .75rem;
  line-height: 1.45;
  max-width: 390px;
}
.form-actions p svg { width: 15px; height: 15px; flex: 0 0 auto; margin-top: 1px; color: var(--accent); }
.form-message { display: none; margin-top: .8rem; padding: .75rem .9rem; border-radius: var(--radius-sm); font-size: .82rem; font-weight: 600; }
.form-message.is-visible { display: block; }
.form-message.is-error { background: rgba(230,57,47,.08); color: #a5211a; border: 1px solid rgba(230,57,47,.18); }
.form-message.is-success { background: rgba(22,124,63,.08); color: #166534; border: 1px solid rgba(22,124,63,.16); }
.contact-divider { display: flex; align-items: center; gap: 1rem; margin: 0 0 1.5rem; color: var(--text-dark-secondary); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact-divider::before, .contact-divider::after { content: ''; height: 1px; flex: 1; background: var(--border-light); }

@media (max-width: 640px) {
  .inquiry-head { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .btn { width: 100%; }
  .form-actions p { max-width: none; }
}

/* -------------------------------------------------------------------------
   BILINGUAL ENGLISH / ARABIC LANGUAGE SWITCHER
   ------------------------------------------------------------------------- */
.language-toggle,
.mobile-language-toggle {
  appearance: none;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.045);
  color: var(--text-primary);
  border-radius: 999px;
  min-height: 38px;
  padding: .5rem .85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font: 700 .82rem/1 var(--font-body);
  letter-spacing: .01em;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.language-toggle:hover,
.mobile-language-toggle:hover {
  background: rgba(230,57,47,.12);
  border-color: rgba(230,57,47,.55);
}
.language-toggle:focus-visible,
.mobile-language-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.mobile-language-toggle {
  width: 100%;
  margin-bottom: .8rem;
  min-height: 46px;
  font-size: .95rem;
  border-radius: var(--radius-sm);
}

/* Arabic reading direction and typography */
html[dir="rtl"] body {
  direction: rtl;
  font-family: 'Tajawal', var(--font-body), sans-serif;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] p,
html[dir="rtl"] a,
html[dir="rtl"] button,
html[dir="rtl"] label,
html[dir="rtl"] legend,
html[dir="rtl"] select,
html[dir="rtl"] input,
html[dir="rtl"] textarea {
  font-family: 'Tajawal', var(--font-body), sans-serif;
}
html[dir="rtl"] .brand,
html[dir="rtl"] .btn,
html[dir="rtl"] .language-toggle,
html[dir="rtl"] .mobile-language-toggle {
  font-family: 'Tajawal', var(--font-body), sans-serif;
}
html[dir="rtl"] .brand-text { direction: ltr; }
html[dir="rtl"] .js-phone-display,
html[dir="rtl"] .js-call,
html[dir="rtl"] .js-whatsapp,
html[dir="rtl"] .js-email { unicode-bidi: plaintext; }
html[dir="rtl"] .form-field input[type="tel"],
html[dir="rtl"] .form-field input[type="number"],
html[dir="rtl"] .js-phone-display { direction: ltr; text-align: right; }
html[dir="rtl"] .main-nav ul,
html[dir="rtl"] .header-actions { direction: rtl; }
html[dir="rtl"] .main-nav a.is-active::after { left: 0; right: 0; }
html[dir="rtl"] .hero-reassurance svg { margin-left: .4rem; margin-right: 0; }
html[dir="rtl"] .section-head.center { text-align: center; }
html[dir="rtl"] .faq-question { text-align: right; }
html[dir="rtl"] .faq-question svg { margin-right: auto; margin-left: 0; }
html[dir="rtl"] .form-message { text-align: right; }
html[dir="rtl"] .contact-divider span { direction: rtl; }
html[dir="rtl"] .footer-bottom { direction: rtl; }

@media (max-width: 860px) {
  .header-actions { gap: .45rem; }
  .header-actions .language-toggle { display: inline-flex; }
  .mobile-language-toggle { display: block; }
}

@media (min-width: 861px) {
  .mobile-language-toggle { display: none; }
}

@media (max-width: 560px) {
  .language-toggle { min-height: 36px; padding: .45rem .7rem; font-size: .76rem; }
}


/* -------------------------------------------------------------------------
   28. FINAL THEME + MOBILE INQUIRY POLISH
   ------------------------------------------------------------------------- */
/* The header is always dark, so the language switch remains readable in
   both device themes. */
.language-toggle,
.mobile-language-toggle {
  background: #171C21 !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.language-toggle:hover,
.mobile-language-toggle:hover,
.language-toggle:active,
.mobile-language-toggle:active {
  background: var(--accent) !important;
  color: #FFFFFF !important;
  border-color: var(--accent) !important;
}
.language-toggle .language-toggle-label,
.mobile-language-toggle .language-toggle-label { color: inherit !important; }

/* Keep the request form visually connected to the premium light section. */
.inquiry-card {
  position: relative;
  overflow: hidden;
}
.inquiry-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #ff6a61, var(--accent));
}
.service-inquiry-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #69737d 50%), linear-gradient(135deg, #69737d 50%, transparent 50%);
  background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}
.service-inquiry-form input,
.service-inquiry-form select,
.service-inquiry-form textarea {
  font-size: .94rem;
}
.service-inquiry-form input:hover,
.service-inquiry-form select:hover,
.service-inquiry-form textarea:hover {
  border-color: rgba(16,20,24,.28);
}
.service-inquiry-form fieldset {
  min-width: 0;
}
.service-inquiry-form legend {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.service-inquiry-form legend::before {
  content: '';
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}
.form-actions .btn {
  justify-content: center;
}

/* Let the main light portions of the site follow the phone/desktop system
   appearance without changing the dark automotive hero/CTA sections. */
@media (prefers-color-scheme: dark) {
  .section-light {
    background: #101418;
    color: #F7F8F9;
  }
  .section-light .lead,
  .section-light p { color: #B7C0C9; }
  .section-light h2,
  .section-light h3,
  .section-light .h2 { color: #FFFFFF; }
  .section-light .eyebrow { color: #FF6A61; }

  .service-card,
  .contact-card,
  .area-card,
  .inquiry-card {
    background: #171C21;
    border-color: rgba(255,255,255,.10);
    box-shadow: 0 12px 28px rgba(0,0,0,.24);
  }
  .service-card h3,
  .contact-card a,
  .contact-card .value,
  .area-card,
  .faq-question,
  .inquiry-head h3,
  .service-inquiry-form legend,
  .form-field label { color: #FFFFFF; }
  .service-card p,
  .contact-card h3,
  .inquiry-head p:not(.eyebrow),
  .form-actions p,
  .form-field small,
  .faq-answer p { color: #AEB6BF; }

  .faq-item,
  .faq-item:first-child,
  .inquiry-head,
  .service-inquiry-form fieldset + fieldset {
    border-color: rgba(255,255,255,.10);
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    background: #0F1215;
    color: #F7F8F9;
    border-color: rgba(255,255,255,.16);
    color-scheme: dark;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder { color: #7F8993; }
  .service-inquiry-form select {
    background-color: #0F1215;
    background-image: linear-gradient(45deg, transparent 50%, #AEB6BF 50%), linear-gradient(135deg, #AEB6BF 50%, transparent 50%);
  }
  .contact-icon,
  .service-icon { background: #0B0D0F; }
  .area-card.is-primary { background: #F5F6F7; color: #101418; border-color: #F5F6F7; }
  .area-card.is-primary svg { color: var(--accent); }
}

@media (max-width: 640px) {
  .inquiry-layout {
    width: 100%;
    margin-bottom: 1.75rem;
  }
  .inquiry-card {
    width: 100%;
    border-radius: 14px;
    padding: 1.05rem;
  }
  .inquiry-head {
    gap: .8rem;
    padding-bottom: 1rem;
    margin-bottom: .85rem;
  }
  .inquiry-head h3 {
    font-size: 1.25rem;
    line-height: 1.25;
  }
  .inquiry-head p:not(.eyebrow) {
    font-size: .86rem;
    line-height: 1.55;
  }
  .inquiry-badge {
    align-self: flex-start;
    min-height: 32px;
    padding: .4rem .7rem;
  }
  .service-inquiry-form fieldset {
    padding-top: 1rem;
  }
  .service-inquiry-form fieldset + fieldset {
    margin-top: 1rem;
  }
  .service-inquiry-form legend {
    margin-bottom: .75rem;
    font-size: .86rem;
  }
  .form-grid {
    gap: .78rem;
  }
  .form-field label {
    font-size: .78rem;
    margin-bottom: .35rem;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 46px;
    border-radius: 8px;
    padding: .68rem .72rem;
    font-size: .9rem;
  }
  .form-field textarea { min-height: 96px; }
  .service-inquiry-form select {
    background-position: calc(100% - 16px) 20px, calc(100% - 11px) 20px;
  }
  html[dir="rtl"] .service-inquiry-form select {
    padding-right: .72rem;
    padding-left: 2.5rem;
    background-position: 16px 20px, 21px 20px;
  }
  .form-actions {
    gap: .75rem;
    margin-top: 1rem;
  }
  .form-actions .btn {
    min-height: 50px;
    width: 100%;
    font-size: .9rem;
  }
  .form-actions p {
    font-size: .72rem;
  }
}

@media (max-width: 380px) {
  .inquiry-card { padding: .9rem; }
  .inquiry-head h3 { font-size: 1.16rem; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: .86rem; }
}

/* Arabic form direction and controls. */
html[dir="rtl"] .inquiry-head,
html[dir="rtl"] .service-inquiry-form,
html[dir="rtl"] .form-field,
html[dir="rtl"] .form-actions { direction: rtl; }
html[dir="rtl"] .form-field input,
html[dir="rtl"] .form-field select,
html[dir="rtl"] .form-field textarea { text-align: right; }
html[dir="rtl"] .form-actions p { text-align: right; }

/* =====================================================================
   REPLACEABLE PHOTOGRAPHY
   Change only the image filename in index.html, or replace the image
   file in assets/images while keeping the same filename.
   ===================================================================== */
.replaceable-image { display:block; width:100%; height:100%; object-fit:cover; object-position:center; }
.hero-art-frame .hero-tow-image { min-height:520px; border-radius:inherit; }
.fleet-art .fleet-image { width:100%; height:100%; min-height:230px; border-radius:inherit; object-fit:cover; }
.local-art .local-service-image { width:100%; height:auto; min-height:360px; border-radius:inherit; object-fit:cover; }
@media (max-width: 768px) {
  .hero-art-frame .hero-tow-image { min-height:320px; height:320px; }
  .fleet-art .fleet-image { min-height:210px; height:210px; }
  .local-art .local-service-image { min-height:280px; height:280px; }
}


/* =========================================================================
   SOCIAL MEDIA LINKS
   Edit the href values in index.html when the client's real accounts are
   available. These links intentionally use # as safe placeholders.
   ========================================================================= */
.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  color: #AEB6BF;
  background: rgba(255,255,255,.03);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2px;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.footer-social .social-link:hover,
.footer-social .social-link:focus-visible {
  color: #fff;
  border-color: #E6392F;
  background: rgba(230,57,47,.12);
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 768px) {
  .footer-social .social-link {
    min-height: 34px;
    padding: 0 9px;
    font-size: 10px;
  }
}
