/* ==========================================================================
   AUTO EMPIRE — PURE BLACK & WHITE NEUMORPHIC DESIGN SYSTEM
   Theme: Minimalist Monochrome (Black, White, Slate & Architectural Titanium)
   Palette: 100% Black & White (No Blue, No Gold)
   Typography: Alexandria & Cairo (Arabic) + Plus Jakarta Sans (Technical Latin)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&family=Cairo:wght@400;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Monochromatic Base Canvas & Surfaces */
  --bg-canvas: #f0f3f6;
  --bg-surface: #f0f3f6;
  --bg-surface-elevated: #ffffff;
  --bg-surface-inset: #e8ecf1;
  
  /* Pure Black & Slate Tokens */
  --color-black: #0b0f19;
  --color-black-hover: #1e293b;
  --color-dark-slate: #1e293b;
  --color-charcoal: #334155;
  --color-white: #ffffff;
  
  /* Text Contrasts */
  --text-primary: #0b0f19;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --text-white: #ffffff;

  /* Signature accent: vivid inspection red (no gold tones) */
  --champagne: #e0444c;
  
  /* Neumorphic Shadows (Light Source: Top-Left) */
  --neu-flat: 8px 8px 18px #d1d9e6, -8px -8px 18px #ffffff;
  --neu-flat-sm: 4px 4px 10px #d1d9e6, -4px -4px 10px #ffffff;
  --neu-hover: 12px 12px 24px #c2cde0, -12px -12px 24px #ffffff;
  --neu-pressed: inset 4px 4px 8px #d1d9e6, inset -4px -4px 8px #ffffff;
  --neu-pressed-sm: inset 2px 2px 5px #d1d9e6, inset -2px -2px 5px #ffffff;
  --neu-button-black: 6px 6px 16px rgba(11, 15, 25, 0.25), -6px -6px 16px #ffffff;
  --neu-button-black-hover: 8px 8px 22px rgba(11, 15, 25, 0.35), -8px -8px 22px #ffffff;
  
  /* Tactile Borders */
  --border-neu: 1px solid rgba(255, 255, 255, 0.9);
  --border-subtle: 1px solid #e2e8f0;
  --border-dark: 2px solid #0b0f19;
  
  /* Typography */
  --font-arabic: 'Alexandria', 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cairo', 'Alexandria', sans-serif;
  --font-latin: 'Plus Jakarta Sans', sans-serif;
  
  /* Radii */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  font-family: var(--font-arabic);
  font-size: 15px;
  line-height: 1.75;
  text-align: right;
  direction: rtl;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--color-black);
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--color-black);
  outline-offset: 4px;
}

/* Text Highlights */
.dark-highlight {
  color: var(--color-black);
  font-weight: 800;
}

.text-strong {
  font-weight: 700;
  color: var(--text-primary);
}

/* Header Navigation */
.site-header {
  position: fixed;
  top: 14px;
  right: clamp(16px, 4vw, 60px);
  left: clamp(16px, 4vw, 60px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: var(--bg-surface);
  border-radius: var(--radius-full);
  box-shadow: var(--neu-flat);
  border: var(--border-neu);
  transition: all 0.35s ease;
}

.site-header.scrolled {
  top: 8px;
  box-shadow: var(--neu-hover);
  background: rgba(240, 243, 246, 0.98);
  backdrop-filter: blur(12px);
}

/* Brand & Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-badge {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  padding: 2px;
  background: var(--bg-surface);
  box-shadow: var(--neu-flat-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
}

.brand:hover .logo-badge {
  box-shadow: var(--neu-pressed-sm);
  transform: scale(0.97);
}

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

.brand-title {
  font-family: var(--font-latin);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-black);
  line-height: 1.15;
}

.brand-subtitle {
  font-family: var(--font-arabic);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 26px);
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 7px 15px;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: var(--color-black);
  box-shadow: var(--neu-pressed-sm);
}


.nav-cta-mobile {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a.active {
  color: var(--color-black);
  box-shadow: var(--neu-pressed-sm);
  font-weight: 800;
}

/* Buttons */
.btn-neu-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--color-black);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  box-shadow: var(--neu-button-black);
  transition: all 0.25s ease;
}

.btn-neu-black:hover {
  background: var(--color-black-hover);
  box-shadow: var(--neu-button-black-hover);
  transform: translateY(-2px);
}

.btn-neu-black:active {
  transform: translateY(1px);
  box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.btn-neu-black span {
  font-family: var(--font-latin);
  font-size: 14px;
  direction: ltr;
}

.btn-neu-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--color-black);
  font-size: 13.5px;
  font-weight: 700;
  border: var(--border-neu);
  box-shadow: var(--neu-flat);
  transition: all 0.25s ease;
}

.btn-neu-soft:hover {
  color: var(--color-black);
  box-shadow: var(--neu-hover);
  transform: translateY(-2px);
}

