/*
Theme Name: UAE Chiller
Theme URI: https://uaechiller.com
Author: UAE Chiller
Author URI: https://uaechiller.com
Description: Custom theme for UAE Chiller – Refrigerated Vehicle Rental across all 7 UAE Emirates
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: uae-chiller
*/

/* ============================================
   DESIGN TOKENS — SINGLE SOURCE OF TRUTH
   ============================================ */
:root {
  /* Primary — Deep forest teal */
  --c-primary: #0a5e52;
  --c-primary-light: #0d7a6b;
  --c-primary-dark: #073b33;
  --c-primary-glow: rgba(10, 94, 82, 0.25);
  /* Accent — Warm gold */
  --c-accent: #e4a200;
  --c-accent-hover: #cc8f00;
  --c-accent-glow: rgba(228, 162, 0, 0.30);
  /* Surfaces */
  --c-dark: #0b1e1b;
  --c-surface: #ffffff;
  --c-page: #f5faf8;
  --c-ice: #eaf6f2;
  /* Text */
  --c-ink: #0f2420;
  --c-muted: #5a706a;
  --c-faint: #8fa8a0;
  /* Borders */
  --c-line: #d2e5df;
  --c-line-light: #e8f0ed;
  /* Utility */
  --c-success: #25d366;
  --c-danger: #e53e3e;
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(11, 30, 27, 0.05);
  --shadow-sm: 0 2px 8px rgba(11, 30, 27, 0.07);
  --shadow-md: 0 8px 24px rgba(11, 30, 27, 0.10);
  --shadow-lg: 0 20px 50px rgba(11, 30, 27, 0.14);
  --shadow-xl: 0 32px 64px rgba(11, 30, 27, 0.18);
  --shadow-glow-gold: 0 8px 30px rgba(228, 162, 0, 0.25);
  --shadow-glow-teal: 0 8px 30px rgba(10, 94, 82, 0.20);
  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;
  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s;
  --t-base: 0.35s;
  --t-slow: 0.5s;
  /* Layout */
  --max-w: 1200px;
  --gap: 24px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--c-ink);
  line-height: 1.7;
  background: var(--c-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t-fast) var(--ease-out); }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-ink);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--c-muted); }

.section-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--c-accent);
  margin-bottom: 10px;
  display: inline-block;
}

.section-title { margin-bottom: 14px; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 680px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* ============================================
   BUTTONS — Premium feel with micro-animations
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background var(--t-fast) var(--ease-out),
    border-color var(--t-fast) var(--ease-out),
    color var(--t-fast) var(--ease-out),
    transform var(--t-base) var(--ease-bounce),
    box-shadow var(--t-base) var(--ease-out);
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.btn svg { width: 18px; height: 18px; min-width: 18px; transition: transform var(--t-fast) var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--c-primary);
  color: var(--c-surface);
  border-color: var(--c-primary);
}

.btn-primary:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-teal);
}

.btn-accent {
  background: var(--c-accent);
  color: var(--c-surface);
  border-color: var(--c-accent);
}

.btn-accent:hover {
  background: var(--c-accent-hover);
  border-color: var(--c-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--c-surface);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: var(--c-surface);
  color: var(--c-primary);
  border-color: var(--c-surface);
}

.btn-outline-dark {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-line);
}

.btn-outline-dark:hover {
  background: var(--c-primary);
  color: var(--c-surface);
  border-color: var(--c-primary);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 16px 38px; font-size: 1rem; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--c-dark);
  color: var(--c-surface);
  padding: 7px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar .container { display: flex; justify-content: space-between; align-items: center; }

.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left a { color: rgba(255, 255, 255, 0.80); }
.top-bar-left a:hover { color: var(--c-accent); }
.top-bar-left svg { width: 14px; height: 14px; vertical-align: middle; margin-right: 6px; }

.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a {
  color: rgba(255, 255, 255, 0.6);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all var(--t-fast) var(--ease-out);
}
.top-bar-right a:hover { color: var(--c-accent); background: rgba(255, 255, 255, 0.08); }
.top-bar-right svg { width: 14px; height: 14px; }

/* ============================================
   MAIN HEADER / NAV — Glass morphism on scroll
   ============================================ */
.main-header {
  background: rgba(255, 255, 255, 0.96);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--c-line-light);
  transition:
    background var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    backdrop-filter var(--t-base) var(--ease-out);
  will-change: box-shadow;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(11, 30, 27, 0.08);
  border-bottom-color: transparent;
}

.main-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

/* Logo */
.logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-width: 140px;
}

.logo::after {
  content: 'UAE Chiller';
  display: inline-block;
  margin-left: 10px;
  color: var(--c-ink);
  font-weight: 900;
  font-size: 0.84rem;
  vertical-align: middle;
}

.logo img { height: 46px; width: auto; max-width: 120px; object-fit: contain; }

/* Nav Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--c-ink);
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.01em;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2.5px;
  background: var(--c-accent);
  border-radius: var(--r-pill);
  transition: width var(--t-base) var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.main-nav a:hover { color: var(--c-primary); }

.main-nav svg { width: 14px; height: 14px; min-width: 14px; vertical-align: middle; margin-left: 3px; }

/* Services dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: -10px;
  background: var(--c-surface);
  min-width: 240px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--c-primary);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all var(--t-base) var(--ease-out);
  padding: 8px 0;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateY(4px);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  border-left: 3px solid transparent;
  transition: all var(--t-fast) var(--ease-out);
}

.nav-dropdown-menu a:hover {
  background: var(--c-ice);
  border-left-color: var(--c-primary);
  color: var(--c-primary);
}

.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu .dropdown-divider {
  height: 1px;
  background: var(--c-line);
  margin: 6px 0;
}

/* Quote link in nav */
.nav-quote-link {
  background: var(--c-primary) !important;
  color: var(--c-surface) !important;
  padding: 10px 18px !important;
  border-radius: var(--r-sm) !important;
  font-weight: 800 !important;
  transition: all var(--t-fast) var(--ease-out) !important;
}

.nav-quote-link:hover {
  background: var(--c-primary-dark) !important;
  color: var(--c-surface) !important;
  box-shadow: var(--shadow-glow-teal) !important;
}

.nav-quote-link::after { display: none !important; }

/* Header CTA */
.header-cta { flex-shrink: 0; }
.header-cta .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px; height: 40px;
  position: relative;
  z-index: 1001;
}

.menu-toggle::before,
.menu-toggle::after {
  content: '';
  position: absolute;
  left: 8px;
  width: 24px; height: 2px;
  background: var(--c-ink);
  transition: transform 0.3s ease, top 0.3s ease;
}

.menu-toggle::before { top: 10px; }
.menu-toggle::after { top: 26px; }

.menu-toggle {
  background-image: linear-gradient(var(--c-ink), var(--c-ink));
  background-size: 24px 2px;
  background-repeat: no-repeat;
  background-position: 8px 18px;
  transition: background-image 0.3s ease;
}

.menu-toggle.active::before { top: 18px; transform: rotate(45deg); }
.menu-toggle.active::after { top: 18px; transform: rotate(-45deg); }
.menu-toggle.active { background-image: none; }

/* ============================================
   HERO — Premium dark gradient with depth
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1e1b 0%, #0f3530 40%, #0a5e52 80%, #0d7a6b 100%);
  min-height: auto;
}

/* Subtle grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  z-index: 1;
}

/* Decorative orb — top right */
.hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 162, 0, 0.12) 0%, transparent 70%);
  z-index: 1;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 0;
}

.hero-bg-gradient::before,
.hero-bg-gradient::after { display: none; }

.hero .container {
  position: relative;
  z-index: 5;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
  gap: 56px;
  align-items: center;
  padding: 72px 0 36px;
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--c-success);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.20);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.20); }
  50% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.08); }
}

.hero-content {
  position: relative;
  z-index: 5;
  color: var(--c-surface);
  text-align: left;
  padding: 0;
  max-width: 620px;
}

.hero-content .section-label {
  color: var(--c-accent);
  font-size: 0.76rem;
}

.hero-content h1 {
  color: var(--c-surface);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-bottom: 20px;
  line-height: 1.06;
  max-width: 580px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-dark);
  font-weight: 800;
}

