/* === DESIGN TOKENS === */
/**
 * ====================================================================
 * DESIGN SYSTEM TOKENS - "رائحة المسك"
 * Local Sanitation & Water Tank Cleaning Services - Makkah Al-Mukarramah
 * ====================================================================
 */

:root {
  /* ------------------------------------------------------------------
   * Brand Color Palette (Deep Navy, Royal Blue, Light/Sky Blue, Neutrals)
   * ------------------------------------------------------------------ */
  
  /* Deep Navy Blue (Primary Core & High Authority) */
  --color-navy-950: #061224;
  --color-navy-900: #0a1b36;
  --color-navy-850: #0e2447;
  --color-navy-800: #132e5c;
  --color-navy-700: #1a3c75;

  /* Royal & Vibrant Blue (Actions & Brand Expression) */
  --color-blue-600: #1d5cb0;
  --color-blue-500: #2563eb;
  --color-blue-400: #3b82f6;

  /* Sky & Light Blue (Subtle highlights, badge backgrounds, borders) */
  --color-sky-500: #0284c7;
  --color-sky-400: #38bdf8;
  --color-sky-200: #bae6fd;
  --color-sky-100: #e0f2fe;
  --color-sky-50:  #f0f8ff;

  /* Neutrals & Grays (Clean, Crisp, Low Fatigue) */
  --color-white: #ffffff;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-150: #eaeff5;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-gray-400: #94a3b8;
  --color-gray-500: #64748b;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1e293b;

  /* Accent Color (WhatsApp only - strictly constrained) */
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #20bd5a;
  --color-whatsapp-dark: #128c7e;
  --color-whatsapp-light: #e8f9ee;

  /* Live Indicator Green */
  --color-status-live: #10b981;
  --color-status-live-pulse: rgba(16, 185, 129, 0.4);

  /* ------------------------------------------------------------------
   * Semantic Roles
   * ------------------------------------------------------------------ */
  --bg-page: var(--color-gray-50);
  --bg-surface: var(--color-white);
  --bg-surface-elevated: #ffffff;
  --bg-surface-subtle: #f4f7fb;
  --bg-surface-navy: var(--color-navy-900);

  --text-primary: var(--color-navy-950);
  --text-secondary: #3b4e6b;
  --text-muted: var(--color-gray-500);
  --text-inverse: var(--color-white);
  --text-brand: var(--color-blue-600);

  --border-subtle: rgba(14, 36, 71, 0.08);
  --border-card: rgba(14, 36, 71, 0.1);
  --border-focus: var(--color-blue-500);

  /* ------------------------------------------------------------------
   * Typography (Arabic-first, Cairo & IBM Plex Sans Arabic)
   * ------------------------------------------------------------------ */
  --font-arabic: 'IBM Plex Sans Arabic', 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-arabic-heading: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;

  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  1.875rem;   /* 30px */
  --text-4xl:  2.25rem;    /* 36px */
  --text-5xl:  3rem;       /* 48px */
  --text-6xl:  3.75rem;    /* 60px */

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --line-height-tight: 1.25;
  --line-height-snug: 1.375;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  /* ------------------------------------------------------------------
   * Spacing & Sizing Scale
   * ------------------------------------------------------------------ */
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */
  --space-24: 6rem;    /* 96px */

  /* ------------------------------------------------------------------
   * Border Radius (Soft, Modern, Cohesive)
   * ------------------------------------------------------------------ */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  /* ------------------------------------------------------------------
   * Shadows (Clean, Layered, Non-Muddy)
   * ------------------------------------------------------------------ */
  --shadow-sm: 0 1px 2px rgba(10, 27, 54, 0.04);
  --shadow-md: 0 4px 14px -2px rgba(10, 27, 54, 0.06), 0 2px 6px -1px rgba(10, 27, 54, 0.03);
  --shadow-lg: 0 10px 30px -4px rgba(10, 27, 54, 0.08), 0 4px 12px -2px rgba(10, 27, 54, 0.04);
  --shadow-xl: 0 20px 40px -8px rgba(10, 27, 54, 0.12), 0 8px 16px -4px rgba(10, 27, 54, 0.05);
  --shadow-glow: 0 0 24px rgba(37, 99, 235, 0.22);
  --shadow-bottom-bar: 0 -4px 20px rgba(10, 27, 54, 0.09);

  /* ------------------------------------------------------------------
   * Transitions & Motion Curves
   * ------------------------------------------------------------------ */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 150ms var(--ease-smooth);
  --transition-normal: 250ms var(--ease-smooth);
  --transition-spring: 350ms var(--ease-spring);

  /* ------------------------------------------------------------------
   * Layout Constraints
   * ------------------------------------------------------------------ */
  --container-max-width: 1240px;
  --navbar-height: 74px;
  --navbar-height-mobile: 66px;
  --bottom-bar-height: 74px;

  /* ------------------------------------------------------------------
   * Z-Index System
   * ------------------------------------------------------------------ */
  --z-base: 1;
  --z-sticky: 100;
  --z-header: 1000;
  --z-drawer: 1100;
  --z-bottom-bar: 1200;
}


/* === BASE STYLES === */
/**
 * ====================================================================
 * BASE & RESETS - "رائحة المسك"
 * High-performance RTL Arabic foundations
 * ====================================================================
 */

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

html {
  direction: rtl;
  text-align: right;
  font-family: var(--font-arabic);
  font-size: 16px;
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  background-color: var(--bg-page);
  color: var(--text-primary);
}