.btn-neu-soft:active {
  box-shadow: var(--neu-pressed);
  transform: translateY(1px);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: var(--border-neu);
  box-shadow: var(--neu-flat-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ==========================================================================
   HERO SECTION (BALANCED FONT SIZE & IMMEDIATE VISIBILITY)
   ========================================================================== */
.hero-neu {
  position: relative;
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  padding: 120px clamp(16px, 5vw, 80px) 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 580px;
}

.status-pill-neu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  box-shadow: var(--neu-flat-sm);
  border: var(--border-neu);
  margin-bottom: 20px;
}

.dot-dark {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 0 3px rgba(224, 68, 76, 0.18);
}

.status-pill-neu span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Refined, Elegant, Non-Bulky Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.1vw, 42px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-black);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats-neu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  box-shadow: var(--neu-flat);
  border: var(--border-neu);
}

.neu-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.neu-stat-item strong {
  font-family: var(--font-latin);
  font-size: 20px;
  font-weight: 900;
  color: var(--color-black);
  line-height: 1.1;
  direction: ltr;
  display: inline-block;
}

.neu-stat-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Hero Media Frame - Always 100% visible */
.hero-media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 10px;
  background: var(--bg-surface);
  box-shadow: var(--neu-flat);
  border: var(--border-neu);
  width: 100%;
}

.hero-media-inner {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 440px;
  background: #e2e8f0;
}

.hero-media-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-floating-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-tag-badge {
  background: var(--color-black);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--radius-full);
}

.floating-tag-text h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-black);
}

.floating-tag-text p {
  font-size: 11px;
  color: var(--text-muted);
}

/* ==========================================================================
   MARQUEE CITIES STRIP
   ========================================================================== */
.marquee-neu {
  padding: 16px 0;
  background: var(--bg-surface);
  box-shadow: var(--neu-pressed-sm);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  animation: marqueeMove 35s linear infinite;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-black);
}

.marquee-bullet {
  color: var(--champagne);
  font-size: 13px;
}

@keyframes marqueeMove {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .whatsapp-float-neu { animation: none; }
}

/* ==========================================================================
   VISUAL INSPECTION GALLERY (FULL RICH PHOTO SHOWCASE)
   ========================================================================== */
.gallery-grid-neu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.gallery-card-neu {
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: var(--neu-flat);
  border: var(--border-neu);
  padding: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

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

.gallery-card-image {
  position: relative;
  width: 100%;
  height: 230px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--neu-pressed-sm);
  background: #e2e8f0;
}

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

.gallery-card-neu:hover .gallery-card-image img {
  transform: scale(1.05);
}

.gallery-card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 15, 25, 0.9);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}

.gallery-card-meta {
  padding: 14px 6px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery-card-meta h4 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--color-black);
}

.gallery-card-meta p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SHARED SECTIONS & CARDS
   ========================================================================== */
.section-wrapper {
  padding: clamp(60px, 7vw, 95px) clamp(16px, 5vw, 80px);
}

.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 42px;
}

.kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  box-shadow: var(--neu-flat-sm);
  color: var(--color-black);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  color: var(--color-black);
  line-height: 1.35;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: clamp(14px, 1.2vw, 15.5px);
  color: var(--text-muted);
  line-height: 1.75;
}

/* Services Grid */
.services-grid-neu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}

.neu-card {
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: var(--neu-flat);
  border: var(--border-neu);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--neu-pressed-sm);
  background: #e2e8f0;
}

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

.neu-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-num {
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 800;
  color: var(--color-black);
  background: var(--bg-surface);
  box-shadow: var(--neu-pressed-sm);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  direction: ltr;
}

.card-icon-inset {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  box-shadow: var(--neu-pressed-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  font-size: 18px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.neu-card:hover .card-icon-inset {
  color: #ffffff;
  background: var(--color-black);
  box-shadow: 0 4px 12px rgba(11, 15, 25, 0.3);
}

.card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 10px;
  line-height: 1.35;
}

.card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-top: 14px;
  border-top: var(--border-subtle);
}

.card-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 600;
}

.card-checklist li::before {
  content: '✓';
  color: var(--color-black);
  font-weight: 900;
  font-size: 11px;
}

.card-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--color-black);
  margin-top: auto;
}

.card-action-link span {
  font-family: var(--font-latin);
  font-size: 15px;
  transition: transform 0.25s ease;
  direction: ltr;
}

.neu-card:hover .card-action-link span {
  transform: translateX(-4px);
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
}

.step-card-neu {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  box-shadow: var(--neu-flat);
  border: var(--border-neu);
  margin-bottom: 14px;
  transition: all 0.25s ease;
}

.step-card-neu:hover {
  box-shadow: var(--neu-hover);
  transform: translateX(-4px);
}