.hero .btn-primary:hover {
  background: var(--c-accent-hover);
  border-color: var(--c-accent-hover);
  box-shadow: var(--shadow-glow-gold);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--c-surface);
  background: rgba(255, 255, 255, 0.06);
}

.hero .btn-outline:hover {
  background: var(--c-surface);
  border-color: var(--c-surface);
  color: var(--c-primary-dark);
}

/* Hero proof grid — mini stat cards */
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  max-width: 480px;
}

.hero-proof-grid div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-sm);
  padding: 14px 12px;
  backdrop-filter: blur(6px);
}

.hero-proof-grid strong,
.hero-proof-grid span { display: block; }

.hero-proof-grid strong {
  color: var(--c-accent);
  font-size: 1.3rem;
  line-height: 1;
}

.hero-proof-grid span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  margin-top: 4px;
  font-weight: 600;
}

/* Hero showcase — photo panel */
.hero-showcase {
  position: relative;
  padding-bottom: 78px;
  /* For 3D tilt effect */
  perspective: 1000px;
}

.hero-photo-panel {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-photo-panel img {
  width: 100%; height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.hero-photo-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 30, 27, 0.60), transparent 55%);
}

.hero-photo-badge {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 2;
  display: grid; gap: 2px;
  color: var(--c-surface);
  background: rgba(11, 30, 27, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  backdrop-filter: blur(10px);
}

.hero-photo-badge strong { font-size: 1.15rem; line-height: 1; }
.hero-photo-badge span { color: rgba(255, 255, 255, 0.60); font-size: 0.8rem; }

/* Dispatch card floating */
.hero-dispatch-card {
  position: absolute;
  right: 18px; bottom: 0;
  width: min(360px, calc(100% - 36px));
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: var(--shadow-xl);
  z-index: 3;
}

.hero-dispatch-label {
  margin: 0 0 4px;
  color: var(--c-accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.hero-dispatch-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--c-ink);
}

.hero-dispatch-card ul { display: grid; gap: 7px; margin-bottom: 14px; }

.hero-dispatch-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--c-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-dispatch-card li svg {
  width: 16px; height: 16px; min-width: 16px;
  color: var(--c-primary);
  margin-top: 2px;
}

.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  border-radius: var(--r-sm);
  background: var(--c-success);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  transition: all var(--t-fast) var(--ease-out);
}

.hero-whatsapp:hover {
  background: #1ead54;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transform: translateY(-1px);
}

.hero-whatsapp svg { width: 18px; height: 18px; }

/* Hero vehicle cards */
.hero-vehicles {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  max-width: var(--max-w);
  padding: 0 0 48px;
}

.hero-vehicle-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-md);
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--t-base) var(--ease-out);
}

.hero-vehicle-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-vehicle-card-img {
  height: 78px;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.90);
}

.hero-vehicle-card img {
  width: 100%; height: 100%;
  margin: 0;
  object-fit: cover;
  filter: none;
}

.hero-vehicle-card-body p { margin-bottom: 0; }
.hero-vehicle-card h3 { color: var(--c-surface); font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.hero-vehicle-card p { color: rgba(255, 255, 255, 0.55); font-size: 0.8rem; }

/* ============================================
   STATS BAR — Bold gradient with glass cards
   ============================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 50%, var(--c-primary-light) 100%);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0, transparent 30px,
    rgba(255, 255, 255, 0.025) 30px,
    rgba(255, 255, 255, 0.025) 60px
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-sm);
  backdrop-filter: blur(6px);
  transition: all var(--t-base) var(--ease-out);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.stat-number {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--c-surface);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.70);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; }
.section-light { background: var(--c-page); }
.section-white { background: var(--c-surface); }
.section-header { margin-bottom: 48px; }

/* Wave dividers */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ============================================
   SERVICE CARDS — 3-column premium cards
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--c-surface);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-line-light);
  transition: all var(--t-base) var(--ease-out);
  box-shadow: var(--shadow-sm);
}

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

.service-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.5 / 1;
}

.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.service-card:hover .service-card-img img { transform: scale(1.06); }

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(11, 30, 27, 0.45) 100%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
}

.service-card:hover .service-card-img::after { opacity: 1; }

.service-card-temp-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--c-primary-dark);
  color: #a5f3fc;
  border: 1px solid rgba(165, 243, 252, 0.2);
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.service-card-body { padding: 24px; }
.service-card-body h3 { margin-bottom: 10px; font-size: 1.25rem; }
.service-card-body p { font-size: 0.92rem; margin-bottom: 18px; color: var(--c-muted); }

/* ============================================
   BENTO BOX FEATURES GRID (V2)
   ============================================ */
.features-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
}

.bento-item {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: 32px;
  border: 1px solid var(--c-line-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-base) var(--ease-out);
  /* For JS Tilt */
  transform-style: preserve-3d;
  will-change: transform;
}

.bento-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 94, 82, 0.15);
}

/* Specific Grid Placements */
.bento-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.bento-item:nth-child(2) { grid-column: span 2; grid-row: span 1; background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary)); color: white; }
.bento-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.bento-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }

.bento-item:nth-child(2) h3, .bento-item:nth-child(2) p { color: white; }
.bento-item:nth-child(2) .feature-icon { background: rgba(255, 255, 255, 0.1); color: white; }

.bento-img-bg {
  position: absolute; inset: 0; z-index: 0;
}
.bento-img-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.15; mix-blend-mode: overlay;
}
.bento-item > * { position: relative; z-index: 1; transform: translateZ(20px); }

.feature-icon {
  width: 56px; height: 56px;
  background: var(--c-ice);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--c-primary);
  transition: transform var(--t-base) var(--ease-bounce);
}

.bento-item:hover .feature-icon { transform: scale(1.1); }
.feature-icon svg { width: 28px; height: 28px; }

.bento-item h3 { font-size: 1.25rem; margin-bottom: 12px; }
.bento-item p { font-size: 0.95rem; margin-bottom: 0; line-height: 1.6; }

/* ============================================
   INDUSTRIES GRID — Colorful icons
   ============================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-item {
  background: var(--c-surface);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  border: 1px solid var(--c-line-light);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-base) var(--ease-out);
}

.industry-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary-light);
}

.industry-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--t-base) var(--ease-bounce);
}

.industry-item:hover .industry-icon { transform: scale(1.1) rotate(-3deg); }

.industry-icon svg { width: 24px; height: 24px; }

/* Per-industry icon colors */
.industry-item:nth-child(1) .industry-icon { background: #FFF3E0; color: #E65100; }
.industry-item:nth-child(2) .industry-icon { background: #E8F5E9; color: #2E7D32; }
.industry-item:nth-child(3) .industry-icon { background: #E3F2FD; color: #1565C0; }
.industry-item:nth-child(4) .industry-icon { background: #F3E5F5; color: #6A1B9A; }
.industry-item:nth-child(5) .industry-icon { background: #E0F2F1; color: #00695C; }
.industry-item:nth-child(6) .industry-icon { background: #FFF8E1; color: #F57F17; }

.industry-item h3 { font-size: 0.98rem; margin-bottom: 4px; }
.industry-item p { font-size: 0.85rem; margin-bottom: 0; }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(228, 162, 0, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 30px;
}

.testimonial-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 250, 0.98));
  border-radius: var(--r-lg);
  padding: 26px;
  border: 1px solid rgba(210, 229, 223, 0.95);
  box-shadow: 0 16px 38px rgba(11, 30, 27, 0.08);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 4px solid var(--c-accent);
  pointer-events: none;
  z-index: -1;
}

.testimonial-card::after {
  content: "\201C";
  position: absolute;
  right: 22px;
  top: 16px;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(10, 94, 82, 0.08);
  font-weight: 700;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 162, 0, 0.45);
  box-shadow: 0 22px 48px rgba(11, 30, 27, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px; height: 18px;
  fill: var(--c-accent);
  color: var(--c-accent);
}

.testimonial-card blockquote {
  font-size: 0.98rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--c-ice);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  font-weight: 800;
  font-size: 0.85rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--c-ink);
}

.testimonial-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--c-faint);
}

.testimonial-card cite {
  display: flex !important;
  align-items: center;
  gap: 12px;
  color: var(--c-ink);
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
  margin-top: auto;
}