/* Ensure sticky header never overlaps section anchors */
section[id] {
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

/* Image defaults */
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Links & Buttons */
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-arabic-heading);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: var(--line-height-tight);
  letter-spacing: -0.015em;
  text-wrap: balance;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--color-blue-500);
  outline-offset: 3px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-6);
  }
}

@media (min-width: 1200px) {
  .container {
    padding-inline: var(--space-8);
  }
}

/* Subtle background pattern for visual depth without clutter */
.bg-ambient-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(37, 99, 235, 0.07), transparent 70%),
    radial-gradient(circle at 100% 30%, rgba(56, 189, 248, 0.05), transparent 40%),
    radial-gradient(circle at 0% 70%, rgba(14, 36, 71, 0.03), transparent 50%);
  z-index: 0;
}

/* Selection style */
::selection {
  background-color: var(--color-sky-200);
  color: var(--color-navy-950);
}


/* === COMPONENTS === */
/**
 * ====================================================================
 * COMPONENTS - "رائحة المسك"
 * Navbar, Hero, Trust Points, Badges, Buttons, Mobile Bottom Bar
 * ====================================================================
 */

/* ====================================================================
   1. BUTTONS & CTAS
   ==================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-arabic);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

/* Primary Button (Deep Navy to Royal Blue with subtle depth) */
.btn-primary {
  background-color: var(--color-navy-900);
  color: var(--color-white);
  border: 1px solid var(--color-navy-850);
  box-shadow: 0 4px 14px rgba(10, 27, 54, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background-color: var(--color-navy-800);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(10, 27, 54, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover .btn-icon {
  transform: scale(1.1);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(10, 27, 54, 0.2);
}

/* Secondary Button (Clean crisp outline on surface) */
.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-navy-900);
  border: 1.5px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--color-blue-400);
  background-color: var(--color-sky-50);
  color: var(--color-blue-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover .btn-icon {
  transform: scale(1.1);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

/* Large Button Variant */
.btn-lg {
  padding: 0.9375rem 2rem;
  font-size: var(--text-lg);
  border-radius: var(--radius-lg);
}

/* ====================================================================
   2. BADGES & STATUS INDICATORS
   ==================================================================== */
.badge-live-24h {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.375rem 0.875rem;
  background-color: var(--color-sky-50);
  color: var(--color-navy-850);
  border: 1px solid var(--color-sky-200);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  width: fit-content;
}

.status-dot-pulse {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-status-live);
}

.status-dot-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background-color: var(--color-status-live-pulse);
  animation: pulse-ring 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.7);
    opacity: 0;
  }
  100% {
    transform: scale(0.85);
    opacity: 0;
  }
}

/* Floating micro-badge */
.floating-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 0.875rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy-900);
}

/* ====================================================================
   3. NAVBAR
   ==================================================================== */
.navbar-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.navbar-wrapper.is-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(10, 27, 54, 0.05);
  border-bottom-color: var(--color-gray-200);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
}

/* Brand Logo (Right side in RTL) */
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.brand-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-navy-900) 0%, var(--color-blue-600) 100%);
  border-radius: var(--radius-md);
  color: var(--color-white);
  box-shadow: 0 4px 10px rgba(10, 27, 54, 0.15);
  flex-shrink: 0;
}

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

.brand-name {
  font-family: var(--font-arabic-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-navy-950);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: var(--text-xs);
  color: var(--color-gray-500);
  font-weight: var(--font-weight-medium);
  margin-top: 2px;
}

/* Desktop Nav Links */
.nav-menu {
  display: none;
  align-items: center;
  list-style: none;
  gap: clamp(0.65rem, 1.25vw, 1.25rem);
}

.nav-link {
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-gray-700);
  padding: 0.5rem 0.25rem;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-blue-600);
}

.nav-link.active {
  color: var(--color-navy-950);
  font-weight: var(--font-weight-semibold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-blue-600);
  border-radius: var(--radius-full);
}

/* Nav Actions (Left side in RTL) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

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

/* Mobile Hamburger Toggle */
.nav-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background-color: var(--color-white);
  color: var(--color-navy-900);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.nav-toggle-btn:hover {
  background-color: var(--color-gray-100);
}

/* Mobile Quick Call Button in Navbar */
.nav-mobile-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background-color: var(--color-sky-50);
  border: 1px solid var(--color-sky-200);
  color: var(--color-blue-600);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.nav-mobile-call-btn:hover {
  background-color: var(--color-blue-600);
  color: var(--color-white);
}

/* Mobile Navigation Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 18, 36, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: var(--z-drawer);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(84vw, 340px);
  background-color: var(--color-white);
  z-index: calc(var(--z-drawer) + 1);
  transform: translateX(100%);
  transition: transform var(--transition-spring);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(10, 27, 54, 0.15);
  padding: var(--space-6);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-5);
}

.drawer-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background-color: var(--color-gray-100);
  color: var(--color-navy-900);
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem var(--space-3);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-700);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.drawer-nav-link:hover,
.drawer-nav-link.active {
  background-color: var(--color-sky-50);
  color: var(--color-blue-600);
}

.drawer-footer {
  margin-top: auto;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.drawer-phone-card {
  background-color: var(--color-gray-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-navy-950);
}

.drawer-phone-card:hover {
  border-color: var(--color-blue-400);
  background-color: var(--color-sky-50);
}

/* ====================================================================
   4. HERO SECTION
   ==================================================================== */