.step-icon-badge {
  font-family: var(--font-latin);
  font-size: 14.5px;
  font-weight: 800;
  color: var(--color-black);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  box-shadow: var(--neu-pressed-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-details h3 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 3px;
}

.step-details p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Packages Matrix */
.packages-grid-neu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.package-card-neu {
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: var(--neu-flat);
  border: var(--border-neu);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.package-card-neu.featured {
  background: var(--bg-surface-elevated);
  box-shadow: var(--neu-hover);
  border: 2px solid var(--color-black);
  transform: scale(1.02);
}

.package-head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: var(--border-subtle);
}

.package-tag {
  font-family: var(--font-latin);
  font-size: 11px;
  font-weight: 900;
  color: var(--color-black);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  direction: ltr;
}

.package-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--color-black);
  margin-bottom: 4px;
}

.package-sub {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.package-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.package-items li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 500;
}

.package-items li i {
  color: var(--color-black);
  font-style: normal;
  font-weight: 900;
  font-size: 13px;
  margin-top: 1px;
}

/* Booking Form */
.booking-container-neu {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 50px);
  align-items: start;
}

.neu-form-card {
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: var(--neu-flat);
  border: var(--border-neu);
  padding: clamp(22px, 3.5vw, 36px);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-black);
}

.neu-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-surface-inset);
  box-shadow: var(--neu-pressed-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--color-black);
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.neu-input:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--color-black);
  box-shadow: 0 0 0 3px rgba(11, 15, 25, 0.15);
}

.neu-input::placeholder {
  color: var(--text-dim);
}

textarea.neu-input {
  resize: vertical;
  min-height: 85px;
}

.neu-file-box {
  border-radius: var(--radius-md);
  background: var(--bg-surface-inset);
  box-shadow: var(--neu-pressed-sm);
  padding: 12px;
}

.neu-file-box input[type="file"] {
  width: 100%;
  color: var(--text-muted);
  font-size: 12px;
  cursor: pointer;
}

.neu-file-box input[type="file"]::file-selector-button {
  border: none;
  border-radius: var(--radius-full);
  background: var(--color-black);
  color: #ffffff;
  padding: 5px 12px;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  margin-left: 10px;
  box-shadow: 0 2px 6px rgba(11, 15, 25, 0.25);
  transition: all 0.2s ease;
}

.form-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: var(--border-subtle);
}

.form-subtext {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-alert-success {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: #f1f5f9;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.form-alert-success.show {
  display: block;
}

/* Reviews & Testimonials */
.reviews-grid-neu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.review-card-neu {
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: var(--neu-flat);
  border: var(--border-neu);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.review-vehicle-img {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--neu-pressed-sm);
  margin-bottom: 14px;
  position: relative;
  background: #e2e8f0;
}

.review-vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.review-card-neu:hover .review-vehicle-img img {
  transform: scale(1.05);
}

.review-vehicle-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(11, 15, 25, 0.85);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.stars-row {
  color: var(--color-black);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
  flex-grow: 1;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: var(--border-subtle);
}

.author-avatar-neu {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-surface);
  box-shadow: var(--neu-pressed-sm);
  color: var(--color-black);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.author-meta h4 {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 2px;
}

.author-meta span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Contact VIP Cards */
.contact-grid-neu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.contact-card-neu {
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: var(--neu-flat);
  border: var(--border-neu);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}

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

.contact-phone-btn {
  font-family: var(--font-latin);
  font-size: 18px;
  font-weight: 900;
  color: var(--color-black);
  direction: ltr;
  text-align: right;
  display: inline-block;
  margin-top: 4px;
}

/* Footer */
.site-footer-neu {
  background: #edf2f7;
  border-top: 1px solid #dce4ec;
  padding: 36px clamp(16px, 5vw, 80px) 28px;
  box-shadow: none;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dce4ec;
  flex-wrap: wrap;
}

.footer-top .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-top .logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.footer-top .logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-top .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.footer-top .brand-title {
  font-family: var(--font-display, inherit);
  font-weight: 900;
  font-size: 15px;
  color: #0f1418;
  letter-spacing: 0.02em;
}

.footer-top .brand-subtitle {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 500;
  margin-top: 2px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: #1a202c;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #000;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  font-size: 12px;
  color: #64748b;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-socials a {
  color: #1a202c;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.footer-socials a:hover {
  color: #000;
}

.back-to-top-neu {
  color: #0f1418;
  font-weight: 800;
  font-size: 12.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.back-to-top-neu:hover {
  color: #000;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-links {
    gap: 12px 18px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-socials {
    flex-wrap: wrap;
    gap: 14px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float-neu {
  position: fixed;
  z-index: 900;
  bottom: 22px;
  right: 22px;
  min-width: 132px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: var(--radius-full);
  background: #25d366;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.28);
  color: #ffffff;
  border: 0;
  transition: all 0.25s ease;
  animation: whatsappFloatPulse 2.2s ease-in-out infinite;
}

.whatsapp-float-neu::after {
  content: "واتساب";
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.whatsapp-circle-icon {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.whatsapp-circle-icon svg {
  width: 31px;
  height: 31px;
}

.whatsapp-float-neu:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.38);
  background: #1fbd59;
  color: #ffffff;
}

.whatsapp-float-neu:hover .whatsapp-circle-icon {
  background: transparent;
  color: #ffffff;
}

@keyframes whatsappFloatPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.28), 0 0 0 0 rgba(37, 211, 102, 0.28); }
  50% { transform: scale(1.08); box-shadow: 0 14px 30px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.04); }
}