.testimonial-card cite::before {
  content: "";
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: 0 0 38px;
  background:
    linear-gradient(135deg, rgba(10, 94, 82, 0.14), rgba(228, 162, 0, 0.18)),
    var(--c-ice);
  border: 1px solid rgba(10, 94, 82, 0.12);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.45);
}

/* ============================================
   QUOTE SECTION — Cinematic dark with glass form
   ============================================ */
.quote-section {
  background:
    linear-gradient(100deg, rgba(11, 30, 27, 0.97) 0%, rgba(11, 30, 27, 0.90) 45%, rgba(10, 94, 82, 0.75) 100%),
    url("assets/images/service-truck-front.webp") center/cover no-repeat;
  color: var(--c-surface);
  position: relative;
  overflow: hidden;
}

/* Decorative orb */
.quote-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 162, 0, 0.10) 0%, transparent 70%);
}

.quote-section .section-label,
.quote-section h2,
.quote-section h3 { color: var(--c-surface); }

.quote-section p,
.quote-text li { color: rgba(255, 255, 255, 0.78); }

.quote-form-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
}

.quote-text ul { display: grid; gap: 12px; margin-top: 24px; }

.quote-text li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
}

.quote-text li svg {
  width: 20px; height: 20px; min-width: 20px;
  color: var(--c-accent);
  margin-top: 3px;
}

.quote-form {
  background: var(--c-surface);
  border-radius: var(--r-md);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-form h3 { color: var(--c-ink); margin-bottom: 20px; }

.quote-form .btn { width: 100%; justify-content: center; }

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--c-ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--c-ink);
  background: var(--c-surface);
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(10, 94, 82, 0.08);
}

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

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

.form-honeypot { display: none; }

.form-notice {
  padding: 16px 20px;
  border-radius: var(--r-sm);
  margin-bottom: 24px;
  font-weight: 600;
}

.form-notice.success { background: #E8F5E9; color: #1B5E20; border: 1px solid #A5D6A7; }
.form-notice.error { background: #FFEBEE; color: #B71C1C; border: 1px solid #FFCDD2; }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--c-surface);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-line-light);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}

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

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--c-ice);
}

.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

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

.blog-card-img--fallback img { filter: saturate(0.95); }

.blog-card-body { padding: 22px; flex: 1; }

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--c-faint);
  margin-bottom: 8px;
}

.blog-card-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: var(--c-surface);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}

.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body h3 a { color: var(--c-ink); }
.blog-card-body h3 a:hover { color: var(--c-primary); }
.blog-card-body p { font-size: 0.9rem; margin-bottom: 14px; }

.blog-card-footer { padding: 0 22px 22px; }

.blog-card-placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(10, 94, 82, 0.3);
  background: linear-gradient(135deg, var(--c-ice), #ffffff);
}

.blog-card-placeholder svg { width: 72px; height: 72px; }

/* ============================================
   CTA BANNER — Full dark gradient
   ============================================ */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(11, 30, 27, 0.96), rgba(10, 94, 82, 0.90)),
    url("assets/images/fleet-yard.webp") center/cover no-repeat;
  color: var(--c-surface);
  text-align: center;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0, transparent 30px,
    rgba(255, 255, 255, 0.02) 30px,
    rgba(255, 255, 255, 0.02) 60px
  );
}

/* Decorative orb */
.cta-banner::after {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(228, 162, 0, 0.06);
}

.cta-banner .container { position: relative; }
.cta-banner h2 { color: var(--c-surface); margin-bottom: 14px; }
.cta-banner p { color: rgba(255, 255, 255, 0.72); max-width: 650px; margin: 0 auto 28px; }

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, #0b1e1b 0%, #0f3530 40%, #0a5e52 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-banner-texture {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(255, 255, 255, 0.015) 30px, rgba(255, 255, 255, 0.015) 60px);
}

.page-banner-circle {
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.page-banner .container { position: relative; }

.page-banner h1 { color: var(--c-surface); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }

.breadcrumbs { color: rgba(255, 255, 255, 0.65); font-size: 0.88rem; }
.breadcrumbs a { color: rgba(255, 255, 255, 0.80); }
.breadcrumbs a:hover { color: var(--c-accent); }
.breadcrumbs span { margin: 0 8px; }

/* ============================================
   SERVICE DETAIL LAYOUT
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.service-detail-content { min-width: 0; }
.service-detail-content h2 { margin-bottom: 18px; }
.service-detail-content h3 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--c-primary-dark); }
.service-detail-content p { font-size: 0.95rem; }
.service-detail-content ul { margin-bottom: 1.2rem; }
.service-detail-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--c-muted);
}
.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
}

.service-detail-img {
  width: 100%;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  margin: 24px 0;
}

.service-detail-sidebar { position: sticky; top: 90px; }

.sidebar-quote-form {
  background: var(--c-ice);
  border-radius: var(--r-md);
  padding: 28px;
  border-top: 4px solid var(--c-primary);
}

.sidebar-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--c-primary-dark);
}

.sidebar-other-services {
  background: var(--c-ice);
  border-radius: var(--r-md);
  padding: 24px;
  margin-top: 24px;
  border-left: 4px solid var(--c-primary);
}

.sidebar-other-services h4 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--c-primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-line);
}

.sidebar-other-services ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--c-ink);
  padding: 8px 10px;
  border-radius: var(--r-sm);
  transition: all var(--t-fast) var(--ease-out);
}

.sidebar-other-services ul li a:hover {
  background: var(--c-surface);
  color: var(--c-primary);
}

.sidebar-other-services ul li a svg { width: 14px; height: 14px; color: var(--c-primary); flex-shrink: 0; }

/* ============================================
   AREAS GRID
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.area-card {
  background: var(--c-surface);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-line-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base) var(--ease-out);
}

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

.area-card-header { padding: 20px 24px; background: var(--c-primary); }

.area-card-header--dubai     { background: linear-gradient(135deg, #073b33, #0a5e52); }
.area-card-header--abudhabi  { background: linear-gradient(135deg, #006064, #00838F); }
.area-card-header--sharjah   { background: linear-gradient(135deg, #005662, #00838F); }
.area-card-header--ajman     { background: linear-gradient(135deg, #00574F, #00796B); }
.area-card-header--rak       { background: linear-gradient(135deg, #00484A, #006064); }
.area-card-header--fujairah  { background: linear-gradient(135deg, #004D40, #00695C); }
.area-card-header--uaq       { background: linear-gradient(135deg, #00424E, #006064); }
.area-card-header--gcc       { background: linear-gradient(135deg, #cc8f00, #e4a200); }

.area-card-header h2 { color: var(--c-surface); font-size: 1.15rem; margin-bottom: 0; }

.area-card-body { padding: 20px 24px; }
.area-card-body p { font-size: 0.9rem; margin-bottom: 14px; }

.area-zones { margin-bottom: 16px; }
.area-zones li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--c-muted); padding: 3px 0; }
.area-zones li svg { width: 14px; height: 14px; color: var(--c-primary); flex-shrink: 0; }
.area-services { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 860px; margin: 0 auto; }

.faq-item {
  background: var(--c-surface);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
  border: 1px solid var(--c-line);
  overflow: hidden;
  transition: box-shadow var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}

.faq-item.active { box-shadow: var(--shadow-md); border-color: var(--c-primary); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-ink);
  text-align: left;
  transition: color var(--t-fast) var(--ease-out);
}

.faq-question:hover { color: var(--c-primary); }

.faq-question svg {
  width: 20px; height: 20px;
  color: var(--c-primary);
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease-out);
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--c-muted);
  border-top: 1px solid var(--c-line);
  padding-top: 16px;
}

.faq-item.active .faq-answer { max-height: 800px; }

/* ============================================
   QUOTE PAGE
   ============================================ */
.quote-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.quote-benefits { margin-bottom: 32px; }
.quote-benefits h3 { font-size: 1.2rem; margin-bottom: 16px; color: var(--c-primary-dark); }
.quote-benefits ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 0.95rem; color: var(--c-ink);
}
.quote-benefits ul li svg { width: 18px; height: 18px; color: var(--c-primary); flex-shrink: 0; margin-top: 2px; }

.contact-aside { background: var(--c-ice); border-radius: var(--r-md); padding: 28px; }

.contact-aside-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--c-line);
}
.contact-aside-list li:last-child { border-bottom: none; }
.contact-aside-list li svg { width: 20px; height: 20px; color: var(--c-primary); flex-shrink: 0; margin-top: 2px; }