.hero-section {
  position: relative;
  padding-top: var(--space-8);
  padding-bottom: var(--space-12);
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--color-gray-50) 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Content Column (Right on desktop RTL) */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.hero-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-navy-950);
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.hero-description {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 580px;
}

/* Hero CTA Layout: 1 Large Button + 2 Equal Underneath */
.hero-cta-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-2);
  width: 100%;
  max-width: 500px;
}

.hero-btn-large {
  width: 100%;
  justify-content: center;
  padding: 0.9375rem 1.75rem;
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-btn-large:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-secondary-btns {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
}

.hero-btn-half {
  flex: 1;
  justify-content: center;
  padding: 0.75rem 0.875rem;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  white-space: nowrap;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-fast);
}

/* Secondary WhatsApp Button */
.btn-whatsapp-secondary {
  background-color: var(--color-white);
  color: #128c7e;
  border: 1.5px solid #25d366;
  box-shadow: var(--shadow-xs);
}

.btn-whatsapp-secondary:hover {
  background-color: #25d366;
  color: var(--color-white);
  border-color: #25d366;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

/* Hero Visual Column (Left on desktop RTL) */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background-color: var(--color-navy-950);
  border: 1px solid rgba(14, 36, 71, 0.12);
  box-shadow: var(--shadow-xl);
  /* Doppelrand / double-bezel aesthetic */
  padding: 6px;
}

.hero-image-inner {
  position: relative;
  border-radius: calc(var(--radius-2xl) - 6px);
  overflow: hidden;
  background-color: var(--color-navy-900);
  aspect-ratio: 4 / 3;
}

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms var(--ease-smooth);
}

.hero-image-card:hover .hero-image {
  transform: scale(1.025);
}

/* Subtle overlay vignette for depth and high-end feel */
.hero-image-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 18, 36, 0.05) 0%, rgba(6, 18, 36, 0.35) 100%);
  pointer-events: none;
}

/* Overlaid Floating Badges on Hero Visual */
.visual-badge-top {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

.visual-badge-bottom {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
}

/* Decorative subtle glow background */
.hero-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(37, 99, 235, 0.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ====================================================================
   5. TRUST POINTS SECTION
   ==================================================================== */
.trust-points-wrapper {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
}

.trust-points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.trust-point-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background-color: var(--color-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.trust-point-card:hover {
  border-color: var(--color-sky-200);
  background-color: var(--color-sky-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trust-point-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--color-sky-100);
  color: var(--color-blue-600);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.trust-point-card:hover .trust-point-icon-box {
  background-color: var(--color-blue-600);
  color: var(--color-white);
}

.trust-point-text {
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-900);
  letter-spacing: -0.01em;
}

/* ====================================================================
   6. MOBILE BOTTOM FLOATING ACTION BAR
   ==================================================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-bottom-bar);
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-bottom-bar);
  padding: 0.625rem var(--space-4);
  padding-bottom: calc(0.625rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.mobile-bottom-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem var(--space-3);
  border-radius: var(--radius-md);
  font-family: var(--font-arabic);
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.mobile-bottom-btn:active {
  transform: scale(0.97);
}

.mobile-bottom-call {
  background-color: var(--color-navy-900);
  color: var(--color-white);
  border: 1px solid var(--color-navy-800);
  box-shadow: 0 2px 8px rgba(10, 27, 54, 0.18);
}

.mobile-bottom-whatsapp {
  background-color: var(--color-whatsapp);
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.22);
}

/* ====================================================================
   7. SERVICES SECTION
   ==================================================================== */
.services-section {
  position: relative;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--border-subtle);
}

.services-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.services-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.875rem;
  background-color: var(--color-sky-50);
  color: var(--color-blue-600);
  border: 1px solid var(--color-sky-200);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
}

.services-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-navy-950);
  line-height: var(--line-height-snug);
  letter-spacing: -0.015em;
}

.services-subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

/* Service Card */
.service-card {
  position: relative;
  background-color: var(--color-gray-50);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  background-color: var(--color-white);
  border-color: var(--color-blue-400);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Equipment Service Card Styling (30T & 18T) */
.service-card-equipment {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border-color: rgba(29, 92, 176, 0.18);
}

.service-card-equipment::before {
  content: '';
  position: absolute;
  top: 0;
  right: var(--space-6);
  left: var(--space-6);
  height: 2px;
  background: linear-gradient(90deg, var(--color-blue-600), var(--color-sky-400));
  border-radius: var(--radius-full);
}

/* Card Top Section */
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.service-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--color-sky-100);
  color: var(--color-navy-900);
  flex-shrink: 0;
  transition: transform var(--transition-normal), background-color var(--transition-fast);
}

.service-card:hover .service-icon-box {
  transform: translateY(-2px);
}

.service-card-equipment .service-icon-box {
  background-color: var(--color-navy-900);
  color: var(--color-sky-400);
  box-shadow: 0 4px 12px rgba(10, 27, 54, 0.15);
}

.service-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.service-capacity-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  background-color: var(--color-navy-900);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
}

.service-index {
  font-family: var(--font-arabic-heading);
  font-size: var(--text-base);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-gray-400);
  user-select: none;
}

/* Card Body */
.service-card-body {
  flex-grow: 1;
  margin-bottom: var(--space-4);
}

.service-title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-950);
  margin-bottom: var(--space-2);
  line-height: var(--line-height-snug);
}

.service-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

/* Card Action */
.service-action-wrap {
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  background-color: var(--color-sky-50);
  border: 1px solid var(--color-sky-200);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-blue-700);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.service-cta-arrow {
  transition: transform var(--transition-fast);
}