/* Inner Hero */
.inner-hero-neu {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: 120px clamp(16px, 5vw, 80px) 56px;
}

.inner-hero-neu > .section-head { grid-column: 1; grid-row: 1; }

.inner-hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  height: clamp(260px, 34vw, 430px);
  overflow: hidden;
  border-radius: 26px;
  background: #11161b;
  box-shadow: 0 24px 60px rgba(11, 15, 25, 0.18);
  transform: rotate(-1.5deg);
}

.inner-hero-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 18px;
  pointer-events: none;
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}
}

/* Reveal Motion: 100% visible by default, subtle transition */
.reveal {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .split-layout,
  .booking-container-neu,
  .contact-grid-neu {
    grid-template-columns: 1fr;
  }
  .hero-media-inner {
    height: 340px;
  }
  .packages-grid-neu,
  .reviews-grid-neu {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .package-card-neu.featured {
    transform: none;
  }
  .inner-hero-neu { grid-template-columns: 1fr; gap: 30px; }
  .inner-hero-neu > .section-head, .inner-hero-media { grid-column: 1; grid-row: auto; }
  .inner-hero-media { width: min(100%, 680px); margin-right: auto; }
}

@media (max-width: 860px) {
  .site-header {
    right: 12px;
    left: 12px;
    padding: 8px 16px;
  }
  
  .header-actions .header-cta-desktop,
  .site-header .btn-neu-black.header-cta-desktop {
    display: none !important;
  }

  .header-booking-cta {
    display: none !important;
  }

  .nav-cta-mobile {
    display: inline-flex !important;
    width: 100%;
    margin-top: 8px;
    padding: 12px 18px;
    border-radius: 14px;
    justify-content: center;
    font-weight: 800;
    box-shadow: var(--neu-button-black);
  }

  .menu-toggle {
    display: flex;
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--bg-surface);
    border: var(--border-neu);
    box-shadow: var(--neu-flat-sm);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
    z-index: 102;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    background: var(--color-black);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
  }

  /* Animated Hamburger to 'X' */
  .menu-toggle.open,
  .menu-toggle[aria-expanded="true"] {
    box-shadow: var(--neu-pressed-sm);
    background: #e6ebf0;
  }

  .menu-toggle.open span:nth-child(1),
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2),
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .menu-toggle.open span:nth-child(3),
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Dropdown Menu matching Desktop */
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(240, 243, 246, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(18, 26, 36, 0.14), -6px -6px 16px #ffffff, var(--neu-flat);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 14px 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    pointer-events: none;
    z-index: 101;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 12px 18px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: 14px;
    text-align: right;
    transition: all 0.2s ease;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--color-black);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--neu-flat-sm);
    transform: translateX(-2px);
  }

  .nav-links a.active {
    color: var(--color-black);
    background: #e2e8f0;
    box-shadow: var(--neu-pressed-sm);
    font-weight: 800;
  }

  .nav-cta-mobile {
    display: block;
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-cta-mobile .btn-neu-black {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  }

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

@media (max-width: 540px) {
  .hero-title {
    font-size: 26px;
  }
  .hero-stats-neu {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
  }
  .whatsapp-float-neu {
    bottom: 16px;
    right: 16px;
    min-width: 118px;
    height: 46px;
    padding: 0 14px;
  }
}

/* Commercial registration trust surfaces */
.home-registry { padding-top: 54px; padding-bottom: 54px; background: #eef1f4; }
.registry-trust-card { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; min-height: 350px; overflow: hidden; border: 1px solid #d8dee4; border-radius: 26px; background: #f8fafb; box-shadow: var(--neu-flat); }
.registry-trust-copy { padding: clamp(30px,6vw,72px); color: var(--color-black); }
.registry-trust-copy h2 { margin: 18px 0 16px; font-size: clamp(28px,3vw,44px); line-height: 1.22; letter-spacing: -.025em; }
.registry-trust-copy h2 span { color: var(--text-muted); }
.registry-trust-copy p { max-width: 600px; margin: 0 0 24px; color: var(--text-secondary); line-height: 1.9; }
.registry-trust-copy p b { color: var(--color-black); font-family: var(--font-latin); }
.registry-trust-copy .btn-neu-soft { background: #e8ecf1; color: var(--color-black); }
.registry-trust-preview { align-self: stretch; min-height: 350px; padding: 30px; background: linear-gradient(140deg,#dfe4e9,#f8fafb); display: grid; place-items: center; }
.registry-trust-preview img { width: 100%; max-height: 300px; object-fit: contain; border-radius: 12px; box-shadow: 0 18px 45px rgba(7,16,24,.16); transition: transform .35s ease; }
.registry-trust-preview:hover img { transform: translateY(-6px) rotate(-1deg); }
.registry-status { display: inline-flex; align-items: center; gap: 9px; width: fit-content; padding: 8px 13px; border-radius: 99px; background: #ddf7e9; color: #0e613c; font-size: 12px; font-weight: 800; }
.registry-status i { width: 8px; height: 8px; border-radius: 50%; background: #20c775; box-shadow: 0 0 0 5px rgba(32,199,117,.14); }

.registry-hero { min-height: 450px; background: linear-gradient(135deg,#eef1f4,#fff); }
.registry-showcase { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px,7vw,100px); align-items: center; }
.registry-document { padding: 14px; border: 1px solid #d8dee4; border-radius: 22px; background: #fff; box-shadow: 0 24px 70px rgba(8,16,22,.12); }
.registry-document img { display: block; width: 100%; border-radius: 12px; }
.registry-details .registry-status { margin-bottom: 20px; color: #0e613c; background: #ddf7e9; }
.registry-data { margin: 24px 0 30px; border-top: 1px solid #d8dee4; }
.registry-data > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid #d8dee4; }
.registry-data dt { color: var(--text-muted); font-size: 13px; }
.registry-data dd { margin: 0; color: var(--color-black); font-size: 14px; font-weight: 800; }
.registry-viewer-section { padding-top: 48px; background: #e8ecf1; }

@media (max-width: 900px) {
  .registry-trust-card, .registry-showcase { grid-template-columns: 1fr; }
  .registry-trust-preview { min-height: 280px; }
  .registry-trust-preview img { max-height: 240px; }
}

@media (max-width: 540px) {
  .registry-trust-card { border-radius: 20px; }
  .registry-trust-copy { padding: 28px 22px; }
  .registry-trust-copy h2 { font-size: 29px; line-height: 1.28; }
  .registry-trust-preview { min-height: 230px; padding: 20px; }
  .registry-data > div { align-items: flex-start; flex-direction: column; gap: 5px; }
}

/* Homepage journey blocks */
.home-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.page-intro {
  max-width: 720px;
  margin-bottom: 30px;
  text-align: right;
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--text-muted);
  font: 700 11px/1.2 var(--font-latin);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-path-card {
  position: relative;
  min-height: 240px;
  padding: 26px;
  background: #fff;
  border: 1px solid #dce2e8;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(16, 20, 25, 0.06);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-path-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.home-path-card:hover {
  transform: translateY(-7px);
  border-color: var(--champagne);
  box-shadow: 0 24px 58px rgba(16, 20, 25, 0.12);
}

.home-path-card:hover::after { transform: scaleX(1); }

.home-path-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 36px;
  border-radius: 50%;
  background: #15191e;
  color: #fff;
  font: 700 12px/1 var(--font-mono);
}

.home-path-card h3 { margin-bottom: 10px; font-size: 21px; }
.home-path-card p { margin: 0 0 20px; color: var(--text-muted); font-size: 14px; line-height: 1.8; }
.home-path-card a { color: var(--color-black); font-size: 13px; font-weight: 800; }
.home-path-card a span { color: var(--champagne); margin-right: 6px; }

.home-signal {
  position: relative;
  overflow: hidden;
  background: #11161b;
  color: #fff;
}

.home-signal::before {
  content: "AUTO EMPIRE / FIELD NOTES";
  position: absolute;
  top: 52px;
  left: -32px;
  color: rgba(255,255,255,0.14);
  font: 700 clamp(42px, 9vw, 132px)/1 var(--font-display);
  letter-spacing: -0.06em;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: left top;
}

.signal-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
  min-height: 410px;
}

.signal-copy { max-width: 620px; }
.signal-copy .section-kicker { color: var(--text-muted); }
.signal-copy h2 { color: #fff; }
.signal-copy p { max-width: 560px; color: rgba(255,255,255,0.68); }

.signal-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.signal-stat { padding: 20px; border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; background: rgba(255,255,255,0.04); }
.signal-stat strong { display: block; margin-bottom: 5px; color: var(--champagne); font: 700 30px/1 var(--font-display); }
.signal-stat span { color: rgba(255,255,255,0.58); font-size: 12px; }

.home-cta { background: #f2f4f6; }
.home-cta-inner { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.home-cta-copy { max-width: 660px; }
.home-cta-copy p { max-width: 570px; }
.home-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.home-evidence { background: #e8ecf1; }
.home-evidence-media { height: 430px; }
.home-evidence-copy { max-width: 560px; }
.home-evidence-copy > .section-subtitle { margin-bottom: 24px; }
.home-evidence-steps { display: grid; gap: 12px; margin-bottom: 22px; }
.home-evidence-steps .step-card-neu { margin: 0; padding: 13px 16px; }
.home-evidence-steps .step-icon-badge { width: 34px; height: 34px; font-size: 12px; }
.home-evidence-steps .step-details h3 { font-size: 14px; }
.home-evidence-steps .step-details p { font-size: 12px; }

.home-deliverables { background: #f4f6f8; }
.home-deliverables-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 30px; }
.home-deliverable-card { min-height: 220px; padding: 22px; border: var(--border-neu); border-radius: var(--radius-lg); background: var(--bg-surface); box-shadow: var(--neu-flat); display: flex; flex-direction: column; transition: transform 0.28s ease, box-shadow 0.28s ease; }
.home-deliverable-card:hover { transform: translateY(-6px); box-shadow: var(--neu-hover); }
.deliverable-icon { display: inline-flex; align-items: center; justify-content: center; width: fit-content; min-width: 52px; height: 34px; margin-bottom: 30px; padding: 0 10px; border-radius: var(--radius-full); background: var(--color-black); color: #fff; font: 800 11px/1 var(--font-latin); letter-spacing: 0.06em; }
.home-deliverable-card h3 { margin-bottom: 8px; font-size: 17px; }
.home-deliverable-card p { flex: 1; margin: 0 0 18px; color: var(--text-muted); font-size: 12.5px; line-height: 1.75; }
.home-deliverable-card a { color: var(--color-black); font-size: 12px; font-weight: 800; }
.home-deliverable-card a span { margin-right: 5px; color: var(--champagne); }

.home-reviews { background: var(--bg-canvas); }
.home-quote-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 30px; }
.home-quote-card { min-height: 220px; padding: 24px; border-radius: var(--radius-lg); background: var(--bg-surface); box-shadow: var(--neu-flat); border: var(--border-neu); display: flex; flex-direction: column; }
.home-quote-card .stars-row { margin-bottom: 14px; color: var(--champagne); letter-spacing: 0.15em; }
.home-quote-card > p { flex: 1; color: var(--text-secondary); font-size: 14px; line-height: 1.9; }
.quote-author { display: flex; flex-direction: column; gap: 2px; margin-top: 18px; padding-top: 14px; border-top: 1px solid #dce2e8; }
.quote-author strong { font-size: 13px; color: var(--color-black); }
.quote-author span { color: var(--text-muted); font-size: 11px; }
.text-link-arrow { display: inline-flex; gap: 8px; margin-top: 24px; color: var(--color-black); font-size: 13px; font-weight: 800; }
.text-link-arrow span { color: var(--champagne); }

@media (max-width: 900px) {
  .home-path-grid, .signal-grid, .home-quote-grid, .home-deliverables-grid { grid-template-columns: 1fr; }
  .signal-grid { min-height: auto; }
  .home-signal::before { display: none; }
  .home-cta-inner { display: block; }
  .home-cta-actions { margin-top: 24px; }
  .home-evidence-media { height: 340px; }
}

@media (max-width: 540px) {
  .home-path-card { min-height: 205px; padding: 22px; }
  .home-path-number { margin-bottom: 24px; }
  .signal-stats { grid-template-columns: 1fr 1fr; }
}

/* Service launchpad, service forms, reports and submitted reviews */
.service-launchpad { background: #eef1f4; color: var(--color-black); }
.service-launchpad .section-title { color: var(--color-black); }
.service-launchpad .section-subtitle { color: var(--text-muted); }
.service-launchpad .dark-highlight { background: transparent; color: inherit; }
.service-action-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; margin-top: 30px; }
.service-action-card { min-height: 180px; padding: 24px; border: 1px solid #d8dee4; border-radius: 20px; color: var(--color-black); background: #f8fafb; box-shadow: var(--neu-flat); display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: start; transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease; }
.service-action-card:hover { transform: translateY(-7px); background: #fff; border-color: #bfc8d1; box-shadow: var(--neu-hover); }
.service-action-card > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--color-black); color: #fff; font: 800 11px var(--font-latin); }
.service-action-card h3 { margin: 3px 0 10px; font-size: 20px; }
.service-action-card p { margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.8; }
.service-action-card b { font-size: 22px; transition: transform .3s ease; }
.service-action-card:hover b { transform: translate(-5px,-5px); }

.service-detail-hero { min-height: 480px; background: linear-gradient(125deg,#eef1f4 0%,#fff 52%,#dfe4e9 100%); }
.service-detail-hero .section-head { max-width: 780px; text-align: right; }
.service-benefit-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.service-form-section, .review-submit-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(28px,6vw,80px); align-items: start; background: #e8ecf1; }
.service-form-intro { position: sticky; top: 120px; }
.service-request-form .btn-neu-black, #reviewForm .btn-neu-black { margin-top: 8px; }

.report-hero { min-height: 450px; }
.report-hero .section-head { max-width: 820px; text-align: right; }
.report-showcase { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(34px,7vw,100px); align-items: center; }
.report-cover-card { position: relative; padding: 14px; border-radius: 24px; background: #fff; box-shadow: var(--neu-flat); transform: rotate(-1.5deg); }
.report-cover-card img { display: block; width: 100%; border-radius: 14px; }
.report-cover-card span { position: absolute; right: 28px; bottom: 28px; padding: 9px 13px; border-radius: 99px; color: #fff; background: #111; font-size: 11px; font-weight: 800; }
.report-copy .section-subtitle { margin-bottom: 22px; }
.report-features { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.report-features span { padding: 9px 13px; border: 1px solid #d5dbe1; border-radius: 99px; color: var(--text-secondary); background: #f5f7f9; font-size: 12px; font-weight: 700; }
.report-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.report-frame { width: 100%; height: min(78vh,900px); border: 1px solid #cfd6dd; border-radius: 20px; background: #fff; box-shadow: 0 20px 60px rgba(10,15,20,.12); }
.pdf-custom-viewer { display: flex; flex-direction: column; overflow: hidden; background: #323639; border: 1px solid #23272a; }
.pdf-viewer-bar { display: flex; align-items: center; justify-content: space-between; padding: 10px 18px; background: #282c2f; color: #f1f3f4; font-size: 13px; direction: ltr; border-bottom: 1px solid #1f2224; flex-wrap: wrap; gap: 10px; z-index: 2; }
.pdf-bar-title { display: flex; align-items: center; gap: 8px; font-weight: 600; color: #e8eaed; }
.pdf-bar-controls { display: flex; align-items: center; gap: 10px; }
.pdf-btn { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 4px; width: 30px; height: 30px; cursor: pointer; font-size: 16px; font-weight: bold; display: inline-flex; align-items: center; justify-content: center; transition: background .2s; }
.pdf-btn:hover { background: rgba(255,255,255,0.24); }
.pdf-zoom-text, .pdf-page-indicator { font-family: monospace; font-size: 13px; color: #d1d5db; min-width: 44px; text-align: center; }
.pdf-bar-actions { display: flex; align-items: center; gap: 10px; }
.pdf-action-btn { color: #f1f3f4; background: rgba(255,255,255,0.1); border-radius: 4px; padding: 6px 10px; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; text-decoration: none; transition: background .2s; }
.pdf-action-btn:hover { background: rgba(255,255,255,0.24); color: #fff; }
.pdf-canvas-wrapper { flex: 1; overflow-y: auto; overflow-x: auto; padding: 0; display: block; background: #525659; }
#pdfDocImg { width: 100%; height: auto; display: block; border: none; }
#pdfCanvas { max-width: 100%; height: auto; display: block; background: #fff; }

.user-review-card { order: -1; border: 2px solid #111; }
.user-review-card .review-vehicle-img { min-height: 118px; background: linear-gradient(135deg,#0f1418,#313841); display: grid; place-items: center; }
.user-review-mark { color: #fff; font: 900 28px var(--font-display); letter-spacing: .04em; }

@media (max-width: 900px) {
  .service-action-grid, .service-benefit-grid, .service-form-section, .review-submit-section, .report-showcase { grid-template-columns: 1fr; }
  .service-action-card { min-height: 140px; }
  .service-form-intro { position: static; }
  .report-cover-card { max-width: 520px; margin: 0 auto; }
  .report-frame { height: 70vh; }
}

@media (max-width: 540px) {
  .service-action-card { padding: 20px; grid-template-columns: auto 1fr; }
  .service-action-card b { display: none; }
  .report-actions > * { width: 100%; justify-content: center; }
  .report-frame { height: 520px; border-radius: 14px; }
}

/* ==========================================================================
   Language Switcher Component (Neumorphic Minimalist)
   ========================================================================== */
.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  background: var(--bg-surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  box-shadow: var(--neu-pressed-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  gap: 2px;
  text-decoration: none;
}

.lang-switcher-btn:hover {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: var(--neu-flat-sm);
}

.lang-switcher-btn .lang-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: all 0.2s ease;
  line-height: 1.2;
}

.lang-switcher-btn .lang-opt.active {
  background: var(--color-black);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.lang-switcher-mobile {
  display: none;
}

@media (max-width: 900px) {
  .lang-switcher-mobile {
    display: inline-flex;
    margin: 10px 0;
    align-self: flex-start;
  }
}

/* ==========================================================================
   LTR Layout & English Typography Adaptations
   ========================================================================== */
html[lang="en"],
html[dir="ltr"] {
  --font-arabic: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
}

html[lang="en"] body,
html[dir="ltr"] body {
  font-family: var(--font-latin);
  direction: ltr;
  text-align: left;
}

html[lang="en"] .hero-content,
html[dir="ltr"] .hero-content,
html[lang="en"] .section-head,
html[dir="ltr"] .section-head,
html[lang="en"] .inner-hero-neu,
html[dir="ltr"] .inner-hero-neu,
html[lang="en"] .home-cta-copy,
html[dir="ltr"] .home-cta-copy,
html[lang="en"] .page-intro,
html[dir="ltr"] .page-intro,
html[lang="en"] .section-title,
html[dir="ltr"] .section-title,
html[lang="en"] .section-subtitle,
html[dir="ltr"] .section-subtitle {
  text-align: left !important;
}

html[lang="en"] .status-pill-neu,
html[dir="ltr"] .status-pill-neu,
html[lang="en"] .kicker-pill,
html[dir="ltr"] .kicker-pill {
  flex-direction: row;
}

html[lang="en"] .form-field label,
html[dir="ltr"] .form-field label {
  text-align: left;
}

html[lang="en"] .form-field input,
html[dir="ltr"] .form-field input,
html[lang="en"] .form-field select,
html[dir="ltr"] .form-field select,
html[lang="en"] .form-field textarea,
html[dir="ltr"] .form-field textarea {
  text-align: left;
}

html[lang="en"] .footer-top,
html[dir="ltr"] .footer-top {
  direction: ltr;
}

html[lang="en"] .footer-bottom,
html[dir="ltr"] .footer-bottom {
  direction: ltr;
}

html[lang="en"] .registry-data dt,
html[dir="ltr"] .registry-data dt,
html[lang="en"] .registry-data dd,
html[dir="ltr"] .registry-data dd {
  text-align: left;
}

html[lang="en"] .whatsapp-float-neu,
html[dir="ltr"] .whatsapp-float-neu {
  right: auto;
  left: 22px;
}

html[lang="en"] .whatsapp-float-neu::after,
html[dir="ltr"] .whatsapp-float-neu::after {
  content: "WhatsApp";
}

html[lang="en"] .card-desc,
html[dir="ltr"] .card-desc,
html[lang="en"] .card-title,
html[dir="ltr"] .card-title,
html[lang="en"] .card-checklist,
html[dir="ltr"] .card-checklist,
html[lang="en"] .package-card-neu,
html[dir="ltr"] .package-card-neu,
html[lang="en"] .package-items,
html[dir="ltr"] .package-items,
html[lang="en"] .review-text,
html[dir="ltr"] .review-text,
html[lang="en"] .author-meta,
html[dir="ltr"] .author-meta,
html[lang="en"] .service-action-card div,
html[dir="ltr"] .service-action-card div,
html[lang="en"] .step-details,
html[dir="ltr"] .step-details,
html[lang="en"] .home-deliverable-card,
html[dir="ltr"] .home-deliverable-card {
  text-align: left;
}



/* ==========================================================================
   MOBILE HEADER PERFECTION & CTA RELOCATION
   ========================================================================== */
@media (max-width: 860px) {
  .site-header {
    top: 10px !important;
    right: 10px !important;
    left: 10px !important;
    padding: 8px 14px !important;
    border-radius: var(--radius-full) !important;
  }

  .brand {
    gap: 10px !important;
    min-width: 0 !important;
    flex-shrink: 1 !important;
  }

  .logo-badge {
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
  }

  .brand-title {
    font-size: 14px !important;
    letter-spacing: 0.05em !important;
    white-space: nowrap !important;
  }

  .brand-subtitle {
    font-size: 9.5px !important;
    white-space: nowrap !important;
  }

  /* Completely remove header-booking-cta from mobile header bar */
  .header-booking-cta,
  .header-cta-desktop,
  .site-header .header-booking-cta,
  .site-header a.header-booking-cta {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    position: absolute !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }

  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
  }

  .lang-switcher-btn {
    padding: 2px !important;
  }

  .lang-switcher-btn .lang-opt {
    padding: 3px 8px !important;
    font-size: 11px !important;
  }

  .menu-toggle {
    display: flex !important;
    width: 38px !important;
    height: 38px !important;
    flex-shrink: 0 !important;
    border-radius: var(--radius-full) !important;
  }

  /* Beautiful full-width CTA inside the open mobile menu */
  .nav-cta-mobile {
    display: inline-flex !important;
    width: 100% !important;
    margin-top: 10px !important;
    padding: 13px 20px !important;
    border-radius: 14px !important;
    background: var(--color-black) !important;
    color: #ffffff !important;
    font-size: 14.5px !important;
    font-weight: 800 !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: var(--neu-button-black) !important;
  }
}

@media (min-width: 861px) {
  .nav-cta-mobile {
    display: none !important;
  }
}