/* ============================================
   CONTACT PAGE CARDS
   ============================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--c-surface);
  border-radius: var(--r-md);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line-light);
  border-top: 4px solid var(--c-primary);
  transition: all var(--t-base) var(--ease-out);
}

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

.contact-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  background: var(--c-ice);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--c-primary);
}
.contact-card-icon svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-card p { font-size: 0.9rem; margin-bottom: 4px; }

.contact-map { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-map iframe { display: block; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-image-wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-image-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   BLOG ARCHIVE
   ============================================ */
.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Single post */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-primary));
  z-index: 9999;
  transition: width 0.1s linear;
}

.single-post-featured {
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
}
.single-post-featured img { width: 100%; height: auto; display: block; }

.single-post-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 0.88rem; color: var(--c-muted);
}
.single-post-meta svg { width: 18px; height: 18px; color: var(--c-primary); vertical-align: middle; }
.single-post-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--c-muted); opacity: 0.5; }

.post-category-badge {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: var(--c-surface);
  border-radius: var(--r-pill);
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 700;
}

.single-post-body { font-size: 1.02rem; line-height: 1.85; }
.single-post-body p { color: var(--c-ink); margin-bottom: 1.3rem; }

.single-post-body p:first-of-type::first-letter {
  font-size: 3.5rem; font-weight: 800;
  color: var(--c-primary);
  float: left; line-height: 0.8;
  margin: 6px 12px 0 0;
  font-family: var(--font-heading);
}

.single-post-body h2 {
  font-size: 1.5rem; margin: 2rem 0 1rem;
  color: var(--c-primary-dark);
  border-left: 4px solid var(--c-primary);
  padding-left: 14px;
}

.single-post-body h3 {
  font-size: 1.2rem; margin: 1.5rem 0 0.75rem;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--c-ice);
}

.single-post-body ul, .single-post-body ol { margin: 1rem 0 1.5rem 1rem; }

.single-post-body ul li {
  position: relative; padding-left: 20px; margin-bottom: 8px; color: var(--c-ink);
}
.single-post-body ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-primary);
}

.single-post-body ol { list-style: none; counter-reset: post-counter; }
.single-post-body ol li {
  counter-increment: post-counter; padding-left: 40px;
  position: relative; margin-bottom: 10px; color: var(--c-ink);
}
.single-post-body ol li::before {
  content: counter(post-counter);
  position: absolute; left: 0; top: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: white; font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.single-post-body blockquote {
  border-left: 4px solid var(--c-accent);
  background: var(--c-ice);
  padding: 16px 20px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 1.5rem 0; font-style: italic; color: var(--c-ink);
}

.single-post-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.92rem; }
.single-post-body table thead tr { background: var(--c-primary); color: white; }
.single-post-body table th, .single-post-body table td { padding: 12px 16px; text-align: left; border: 1px solid var(--c-line); }
.single-post-body table tbody tr:nth-child(even) { background: var(--c-ice); }

.single-post-cta {
  background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
  border-radius: var(--r-md);
  padding: 36px 40px;
  color: var(--c-surface);
  margin: 40px 0;
  position: relative; overflow: hidden;
}
.single-post-cta::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%; background: rgba(255, 255, 255, 0.06);
}
.single-post-cta h3 { color: white; margin-bottom: 10px; font-size: 1.3rem; }
.single-post-cta p { color: rgba(255, 255, 255, 0.85); margin-bottom: 20px; }

.single-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }

.post-nav-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  transition: all var(--t-base) var(--ease-out);
}
.post-nav-item:hover { border-color: var(--c-primary); box-shadow: var(--shadow-md); }
.post-nav-item .post-nav-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--c-primary); font-weight: 700; margin-bottom: 6px;
}
.post-nav-item h4 { font-size: 0.95rem; }

.section-related-posts .blog-archive-grid { margin-top: 32px; }

/* ============================================
   CLIENTS MARQUEE (V2 - High Performance)
   ============================================ */
.clients-marquee-section {
  padding: 40px 0;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-line-light);
  overflow: hidden;
}

.clients-marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  gap: 80px;
  animation: marquee-scroll 40s linear infinite;
  padding: 0 40px;
}

.clients-marquee:hover .clients-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.client-logo {
  display: flex; align-items: center; justify-content: center;
  height: 40px; width: 140px;
  opacity: 0.4; transition: opacity var(--t-fast);
  filter: grayscale(100%) brightness(0.6);
}
.client-logo:hover { opacity: 1; filter: none; }
.client-logo svg { width: 100%; height: 100%; }

/* ============================================
   UTILITIES (V2)
   ============================================ */
.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #a5d6a7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.magnetic-btn {
  /* JS will apply transform */
  will-change: transform;
}

/* ============================================
   FOOTER — Premium dark footer
   ============================================ */
.site-footer {
  background: var(--c-dark);
  color: rgba(255, 255, 255, 0.80);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo { height: 48px; width: auto; margin-bottom: 16px; }

.footer-col p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.55); margin-bottom: 0; }

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-accent);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-links li a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--t-fast) var(--ease-out);
}
.footer-links li a svg { width: 14px; height: 14px; color: var(--c-primary-light); flex-shrink: 0; }
.footer-links li a:hover { color: var(--c-accent); padding-left: 4px; }

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

.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.86rem; color: rgba(255, 255, 255, 0.55);
}
.footer-contact li svg { width: 16px; height: 16px; color: var(--c-primary-light); flex-shrink: 0; margin-top: 3px; }
.footer-contact li a { color: rgba(255, 255, 255, 0.55); }
.footer-contact li a:hover { color: var(--c-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255, 255, 255, 0.40); margin-bottom: 0; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--t-base) var(--ease-out);
}

.footer-social a:hover {
  background: var(--c-primary);
  color: var(--c-surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-teal);
}

.footer-social a svg { width: 16px; height: 16px; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: var(--c-success);
  color: var(--c-surface);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: all var(--t-base) var(--ease-out);
  animation: whatsapp-pulse 3s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}

.whatsapp-float:hover {
  background: #1ead54;
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-float svg { width: 30px; height: 30px; }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.reveal-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  will-change: opacity, transform;
}

.reveal-children.revealed > * { opacity: 1; transform: none; }

/* Stagger children */
.reveal-children.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-children.revealed > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-children.revealed > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-children.revealed > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-children.revealed > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-children.revealed > *:nth-child(6) { transition-delay: 0.40s; }

/* Hero entrance animation */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

.hero-content .section-label,
.hero-content h1,
.hero-content p,
.hero-actions,
.hero-proof-grid,
.hero-eyebrow {
  animation: hero-fade-up 0.8s var(--ease-out) both;
}

.hero-eyebrow { animation-delay: 0.1s; }
.hero-content .section-label { animation-delay: 0.2s; }
.hero-content h1 { animation-delay: 0.35s; }
.hero-content p { animation-delay: 0.5s; }
.hero-actions { animation-delay: 0.65s; }
.hero-proof-grid { animation-delay: 0.8s; }

.hero-photo-panel {
  animation: hero-fade-up 1s var(--ease-out) 0.4s both;
}

.hero-dispatch-card {
  animation: hero-fade-up 0.8s var(--ease-out) 0.8s both;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-children > * { opacity: 1; transform: none; transition: none; }
  .hero-content .section-label,
  .hero-content h1,
  .hero-content p,
  .hero-actions,
  .hero-proof-grid,
  .hero-eyebrow,
  .hero-photo-panel,
  .hero-dispatch-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .whatsapp-float { animation: none; }
}

/* ============================================
   404 PAGE
   ============================================ */
.error-404 { text-align: center; }

/* ============================================
   MOBILE NAV
   ============================================ */