.service-card:hover .service-cta-link,
.service-cta-link:hover {
  background-color: var(--color-blue-600);
  border-color: var(--color-blue-600);
  color: #ffffff;
}

.service-card:hover .service-cta-arrow,
.service-cta-link:hover .service-cta-arrow {
  transform: translateX(-4px);
}

/* Section CTA Banner */
.services-cta-banner {
  margin-top: var(--space-10);
  background-color: var(--color-gray-50);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.services-cta-banner:hover {
  border-color: var(--color-sky-200);
}

.services-cta-content {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.services-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--color-sky-100);
  color: var(--color-blue-600);
  flex-shrink: 0;
}

.services-cta-text {
  display: flex;
  flex-direction: column;
}

.services-cta-title {
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-950);
  margin-bottom: 2px;
}

.services-cta-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.services-cta-action {
  flex-shrink: 0;
}

/* ====================================================================
   8. EQUIPMENT SECTION
   ==================================================================== */
.equipment-section {
  position: relative;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  background-color: var(--color-gray-50);
  border-bottom: 1px solid var(--border-subtle);
}

.equipment-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.equipment-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.875rem;
  background-color: var(--color-sky-50);
  color: var(--color-blue-600);
  border: 1px solid var(--color-sky-200);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
}

.equipment-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-navy-950);
  line-height: var(--line-height-snug);
  letter-spacing: -0.015em;
}

.equipment-subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

.equipment-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

/* Individual Showcase Card */
.equipment-card {
  background-color: var(--color-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr;
  transition: all var(--transition-normal);
}

.equipment-card:hover {
  border-color: var(--color-sky-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Card Visual Container */
.equipment-visual {
  position: relative;
  background-color: var(--color-navy-950);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.equipment-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.equipment-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms var(--ease-smooth);
}

.equipment-card:hover .equipment-img {
  transform: scale(1.03);
}

.equipment-badge-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

/* Card Info / Content Container */
.equipment-info {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.equipment-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.equipment-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-blue-600);
  background-color: var(--color-sky-50);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-sky-200);
}

.equipment-name {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-navy-950);
  margin-bottom: var(--space-3);
  line-height: var(--line-height-snug);
}

/* Metric Display (30 طن / 18 طن) */
.equipment-metric-box {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background-color: var(--color-gray-50);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: fit-content;
}

.equipment-metric-val {
  font-family: var(--font-arabic-heading);
  font-size: 3rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--color-navy-950);
  line-height: 1;
  letter-spacing: -0.02em;
}

.equipment-metric-unit {
  font-family: var(--font-arabic-heading);
  font-size: 1.35rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-blue-600);
}

.equipment-badge-compressor {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.3125rem 0.75rem;
  background-color: var(--color-navy-900);
  color: var(--color-sky-400);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
  margin-right: var(--space-2);
}

.equipment-description {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-2);
}

/* Section Bottom CTA Area */
.equipment-bottom-cta {
  margin-top: var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}

.equipment-trust-detail {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-600);
}

/* ====================================================================
   9. COVERAGE SECTION
   ==================================================================== */
.coverage-section {
  position: relative;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.coverage-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.coverage-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.875rem;
  background-color: var(--color-sky-50);
  color: var(--color-blue-600);
  border: 1px solid var(--color-sky-200);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
}

.coverage-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-navy-950);
  line-height: var(--line-height-snug);
  letter-spacing: -0.015em;
}

.coverage-subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

/* Coverage Highlight Banner (Makkah Al-Mukarramah Focus) */
.coverage-highlight-banner {
  position: relative;
  background: linear-gradient(135deg, var(--color-navy-950) 0%, var(--color-navy-900) 60%, var(--color-navy-800) 100%);
  color: var(--color-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-10);
  margin-bottom: var(--space-10);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

/* Abstract Minimalist Geometric Map Contour / Radar Pattern */
.coverage-abstract-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.12;
  background-image: 
    radial-gradient(circle at 85% 50%, rgba(56, 189, 248, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 32px 32px, 32px 32px;
}

.coverage-highlight-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.coverage-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  width: fit-content;
  padding: 0.3125rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-sky-200);
}

.coverage-highlight-title {
  font-family: var(--font-arabic-heading);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.coverage-highlight-scope {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-sky-400);
}

.coverage-highlight-side {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.coverage-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.625rem 1.25rem;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
}

/* Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

/* Area Card */
.area-card {
  position: relative;
  background-color: var(--color-gray-50);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.area-card:hover {
  background-color: var(--color-white);
  border-color: var(--color-blue-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.area-card-content {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.area-pin-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background-color: var(--color-sky-100);
  color: var(--color-blue-600);
  flex-shrink: 0;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.area-card:hover .area-pin-box {
  background-color: var(--color-navy-900);
  color: var(--color-sky-400);
  transform: translateY(-2px);
}

.area-name {
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-950);
  line-height: var(--line-height-snug);
}

.area-index {
  font-family: var(--font-arabic-heading);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray-400);
  user-select: none;
}

/* Coverage CTA Banner */
.coverage-cta-banner {
  background-color: var(--color-gray-50);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.coverage-cta-banner:hover {
  border-color: var(--color-sky-200);
}

.coverage-cta-text-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.coverage-cta-title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-950);
}

.coverage-cta-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.coverage-cta-action {
  flex-shrink: 0;
}

/* ====================================================================
   9. WHY US SECTION (لماذا رائحة المسك؟)
   ==================================================================== */
.why-us-section {
  position: relative;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  background-color: var(--color-gray-50);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.why-us-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.why-us-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.875rem;
  background-color: var(--color-sky-50);
  color: var(--color-blue-600);
  border: 1px solid var(--color-sky-200);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
}

.why-us-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-navy-950);
  line-height: var(--line-height-snug);
  letter-spacing: -0.015em;
}