@media (max-width: 991px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--c-surface);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--c-primary);
    animation: slideDown 0.25s ease;
    z-index: 999;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .main-nav.active { display: flex; }

  .main-nav a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid var(--c-line-light);
    font-size: 0.92rem;
  }

  .main-nav a::after { display: none; }

  .main-nav a.active {
    background: var(--c-ice);
    border-left: 4px solid var(--c-primary);
    color: var(--c-primary);
  }

  .nav-dropdown { position: static; }
  .nav-dropdown > a { display: flex; justify-content: space-between; align-items: center; }

  .nav-dropdown-menu {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    border-left: 4px solid var(--c-primary);
    background: var(--c-ice);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-dropdown.open .nav-dropdown-menu { max-height: 400px; }

  .nav-dropdown-menu a { padding: 12px 24px; background: none; border-bottom: 1px solid var(--c-line-light); border-left: none; }

  .nav-quote-link {
    margin: 8px 16px !important;
    border-radius: var(--r-sm) !important;
    text-align: center;
    padding: 12px 24px !important;
  }

  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .header-cta { display: none; }
  .main-header .container { position: relative; }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet nav visible */
@media (min-width: 861px) and (max-width: 991px) {
  .main-header .container { gap: 14px; }

  .main-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 0;
    background: transparent;
    border-top: 0;
    box-shadow: none;
    animation: none;
  }

  .main-nav a {
    display: inline-flex; align-items: center;
    padding: 6px 0; border-bottom: 0;
    font-size: 0.72rem;
  }
  .main-nav a.active { background: transparent; border-left: 0; }

  .nav-quote-link { margin: 0 !important; padding: 10px 12px !important; }

  .nav-dropdown { position: relative; }
  .nav-dropdown-menu {
    position: absolute;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--c-primary);
    border-left: 0;
    background: #fff;
    padding: 8px 0;
    max-height: none;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(4px);
  }
  .menu-toggle { display: none; }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
    gap: 28px;
    padding: 48px 0 24px;
  }
  .hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
  .hero-content p { font-size: 0.98rem; }
  .hero-proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-showcase { padding-bottom: 76px; }
  .hero-photo-panel, .hero-photo-panel img { min-height: 340px; }
  .hero-dispatch-card {
    position: absolute; right: 14px; bottom: 0;
    width: min(330px, calc(100% - 28px)); margin-top: 0;
  }
  .hero-vehicles { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .hero-vehicle-card { grid-template-columns: 85px minmax(0, 1fr); gap: 10px; padding: 12px; }
  .hero-vehicle-card-img { height: 64px; }
  .hero-vehicle-card h3 { font-size: 0.88rem; }
  .hero-vehicle-card p { font-size: 0.76rem; }
}

@media (max-width: 1180px) {
  .header-cta { display: none; }
  .main-nav { justify-content: flex-end; }
}

@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); }
}

@media (min-width: 700px) and (max-width: 1100px) {
  .testimonials-grid .testimonial-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    min-height: 210px;
  }
}

@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-sidebar { position: static; }
  .quote-page-wrapper { grid-template-columns: 1fr; }
  .single-post-nav { grid-template-columns: 1fr; }
  .hero-vehicles { grid-template-columns: 1fr; gap: 10px; }
  .top-bar-left { gap: 12px; font-size: 0.78rem; }
  .section-related-posts .blog-archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .logo img { height: 44px; max-width: 110px; }
  .logo::after { font-size: 0.78rem; }
  .hero-layout { grid-template-columns: 1fr; gap: 24px; padding: 52px 0 24px; }
  .hero-photo-panel, .hero-photo-panel img { min-height: 300px; }
  .hero-showcase { padding-bottom: 0; }
  .hero-dispatch-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 14px; }
}

@media (max-width: 768px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .top-bar { display: none; }
  .section { padding: 56px 0; }
  .logo::after { display: none; }

  .hero-layout { padding-top: 42px; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-proof-grid { grid-template-columns: 1fr; }
  .hero-photo-panel, .hero-photo-panel img { min-height: 260px; }
  .hero-vehicles { padding: 0 0 36px; }
  .hero-content p { margin-left: 0; margin-right: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-archive-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .quote-form-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .top-bar-left { flex-direction: column; gap: 4px; align-items: flex-start; }
  .section-related-posts .blog-archive-grid { grid-template-columns: 1fr; }

  .btn-lg {
    width: 100%;
    justify-content: center;
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .single-post-body p:first-of-type::first-letter { font-size: 2.5rem; }
}

/* ============================================
   CODEX UI CORRECTION — ICE GRAPHITE THEME
   ============================================ */
:root {
  --c-primary: #164e63;
  --c-primary-light: #0e7490;
  --c-primary-dark: #0f172a;
  --c-primary-glow: rgba(14, 116, 144, 0.22);
  --c-accent: #f59e0b;
  --c-accent-hover: #d97706;
  --c-accent-glow: rgba(245, 158, 11, 0.26);
  --c-dark: #0f172a;
  --c-page: #f6fafc;
  --c-ice: #eaf7fb;
  --c-ink: #111827;
  --c-muted: #5f6f7a;
  --c-faint: #8ba0aa;
  --c-line: #d7e6ec;
  --c-line-light: #edf4f7;
  --shadow-glow-teal: 0 8px 30px rgba(14, 116, 144, 0.18);
}

body {
  background: linear-gradient(180deg, #ffffff 0, #f6fafc 48%, #ffffff 100%);
}

.top-bar,
.site-footer {
  background: #0f172a;
}

.main-header {
  border-bottom: 1px solid #e6eef2;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--c-primary);
}

.main-nav a::after,
.main-nav a.active::after {
  background: var(--c-accent);
}

.nav-quote-link,
.btn-primary {
  background: var(--c-accent) !important;
  border-color: var(--c-accent) !important;
  color: #ffffff !important;
}

.nav-quote-link:hover,
.btn-primary:hover {
  background: var(--c-accent-hover) !important;
  border-color: var(--c-accent-hover) !important;
}

.header-cta .btn {
  background: var(--c-primary-dark) !important;
  border-color: var(--c-primary-dark) !important;
}

.page-banner,
.stats-bar,
.single-post-cta {
  background: linear-gradient(135deg, #0f172a 0%, #164e63 100%) !important;
}

.section-label,
.footer-heading,
.post-nav-item .post-nav-label {
  color: var(--c-accent);
}

.feature-icon,
.industry-icon,
.contact-card-icon {
  background: var(--c-ice) !important;
  color: var(--c-primary) !important;
}

.service-card-temp-badge,
.post-category-badge {
  background: var(--c-primary-dark) !important;
  color: #dff7ff !important;
}

.quote-section {
  background:
    linear-gradient(100deg, rgba(15, 23, 42, 0.96) 0%, rgba(22, 78, 99, 0.88) 62%, rgba(14, 116, 144, 0.70) 100%),
    url("assets/images/service-truck-front.webp") center/cover no-repeat !important;
}

.cta-banner {
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 54%, rgba(234, 247, 251, 0.88) 54%, rgba(234, 247, 251, 0.88) 100%) !important;
}

.sidebar-quote-form,
.contact-aside,
.area-card,
.service-card,
.feature-item,
.industry-item,
.blog-card {
  border-color: var(--c-line);
}

/* Icon safety: prevents inline SVG arrows/checks from expanding in content sidebars. */
.service-detail-sidebar a svg,
.service-detail-sidebar button svg,
.service-detail-content a svg,
.service-detail-content button svg,
.cta-banner a svg,
.footer-links a svg,
.btn svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  flex: 0 0 16px !important;
  display: inline-block !important;
  vertical-align: -3px;
}

.btn svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
}

.sidebar-quote-form + div {
  background: #f2f9fc !important;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
}

.sidebar-quote-form + div a {
  color: var(--c-primary) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sidebar-quote-form + div + div {
  background: var(--c-primary-dark) !important;
}

.whatsapp-float,
a[href*="wa.me"] {
  --c-success: #25d366;
}

/* ============================================
   FINAL UI SOURCE OF TRUTH — CALM COLD CHAIN
   ============================================ */
:root {
  --c-primary: #0f172a;
  --c-primary-light: #155e75;
  --c-primary-dark: #0b1120;
  --c-accent: #f59e0b;
  --c-accent-hover: #d97706;
  --c-dark: #0f172a;
  --c-surface: #ffffff;
  --c-page: #f7fafc;
  --c-ice: #eef7fb;
  --c-ink: #111827;
  --c-muted: #64727d;
  --c-faint: #8fa0aa;
  --c-line: #dce8ee;
  --c-line-light: #eef4f7;
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 12px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 26px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.12);
}

body {
  color: var(--c-ink);
  background: var(--c-surface);
}

.top-bar,
.site-footer {
  background: var(--c-primary-dark) !important;
}

.main-header {
  background: rgba(255,255,255,0.98) !important;
  border-bottom: 1px solid var(--c-line-light) !important;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04) !important;
}

.main-header.scrolled {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07) !important;
}

.logo::after {
  color: var(--c-primary);
}

.main-nav a {
  color: var(--c-ink) !important;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--c-primary-light) !important;
}

.main-nav a::after,
.main-nav a.active::after {
  background: var(--c-accent) !important;
}

.nav-quote-link,
.btn-primary {
  background: var(--c-accent) !important;
  border-color: var(--c-accent) !important;
  color: #fff !important;
}

.nav-quote-link:hover,
.btn-primary:hover {
  background: var(--c-accent-hover) !important;
  border-color: var(--c-accent-hover) !important;
}

a.btn[href*="wa.me"],
a.btn[href*="api.whatsapp.com"] {
  background: var(--c-success) !important;
  border-color: var(--c-success) !important;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.22);
}

a.btn[href*="wa.me"]:hover,
a.btn[href*="api.whatsapp.com"]:hover {
  background: #1fb85a !important;
  border-color: #1fb85a !important;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.30);
}

.header-cta .btn {
  background: var(--c-primary) !important;
  border-color: var(--c-primary) !important;
  color: #fff !important;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%) !important;
  border-bottom: 1px solid var(--c-line-light);
}

.hero::before,
.hero-bg-gradient,
.hero-bg-gradient::before,
.hero-bg-gradient::after,
.stats-bar::before,
.quote-section::before,
.page-banner-texture {
  display: none !important;
  content: none !important;
  background: none !important;
  background-image: none !important;
}

.hero-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 46px;
  padding: 58px 0 28px;
}

.hero-eyebrow {
  border-color: var(--c-line);
  color: var(--c-primary-light);
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
}

.hero-status-dot {
  background: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18);
}

.section-label,
.hero-content .section-label,
.hero-dispatch-label,
.footer-heading,
.post-nav-item .post-nav-label {
  color: var(--c-primary-light) !important;
}

.hero-content h1,
.section-title {
  color: var(--c-primary);
}

.hero-content p,
.section-subtitle,
p {
  color: var(--c-muted);
}

.hero .btn-outline {
  color: var(--c-primary) !important;
  background: #fff !important;
  border-color: var(--c-line) !important;
}

.hero .btn-outline:hover {
  color: #fff !important;
  background: var(--c-primary) !important;
  border-color: var(--c-primary) !important;
}

.hero-proof-grid div,
.hero-vehicle-card,
.service-card,
.feature-item,
.industry-item,
.blog-card,
.contact-card,
.area-card,
.sidebar-quote-form,
.contact-aside {
  background: #fff !important;
  border-color: var(--c-line) !important;
  box-shadow: var(--shadow-sm) !important;
}

.hero-proof-grid div {
  border-left: 3px solid #38bdf8 !important;
}

.hero-proof-grid strong,
.hero-vehicle-card h3,
.service-card-body h3,
.feature-item h3,
.industry-item h3 {
  color: var(--c-primary) !important;
}

.hero-photo-panel {
  background: #fff !important;
  border: 1px solid var(--c-line) !important;
  box-shadow: var(--shadow-md) !important;
  border-radius: var(--r-lg) !important;
}

.hero-photo-badge {
  background: rgba(15, 23, 42, 0.88) !important;
  border-color: rgba(255,255,255,0.16) !important;
}

.hero-dispatch-card {
  background: #fff !important;
  border-color: var(--c-line) !important;
  box-shadow: var(--shadow-md) !important;
  border-radius: var(--r-lg) !important;
}

.hero-dispatch-card li,
.hero-dispatch-card p {
  color: var(--c-muted) !important;
}

.hero-dispatch-card li svg {
  color: var(--c-primary-light) !important;
}

.hero-whatsapp {
  background: var(--c-primary) !important;
  color: #fff !important;
}

.hero-whatsapp:hover {
  background: var(--c-primary-light) !important;
}

.hero-vehicles {
  padding-bottom: 30px;
}

.hero-vehicle-card {
  border-left: 0 !important;
  border-top: 3px solid #38bdf8 !important;
  border-radius: var(--r-md) !important;
}

.stats-bar {
  background: var(--c-page) !important;
  border-top: 1px solid var(--c-line-light);
  border-bottom: 1px solid var(--c-line-light);
}

.stat-item {
  background: #fff !important;
  border: 1px solid var(--c-line) !important;
  box-shadow: var(--shadow-sm) !important;
}

.stat-number {
  color: var(--c-primary) !important;
}

.stat-label {
  color: var(--c-muted) !important;
}

.section,
.section-light,
.section-white {
  background: #fff !important;
}

.section-light:nth-of-type(even),
.clients-marquee-section {
  background: var(--c-page) !important;
}

.feature-icon,
.industry-icon,
.contact-card-icon {
  background: var(--c-ice) !important;
  color: var(--c-primary-light) !important;
}

.feature-item::after {
  background: #38bdf8 !important;
}

.service-card-temp-badge,
.post-category-badge {
  background: var(--c-primary) !important;
  color: #e0f7ff !important;
}

.service-card-body .btn {
  color: var(--c-primary) !important;
  border-color: var(--c-primary) !important;
  background: transparent !important;
}

.service-card-body .btn:hover {
  color: #fff !important;
  background: var(--c-primary) !important;
}

.page-banner,
.single-post-cta {
  background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary-light)) !important;
}

.quote-section {
  background:
    linear-gradient(105deg, rgba(15,23,42,0.94), rgba(21,94,117,0.86)),
    url("assets/images/service-truck-front.webp") center/cover no-repeat !important;
}

.quote-section h2,
.quote-section h3,
.quote-section .section-label {
  color: #fff !important;
}

.quote-section p,
.quote-text li {
  color: rgba(255,255,255,0.82) !important;
}

.quote-text li svg {
  color: #38bdf8 !important;
}

.quote-form h3 {
  color: var(--c-primary) !important;
}

.cta-banner {
  background: var(--c-page) !important;
  text-align: left;
}

.sidebar-quote-form + div {
  background: var(--c-page) !important;
  border: 1px solid var(--c-line) !important;
}

.sidebar-quote-form + div a {
  color: var(--c-primary-light) !important;
}

.sidebar-quote-form + div + div {
  background: var(--c-primary) !important;
}

.whatsapp-float {
  background: #25d366 !important;
}

@media (min-width: 900px) and (max-width: 991px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr) !important;
    gap: 28px;
  }
  .hero-showcase {
    padding-bottom: 76px !important;
  }
  .hero-dispatch-card {
    position: absolute !important;
    right: 14px !important;
    bottom: 0 !important;
    width: min(330px, calc(100% - 28px)) !important;
  }
}

@media (max-width: 899px) {
  .hero-layout,
  .section-header.text-center,
  .service-card,
  .cta-banner .container {
    grid-template-columns: 1fr !important;
  }
  .hero-showcase {
    padding-bottom: 0 !important;
  }
  .hero-dispatch-card {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin-top: 14px !important;
  }
}

/* Header and hero readability polish */
.main-header .container {
  max-width: 1260px;
  gap: 22px;
}

.logo {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  min-width: 176px;
}

.logo img {
  width: auto !important;
  height: 46px !important;
  max-width: 96px !important;
  object-fit: contain;
}

.logo::after {
  content: "UAE Chiller";
  margin-left: 0 !important;
  color: var(--c-primary) !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  line-height: 1;
  white-space: nowrap;
}

.main-nav {
  flex: 1;
  justify-content: center;
  gap: clamp(14px, 1.2vw, 22px) !important;
}

.main-nav a,
.nav-dropdown > a,
.nav-quote-link,
.header-cta .btn {
  white-space: nowrap !important;
}

.main-nav a {
  font-size: 0.82rem !important;
  line-height: 1 !important;
}

.nav-dropdown > a {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
}

.nav-quote-link {
  padding: 13px 18px !important;
}

.header-cta .btn {
  padding: 12px 18px !important;
}