.why-us-subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}

.why-us-card {
  background-color: var(--color-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  position: relative;
}

.why-us-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-sky-200);
  box-shadow: var(--shadow-md);
}

.why-us-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-5);
}

.why-us-number {
  font-family: var(--font-arabic-heading);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-blue-600);
  background-color: var(--color-sky-50);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
}

.why-us-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-sky-50) 0%, rgba(224, 242, 254, 0.6) 100%);
  color: var(--color-blue-600);
  border: 1px solid var(--color-sky-100);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.why-us-card:hover .why-us-icon-wrap {
  background: var(--color-navy-900);
  color: var(--color-white);
  border-color: var(--color-navy-900);
}

.why-us-item-title {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-950);
  margin-bottom: var(--space-2);
  line-height: var(--line-height-snug);
}

.why-us-item-desc {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Why Us Section Bottom CTA */
.why-us-cta-banner {
  background-color: var(--color-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.why-us-cta-banner:hover {
  border-color: var(--color-sky-200);
}

.why-us-cta-text-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.why-us-cta-title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-950);
}

.why-us-cta-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.why-us-cta-action {
  flex-shrink: 0;
}

/* ====================================================================
   10. FAQ SECTION (الأسئلة الشائعة)
   ==================================================================== */
.faq-section {
  position: relative;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.faq-container {
  max-width: 860px;
  margin-inline: auto;
}

.faq-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.875rem;
  background-color: var(--color-sky-50);
  color: var(--color-blue-600);
  border: 1px solid var(--color-sky-200);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
}

.faq-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-navy-950);
  line-height: var(--line-height-snug);
  letter-spacing: -0.015em;
}

.faq-subtitle {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--color-sky-200);
  box-shadow: var(--shadow-sm);
}

.faq-item.is-open {
  border-color: var(--color-blue-400);
  box-shadow: var(--shadow-md);
}

.faq-question-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: right;
  gap: var(--space-4);
  font-family: inherit;
  color: inherit;
  min-height: 62px;
}

.faq-question-text {
  font-family: var(--font-arabic-heading);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-950);
  line-height: var(--line-height-snug);
  transition: color var(--transition-fast);
}

.faq-item.is-open .faq-question-text {
  color: var(--color-blue-600);
}

.faq-question-btn:focus-visible {
  outline: 2px solid var(--color-blue-500);
  outline-offset: -2px;
}

.faq-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--color-sky-50);
  color: var(--color-blue-600);
  border: 1px solid var(--color-sky-200);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.faq-item.is-open .faq-icon-wrap {
  background-color: var(--color-navy-900);
  color: var(--color-white);
  border-color: var(--color-navy-900);
}

.faq-icon-vertical {
  transition: transform 250ms var(--ease-smooth), opacity 250ms var(--ease-smooth);
  transform-origin: center;
}

.faq-item.is-open .faq-icon-vertical {
  transform: rotate(90deg) scaleY(0);
  opacity: 0;
}

.faq-answer-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-6) var(--space-6);
  border-top: 1px dashed rgba(14, 36, 71, 0.08);
  margin-top: var(--space-1);
  padding-top: var(--space-4);
}

.faq-answer-text {
  font-size: var(--text-base);
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* FAQ Bottom CTA Banner */
.faq-cta-banner {
  background-color: var(--color-gray-50);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.faq-cta-banner:hover {
  border-color: var(--color-sky-200);
}

.faq-cta-text-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.faq-cta-title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-950);
}

.faq-cta-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.faq-cta-action {
  flex-shrink: 0;
}

/* ====================================================================
   11. CONTACT & WHATSAPP SERVICE REQUEST SECTION (DARK MODE)
   ==================================================================== */
.contact-section {
  position: relative;
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  background: radial-gradient(ellipse 90% 60% at 50% 0%, var(--color-navy-900) 0%, #030a14 100%);
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

/* Ambient glow in background */
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 350px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, rgba(56, 189, 248, 0.03) 60%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.contact-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.contact-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background-color: var(--color-whatsapp);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  margin-bottom: var(--space-1);
}

.contact-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  line-height: var(--line-height-snug);
  letter-spacing: -0.015em;
}

.contact-subtitle {
  font-size: var(--text-base);
  color: var(--color-gray-300);
  line-height: var(--line-height-relaxed);
}

.contact-layout-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: flex-start;
}

/* Side Info Column */
.contact-side-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-2xl);
  padding: var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info-heading {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: var(--line-height-snug);
}

.contact-info-desc {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  line-height: var(--line-height-relaxed);
}

.contact-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray-200);
}

.contact-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.12);
  color: var(--color-sky-400);
  flex-shrink: 0;
}

.contact-direct-call-box {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.direct-call-label {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  font-weight: var(--font-weight-medium);
}

.direct-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.875rem var(--space-4);
  background: linear-gradient(135deg, var(--color-navy-800) 0%, var(--color-navy-700) 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-arabic-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-extrabold);
  transition: all var(--transition-fast);
}