.hero-content h1,
.hero-content h1.text-gradient {
  background: none !important;
  background-image: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  -webkit-text-fill-color: var(--c-primary) !important;
  color: var(--c-primary) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.hero-content .section-label {
  color: var(--c-primary-light) !important;
}

@media (max-width: 1180px) {
  .main-header .container {
    gap: 16px;
  }

  .main-nav {
    gap: 14px !important;
  }

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

@media (max-width: 768px) {
  .logo {
    min-width: 0;
  }

  .logo::after {
    display: none;
  }
}

/* CTA contrast fix */
.cta-banner {
  background: linear-gradient(180deg, #ffffff 0%, var(--c-page) 100%) !important;
  color: var(--c-primary) !important;
  text-align: center !important;
  padding: 68px 0 !important;
  border-top: 1px solid var(--c-line-light);
  border-bottom: 1px solid var(--c-line-light);
}

.cta-banner::before,
.cta-banner::after {
  display: none !important;
  content: none !important;
}

.cta-banner .container {
  max-width: 980px;
}

.cta-banner h2 {
  color: var(--c-primary) !important;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px !important;
}

.cta-banner p {
  color: var(--c-muted) !important;
  max-width: 720px !important;
  margin: 0 auto 28px !important;
}

.cta-banner .container > div {
  display: flex !important;
  gap: 14px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

.cta-banner .btn-outline {
  background: #fff !important;
  border-color: var(--c-line) !important;
  color: var(--c-primary) !important;
}

.cta-banner .btn-outline:hover {
  background: var(--c-primary) !important;
  border-color: var(--c-primary) !important;
  color: #fff !important;
}

/* Homepage fleet cards: keep old dark-card text rules from leaking into the light theme. */
.hero-vehicle-card {
  background: #fff !important;
  border: 1px solid var(--c-line) !important;
  border-top: 3px solid #38bdf8 !important;
  box-shadow: var(--shadow-sm) !important;
  backdrop-filter: none !important;
}

.hero-vehicle-card:hover {
  background: #fff !important;
  box-shadow: var(--shadow-md) !important;
}

.hero-vehicle-card h3 {
  color: var(--c-primary) !important;
}

.hero-vehicle-card p {
  color: var(--c-muted) !important;
}

/* Contact page cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 28px;
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--c-ice);
  color: var(--c-primary-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.contact-info-icon svg {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  flex: 0 0 auto;
  stroke-width: 2;
}

.contact-info-card h3 {
  color: var(--c-ink);
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--c-muted);
}

.contact-info-card a:hover {
  color: var(--c-primary-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
}

.contact-form-wrapper,
.map-wrapper {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper {
  padding: 28px;
}

.map-wrapper {
  overflow: hidden;
  min-height: 420px;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.contact-reviews {
  margin: 34px 0;
}

.contact-reviews .section-header {
  margin-bottom: 22px !important;
}

.map-wrapper {
  position: relative;
}

.map-open-link {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.map-open-link:hover {
  background: var(--c-primary);
  color: #fff;
}

.map-open-link--top {
  top: 16px;
  bottom: auto;
}

@media (max-width: 900px) {
  .contact-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.area-card-header--alain {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(21, 94, 117, 0.76)),
    url("assets/images/chiller-truck.webp") center/cover no-repeat;
}

.logo img {
  height: 52px !important;
  max-width: 108px !important;
}

.clients-marquee-section {
  background: #fff !important;
  border-top: 1px solid var(--c-line-light);
}

.clients-track {
  gap: 46px !important;
  min-width: max-content !important;
}

.client-logo {
  width: 170px !important;
  height: 76px !important;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--c-line-light);
  border-radius: var(--r-md);
  opacity: 0.72 !important;
  filter: grayscale(100%) saturate(0.7) contrast(0.95) !important;
  box-shadow: var(--shadow-sm);
}

.client-logo:hover {
  opacity: 1 !important;
  filter: none !important;
}

.client-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Hero image/content polish for the updated generated assets */
.hero-photo-panel img {
  object-position: center center !important;
}

.hero-dispatch-card {
  background: #fff !important;
  color: var(--c-primary) !important;
  opacity: 1 !important;
}

.hero-proof-grid div {
  background: #fff !important;
  border: 1px solid var(--c-line) !important;
  box-shadow: var(--shadow-sm) !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
}

.hero-proof-grid {
  opacity: 1 !important;
}

.hero-proof-grid strong {
  color: var(--c-primary) !important;
}

.hero-proof-grid span {
  color: var(--c-muted) !important;
}

@media (max-width: 991px) {
  .hero-showcase {
    padding-bottom: 0 !important;
  }

  .hero-dispatch-card {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin-top: 14px !important;
  }
}

/* Homepage workflow section: fuller, less empty, more operational */
.workflow-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5faf8 100%) !important;
  position: relative;
  overflow: hidden;
}

.workflow-section .section-header {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 38px;
}

.workflow-visual {
  min-height: 520px;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-lg);
  background: var(--c-primary-dark);
}

.workflow-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.workflow-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 31, 0.08) 0%, rgba(7, 20, 31, 0.30) 48%, rgba(7, 20, 31, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 59, 51, 0.28), rgba(14, 165, 233, 0.10));
}

.workflow-visual-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
}

.workflow-visual-panel span,
.workflow-card-kicker {
  display: inline-block;
  color: var(--c-accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 8px;
}

.workflow-visual-panel strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.1;
  margin-bottom: 10px;
}

.workflow-visual-panel p {
  max-width: 480px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}

.workflow-badges {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.workflow-badges span {
  background: rgba(255,255,255,0.94);
  color: var(--c-primary-dark);
  border: 1px solid rgba(255,255,255,0.60);
  border-radius: var(--r-pill);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.workflow-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.workflow-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  min-height: 252px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.workflow-card .feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
}

.workflow-card h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.workflow-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.workflow-card-dark {
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(21, 94, 117, 0.92)),
    url("assets/images/abstract-cold-chain.png") center/cover no-repeat;
  border-color: rgba(125, 211, 252, 0.22);
}

.workflow-card-dark h3,
.workflow-card-dark p {
  color: #fff;
}

.workflow-card-dark p {
  color: rgba(255,255,255,0.78);
}

.workflow-card-dark .feature-icon {
  background: rgba(255,255,255,0.12) !important;
  color: #e0f7ff !important;
}

.workflow-proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.workflow-proof-row div {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-xs);
}

.workflow-proof-row strong,
.workflow-proof-row span {
  display: block;
}

.workflow-proof-row strong {
  color: var(--c-primary);
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 4px;
}

.workflow-proof-row span {
  color: var(--c-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-stars {
  color: var(--c-accent);
  font-weight: 800;
  letter-spacing: 2px;
}

.testimonial-card cite {
  color: var(--c-ink);
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 991px) {
  .workflow-layout {
    grid-template-columns: 1fr;
  }

  .workflow-visual,
  .workflow-visual img {
    min-height: 380px;
  }
}

@media (max-width: 700px) {
  .workflow-cards,
  .workflow-proof-row {
    grid-template-columns: 1fr;
  }

  .workflow-card {
    min-height: auto;
  }
}

/* Compact feature grids across service/about/area pages */
.features-grid {
  display: grid !important;
  align-items: stretch;
  gap: 16px !important;
}

.feature-item {
  display: grid !important;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 6px;
  align-content: start;
  align-items: start;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%) !important;
  border: 1px solid var(--c-line) !important;
  border-radius: var(--r-md) !important;
  min-height: 0 !important;
  padding: 18px !important;
  box-shadow: var(--shadow-xs) !important;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 116, 144, 0.24) !important;
  box-shadow: var(--shadow-sm) !important;
}

.feature-item .feature-icon {
  grid-row: 1 / span 2;
  width: 46px !important;
  height: 46px !important;
  border-radius: 10px !important;
  margin: 0 !important;
  box-shadow: inset 0 0 0 1px rgba(14, 116, 144, 0.08);
}

.feature-item h3 {
  align-self: end;
  border-top: 0 !important;
  padding-top: 0 !important;
  margin: 0 0 4px !important;
  font-size: 0.98rem !important;
  line-height: 1.25 !important;
}

.feature-item p {
  margin: 0 !important;
  font-size: 0.85rem !important;
  line-height: 1.55 !important;
}

.feature-item::after {
  display: none !important;
}

@media (max-width: 640px) {
  .feature-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px 14px;
    padding: 18px !important;
  }

  .feature-item .feature-icon {
    width: 48px !important;
    height: 48px !important;
  }
}