.direct-call-btn:hover {
  border-color: var(--color-sky-400);
  background: var(--color-blue-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.direct-call-icon {
  display: flex;
  align-items: center;
  color: var(--color-sky-400);
}

.direct-call-btn:hover .direct-call-icon {
  color: var(--color-white);
}

.direct-call-number {
  direction: ltr;
  letter-spacing: 0.04em;
}

/* Form Container Card */
.contact-form-wrapper {
  background: rgba(10, 27, 54, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(56, 189, 248, 0.22);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-request-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  gap: 4px;
}

.required-star {
  color: #f87171;
  font-weight: var(--font-weight-bold);
}

.optional-tag {
  color: var(--color-gray-400);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-normal);
}

/* Inputs & Form Controls */
.form-control {
  width: 100%;
  font-family: var(--font-arabic);
  font-size: var(--text-base);
  color: var(--color-white);
  background-color: rgba(6, 18, 36, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.8125rem var(--space-4);
  line-height: var(--line-height-normal);
  transition: all var(--transition-fast);
}

.form-control::placeholder {
  color: var(--color-gray-500);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-sky-400);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.22);
  background-color: rgba(6, 18, 36, 0.98);
}

/* Error State on Input */
.form-group.has-error .form-control {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.18);
}

/* Select Dropdown */
.select-wrapper {
  position: relative;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-left: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2338bdf8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1rem center;
}

.form-select option {
  background-color: var(--color-navy-950);
  color: var(--color-white);
  padding: 0.5rem;
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 90px;
}

/* GPS Location Card */
.gps-location-card {
  border: 2px dashed rgba(56, 189, 248, 0.35);
  background: rgba(6, 18, 36, 0.6);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.gps-location-card:hover {
  border-color: var(--color-sky-400);
  background: rgba(6, 18, 36, 0.8);
}

.gps-card-body {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.gps-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(56, 189, 248, 0.12);
  color: var(--color-sky-400);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.gps-info-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.btn-gps-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.625rem 1rem;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(37, 99, 235, 0.18) 100%);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: var(--radius-md);
  color: var(--color-sky-300);
  font-family: var(--font-arabic);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 100%;
}

.btn-gps-trigger:hover {
  background: rgba(56, 189, 248, 0.25);
  color: var(--color-white);
  border-color: var(--color-sky-400);
}

.gps-helper-text {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  line-height: var(--line-height-normal);
}

.gps-privacy-note {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.6875rem;
  color: var(--color-gray-400);
  padding-top: var(--space-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gps-privacy-note svg {
  flex-shrink: 0;
  color: var(--color-sky-400);
}

/* GPS Success State */
.gps-location-card.is-success {
  border-style: solid;
  border-color: var(--color-whatsapp);
  background: rgba(37, 211, 102, 0.08);
}

.gps-location-card.is-success .gps-icon-container {
  background-color: var(--color-whatsapp);
  color: #ffffff;
}

.gps-location-card.is-success .btn-gps-trigger {
  background: rgba(37, 211, 102, 0.15);
  border-color: var(--color-whatsapp);
  color: #ffffff;
}

/* GPS Loading State */
.gps-location-card.is-loading .btn-gps-trigger {
  opacity: 0.75;
  pointer-events: none;
}

/* GPS Error State on Container */
.form-group.has-error .gps-location-card {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.05);
}

/* Error Messages */
.field-error-msg {
  display: none;
  font-size: var(--text-xs);
  color: #fca5a5;
  font-weight: var(--font-weight-medium);
  margin-top: var(--space-1);
}

.form-group.has-error .field-error-msg {
  display: block;
}

.form-general-error {
  padding: var(--space-3) var(--space-4);
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: var(--radius-md);
  color: #fca5a5;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  text-align: center;
}

/* Submit Button */
.btn-submit-whatsapp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 1.0625rem var(--space-6);
  background-color: var(--color-whatsapp);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-arabic-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-extrabold);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-submit-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.btn-submit-whatsapp:active {
  transform: translateY(0);
}

.btn-submit-whatsapp.is-loading {
  opacity: 0.85;
  pointer-events: none;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spin-animation {
  animation: spin 1s linear infinite;
}

/* ====================================================================
   12. FINAL CTA SECTION (DARK MODE)
   ==================================================================== */
.final-cta-section {
  position: relative;
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  background: linear-gradient(180deg, var(--color-navy-900) 0%, var(--color-navy-950) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  text-align: center;
}

.final-cta-card {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.final-cta-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  line-height: var(--line-height-snug);
  letter-spacing: -0.015em;
}

.final-cta-desc {
  font-size: var(--text-base);
  color: var(--color-gray-400);
  line-height: var(--line-height-relaxed);
  max-width: 520px;
  margin: 0;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-3);
  margin-bottom: var(--space-2);
  flex-wrap: wrap;
}

.final-cta-btn-primary {
  padding: 0.875rem 1.75rem;
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.875rem 1.75rem;
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-white:active {
  transform: translateY(0);
}

.final-cta-subtext {
  font-size: var(--text-xs);
  color: var(--color-sky-400);
  font-weight: var(--font-weight-medium);
  margin: 0;
  letter-spacing: 0.01em;
}

/* ====================================================================
   13. SITE FOOTER
   ==================================================================== */
.site-footer {
  position: relative;
  background-color: var(--color-navy-950);
  color: var(--color-white);
  padding-top: var(--space-16);
  padding-bottom: var(--space-10);
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.footer-brand-name {
  font-family: var(--font-arabic-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
}

.footer-tagline {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-sky-400);
  margin-bottom: 2px;
}

.footer-tagline-sub {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  margin-bottom: var(--space-3);
}

.footer-brand-desc {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-4);
}

.footer-coverage-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.35rem 0.75rem;
  background-color: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-full);
  color: var(--color-sky-400);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  width: fit-content;
}