@media (min-width: 641px) {
  .service-detail-content .features-grid,
  .page-template-page-about .features-grid,
  .page-template-page-services .features-grid,
  .page-template-page-areas .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Inner-page polish: remove empty decorative bands and make content denser */
body:not(.home) .wave-divider {
  display: none !important;
}

body:not(.home) .section {
  padding: 58px 0 !important;
}

body:not(.home) .section-header {
  margin-bottom: 30px !important;
}

body:not(.home) .section-header.text-center {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

body:not(.home) .section-title {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

body:not(.home) .section-subtitle {
  max-width: 820px;
}

body:not(.home) .page-banner {
  padding: 52px 0 46px !important;
}

body:not(.home) .page-banner h1 {
  max-width: 900px;
}

.page-template-page-services .section-light .container > .reveal[style*="max-width:800px"],
.page-template-page-services .section-light .container > .reveal[style*="max-width:800px;"],
.page-template-page-services .section-light .container > div[style*="max-width:800px"],
.page-template-page-services .section-light .container > div[style*="max-width:800px;"] {
  max-width: 980px !important;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--c-accent);
}

.page-template-page-services .section-light .container > .reveal[style*="max-width:800px"] p,
.page-template-page-services .section-light .container > div[style*="max-width:800px"] p {
  column-count: 2;
  column-gap: 42px;
  margin-bottom: 0;
  text-align: left;
}

.page-template-page-services .services-grid {
  grid-template-columns: 1fr !important;
  max-width: 1040px;
  margin: 6px auto 0;
  gap: 18px !important;
}

.page-template-page-services .service-card {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  align-items: stretch;
  border-top: 3px solid var(--c-primary);
}

.page-template-page-services .service-card-img {
  aspect-ratio: auto !important;
  min-height: 230px;
}

.page-template-page-services .service-card-img img {
  height: 100%;
}

.page-template-page-services .service-card-body {
  padding: 24px 28px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.page-template-page-services .service-card-body p {
  margin-bottom: 16px;
}

.page-template-page-areas .section:first-of-type {
  padding-bottom: 30px !important;
}

.page-template-page-areas .section:first-of-type .container {
  position: relative;
}

.page-template-page-areas .page-banner + .section .container::after {
  content: "7 Emirates  |  15+ Fleet Vehicles  |  24/7 Dispatch  |  GCC Routes";
  display: block;
  max-width: 860px;
  margin: 24px auto 0;
  padding: 16px 22px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  color: var(--c-primary);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.4px;
}

.page-template-page-areas .areas-grid {
  gap: 18px !important;
}

.page-template-page-areas .area-card {
  border-top: 3px solid var(--c-primary);
}

.page-template-page-areas .area-card-header {
  padding: 16px 20px !important;
}

.page-template-page-areas .area-card-body {
  padding: 18px !important;
}

.page-template-page-areas .area-card-body p {
  font-size: 0.86rem;
  line-height: 1.55;
  margin-bottom: 12px;
}

.page-template-page-areas .area-zones {
  display: grid;
  gap: 3px;
}

.page-template-page-areas .area-zones li {
  font-size: 0.81rem;
  line-height: 1.35;
  padding: 2px 0;
}

.page-template-page-areas .area-services {
  margin-top: 16px;
  gap: 8px;
}

.page-template-page-areas .area-services .btn {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 0.8rem;
}

.page-template-page-about .section,
.page-template-page-services .section,
.page-template-page-areas .section {
  border-bottom: 1px solid var(--c-line-light);
}

@media (max-width: 800px) {
  .page-template-page-services .section-light .container > .reveal[style*="max-width:800px"] p,
  .page-template-page-services .section-light .container > div[style*="max-width:800px"] p {
    column-count: 1;
  }

  .page-template-page-areas .page-banner + .section .container::after {
    content: "7 Emirates | 24/7 Dispatch | GCC Routes";
  }

  .page-template-page-services .service-card {
    grid-template-columns: 1fr;
  }

  .page-template-page-services .service-card-img {
    min-height: 0;
    aspect-ratio: 16 / 9 !important;
  }
}

/* Service detail pages: keep the quote sidebar useful instead of dropping too early */
.service-detail {
  gap: 32px !important;
}

.service-detail-content {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.service-detail-content > h2:first-child {
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  color: var(--c-primary);
}

.service-detail-content h3 {
  margin-top: 28px !important;
  padding-top: 20px;
  border-top: 1px solid var(--c-line-light);
}

.service-detail-content h3:first-child,
.service-detail-content h2 + h3 {
  border-top: 0;
  padding-top: 0;
}

.service-detail-content p,
.service-detail-content li {
  line-height: 1.62;
}

.service-detail-img {
  margin: 18px 0 22px !important;
  max-height: 420px;
  object-fit: cover;
}

.service-detail-content table {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.service-detail-content th {
  background: var(--c-primary-dark) !important;
  white-space: nowrap;
}

.service-detail-content td,
.service-detail-content th {
  padding: 10px 12px !important;
}

.service-detail-sidebar {
  display: grid;
  gap: 16px;
}

.service-detail-sidebar > div,
.service-detail-sidebar .sidebar-quote-form,
.service-detail-sidebar .sidebar-other-services {
  margin-top: 0 !important;
}

.sidebar-quote-form {
  padding: 22px !important;
}

.sidebar-quote-form .form-group {
  margin-bottom: 12px;
}

.sidebar-quote-form input,
.sidebar-quote-form textarea,
.sidebar-quote-form select {
  min-height: 42px;
}

.sidebar-quote-form textarea {
  min-height: 90px;
}

@media (min-width: 860px) and (max-width: 992px) {
  .service-detail {
    grid-template-columns: minmax(0, 1fr) 300px !important;
  }

  .service-detail-sidebar {
    position: sticky !important;
    top: 86px;
  }

  .service-detail-content {
    padding: 24px;
  }

  .service-detail-content .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .service-detail-content .feature-item {
    width: auto !important;
  }
}

@media (max-width: 859px) {
  .service-detail-content {
    padding: 20px;
  }
}

/* About page polish */
.page-template-page-about .page-banner {
  min-height: 0;
  padding: 42px 0 40px !important;
  background:
    linear-gradient(90deg, rgba(11, 30, 27, 0.96), rgba(10, 94, 82, 0.9)),
    url("assets/images/premium-warehouse.png") center/cover no-repeat;
}

.page-template-page-about .section {
  padding: clamp(46px, 6vw, 78px) 0;
}

.page-template-page-about .page-banner + .section {
  padding-top: clamp(42px, 5vw, 64px);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: stretch;
}

.about-intro-text {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 250, 0.95));
  box-shadow: 0 18px 44px rgba(11, 30, 27, 0.08);
}

.about-intro-text::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  background: linear-gradient(180deg, var(--c-accent), var(--c-primary));
}

.about-intro-text h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.about-intro-text p {
  font-size: 1rem;
  line-height: 1.8;
}

.about-intro-text .btn {
  margin-top: 10px !important;
}

.about-image {
  position: relative;
  min-height: 430px;
  height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-dark);
  box-shadow: 0 28px 64px rgba(11, 30, 27, 0.18);
  isolation: isolate;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 30, 27, 0.02), rgba(11, 30, 27, 0.72)),
    radial-gradient(circle at 20% 10%, rgba(228, 162, 0, 0.18), transparent 34%);
  z-index: 1;
}

.about-image::after {
  content: "15+ years  |  7 emirates  |  -25\00B0 C control";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--c-ink);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(11, 30, 27, 0.18);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.02);
}

.page-template-page-about .section-light .container > .reveal[style*="max-width:820px"] {
  max-width: 980px !important;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--c-accent);
}

.page-template-page-about .section-light .container > .reveal[style*="max-width:820px"] p {
  font-size: 1rem;
  line-height: 1.82;
}

.page-template-page-about .features-grid {
  margin-top: 24px;
}

.page-template-page-about .feature-item {
  min-height: 100%;
}

.page-template-page-about .stats-bar {
  margin-top: 0;
}

@media (max-width: 980px) {
  .about-intro {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .about-intro-text {
    padding: 24px 20px;
  }

  .about-image {
    min-height: 300px;
  }

  .about-image::after {
    font-size: 0.78rem;
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}