.footer-heading {
  font-family: var(--font-arabic-heading);
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
  position: relative;
  padding-bottom: var(--space-2);
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-blue-500);
  border-radius: var(--radius-full);
}

.footer-links-list,
.footer-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-link:hover {
  color: var(--color-sky-400);
  transform: translateX(-4px);
}

.footer-link:focus-visible {
  outline: 2px solid var(--color-blue-400);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer-contact-label {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  font-weight: var(--font-weight-medium);
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-white);
  text-decoration: none;
  font-weight: var(--font-weight-bold);
  font-size: var(--text-base);
  transition: color var(--transition-fast);
}

.footer-phone-link:hover {
  color: var(--color-sky-400);
}

.footer-phone-number {
  direction: ltr;
  letter-spacing: 0.04em;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-sky-400);
}

.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-white);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  transition: color var(--transition-fast);
}

.footer-whatsapp-link:hover {
  color: var(--color-whatsapp);
}

.footer-whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background-color: rgba(37, 211, 102, 0.15);
  color: var(--color-whatsapp);
}

/* Bottom Footer Divider & Copyright */
.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--color-gray-500);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ====================================================================
   SERVICE REQUEST MODAL
   ==================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 18, 36, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-container {
  background: linear-gradient(180deg, #0d203d 0%, #081426 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-2xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(14, 165, 233, 0.15);
  width: 100%;
  max-width: 580px;
  max-height: calc(100vh - 2rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.94) translateY(12px);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.is-open .modal-container {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background-color: rgba(6, 18, 36, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.modal-header-text {
  flex-grow: 1;
}

.modal-title {
  font-family: var(--font-arabic-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-1);
}

.modal-subtitle {
  font-size: var(--text-sm);
  color: var(--color-gray-300);
  margin: 0;
  line-height: var(--line-height-normal);
}

.modal-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-gray-300);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.modal-body {
  padding: var(--space-6);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

@media (max-width: 640px) {
  .modal-backdrop {
    padding: var(--space-2);
  }
  
  .modal-container {
    max-height: calc(100vh - 1rem);
    border-radius: var(--radius-xl);
  }
  
  .modal-header {
    padding: var(--space-4) var(--space-4);
  }
  
  .modal-body {
    padding: var(--space-4);
  }
}



/* === RESPONSIVE === */
/**
 * ====================================================================
 * RESPONSIVE RULES - "رائحة المسك"
 * Breakpoints: Mobile (< 768px), Tablet (768px - 1024px), Desktop (>= 1024px)
 * ====================================================================
 */

/* ------------------------------------------------------------------
 * Mobile Specific Rules (Default to 767px)
 * ------------------------------------------------------------------ */
@media (max-width: 767px) {
  /* Prevent content overlap with fixed bottom bar */
  body {
    padding-bottom: calc(var(--bottom-bar-height) + env(safe-area-inset-bottom, 0px) + 1rem);
  }

  .hero-section {
    padding-top: var(--space-6);
    padding-bottom: var(--space-8);
  }

  .hero-title {
    font-size: 1.875rem; /* 30px */
    line-height: 1.3;
  }

  .hero-description {
    font-size: var(--text-base);
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 0.9375rem 1.5rem;
  }

  .hero-phone-panel {
    width: 100%;
    justify-content: center;
  }

  .hero-visual-wrapper {
    margin-top: var(--space-4);
  }

  .floating-badge {
    padding: 0.375rem 0.625rem;
    font-size: 0.6875rem;
  }

  .visual-badge-top {
    top: 12px;
    right: 12px;
  }

  .visual-badge-bottom {
    bottom: 12px;
    left: 12px;
  }

  .trust-points-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .trust-point-card {
    padding: var(--space-3);
  }

  /* Services Section Mobile */
  .services-section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-12);
  }

  .services-header {
    margin-bottom: var(--space-8);
  }

  .services-title {
    font-size: 1.5rem;
    line-height: 1.35;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .service-card {
    padding: var(--space-5);
  }

  .services-cta-banner {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-5);
    text-align: right;
    gap: var(--space-4);
  }

  .services-cta-action .btn {
    width: 100%;
  }

  /* Equipment Section Mobile */
  .equipment-section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-12);
  }

  .equipment-header {
    margin-bottom: var(--space-8);
  }

  .equipment-title {
    font-size: 1.5rem;
    line-height: 1.35;
  }

  .equipment-list {
    gap: var(--space-6);
  }

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

  .equipment-info {
    padding: var(--space-5);
  }

  .equipment-name {
    font-size: 1.35rem;
  }

  .equipment-metric-val {
    font-size: 2.5rem;
  }

  .equipment-metric-unit {
    font-size: 1.15rem;
  }

  .equipment-bottom-cta .btn {
    width: 100%;
  }

  /* Coverage Section Mobile */
  .coverage-section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-12);
  }

  .coverage-header {
    margin-bottom: var(--space-8);
  }

  .coverage-title {
    font-size: 1.5rem;
    line-height: 1.35;
  }

  .coverage-highlight-banner {
    padding: var(--space-6);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .coverage-highlight-title {
    font-size: 1.875rem;
  }

  .coverage-highlight-scope {
    font-size: 1rem;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .area-card {
    padding: var(--space-3) var(--space-4);
  }

  .coverage-cta-banner {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-5);
    text-align: right;
    gap: var(--space-4);
  }

  .coverage-cta-action .btn {
    width: 100%;
  }

  /* Why Us Section Mobile */
  .why-us-section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-12);
  }

  .why-us-header {
    margin-bottom: var(--space-8);
  }

  .why-us-title {
    font-size: 1.5rem;
    line-height: 1.35;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
  }

  .why-us-card {
    padding: var(--space-5);
  }

  .why-us-cta-banner {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-5);
    text-align: right;
    gap: var(--space-4);
  }

  .why-us-cta-action .btn {
    width: 100%;
  }

  /* FAQ Section Mobile */
  .faq-section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-12);
  }

  .faq-header {
    margin-bottom: var(--space-8);
  }

  .faq-title {
    font-size: 1.5rem;
    line-height: 1.35;
  }

  .faq-question-btn {
    padding: var(--space-4) var(--space-5);
    min-height: 56px;
  }

  .faq-question-text {
    font-size: 1rem;
  }

  .faq-answer-inner {
    padding: 0 var(--space-5) var(--space-5) var(--space-5);
  }

  .faq-cta-banner {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-5);
    text-align: right;
    gap: var(--space-4);
  }

  .faq-cta-action .btn {
    width: 100%;
  }

  /* Contact Section Mobile */
  .contact-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-16);
  }

  .contact-header {
    margin-bottom: var(--space-8);
  }

  .contact-title {
    font-size: 1.625rem;
  }

  .contact-form-wrapper {
    padding: var(--space-5);
  }

  .btn-submit-whatsapp {
    font-size: 1.05rem;
    padding: 1rem var(--space-4);
  }

  /* Final CTA Mobile */
  .final-cta-section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }

  .final-cta-title {
    font-size: 1.5rem;
  }

  .final-cta-actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .final-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Site Footer Mobile */
  .site-footer {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
  }
}

/* ------------------------------------------------------------------
 * Tablet & Small Desktop (>= 768px)
 * ------------------------------------------------------------------ */
@media (min-width: 768px) {
  /* Hide Mobile Bottom Bar on Tablet/Desktop */
  .mobile-bottom-bar {
    display: none !important;
  }

  /* Hide Mobile Toggles in Header */
  .nav-toggle-btn,
  .nav-mobile-call-btn,
  .mobile-drawer-overlay,
  .mobile-drawer {
    display: none !important;
  }

  /* Show Desktop Nav Elements */
  .nav-menu {
    display: flex;
  }

  .nav-cta-btn {
    display: inline-flex;
  }

  .hero-section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-16);
  }

  .hero-title {
    font-size: 2.5rem; /* 40px */
  }

  .trust-points-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }

  /* Services Section Tablet */
  .services-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .service-card {
    padding: var(--space-7);
  }

  /* Equipment Section Tablet */
  .equipment-title {
    font-size: 2rem;
  }

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

  .equipment-visual {
    aspect-ratio: auto;
    min-height: 320px;
  }

  .equipment-info {
    padding: var(--space-6) var(--space-8);
  }

  /* Coverage Section Tablet */
  .coverage-title {
    font-size: 2rem;
  }

  .coverage-highlight-title {
    font-size: 2.25rem;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  /* Why Us Section Tablet */
  .why-us-title {
    font-size: 2rem;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  /* FAQ Section Tablet */
  .faq-title {
    font-size: 2rem;
  }

  /* Contact Section Tablet */
  .contact-title {
    font-size: 2.25rem;
  }

  .contact-form-wrapper {
    padding: var(--space-8);
  }

  /* Site Footer Tablet */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

/* ------------------------------------------------------------------
 * Large Desktop (>= 1024px)
 * ------------------------------------------------------------------ */
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-12);
  }

  .hero-title {
    font-size: 2.875rem; /* 46px */
    line-height: 1.25;
  }

  .hero-content {
    gap: var(--space-6);
  }

  .hero-cta-group {
    gap: var(--space-4);
  }

  /* Services Section Desktop */
  .services-title {
    font-size: 2.25rem;
  }

  .services-grid {
    gap: var(--space-6);
  }

  /* Equipment Section Desktop */
  .equipment-title {
    font-size: 2.25rem;
  }

  .equipment-card {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .equipment-card:nth-child(even) .equipment-visual {
    order: 2;
  }

  .equipment-card:nth-child(even) .equipment-info {
    order: 1;
  }

  .equipment-info {
    padding: var(--space-8) var(--space-10);
  }

  .equipment-metric-val {
    font-size: 3.5rem;
  }

  /* Coverage Section Desktop */
  .coverage-title {
    font-size: 2.25rem;
  }

  .coverage-highlight-title {
    font-size: 2.5rem;
  }

  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }

  /* Why Us Section Desktop */
  .why-us-title {
    font-size: 2.25rem;
  }

  .why-us-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
  }

  /* FAQ Section Desktop */
  .faq-title {
    font-size: 2.25rem;
  }

  /* Contact Section Desktop */
  .contact-layout-grid {
    grid-template-columns: 1fr 1.35fr;
    gap: var(--space-10);
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .contact-form-wrapper {
    padding: var(--space-8) var(--space-10);
  }

  /* Site Footer Desktop */
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: var(--space-10);
  }
}

/* ------------------------------------------------------------------
 * Extra Large Desktop (>= 1280px)
 * ------------------------------------------------------------------ */
@media (min-width: 1280px) {
  .hero-title {
    font-size: 3.125rem; /* 50px */
  }
}


