  
/* ============================================================
   PICKUP TRUCK RENTAL UAE — Main Stylesheet
   Color Palette: Black & Dark Grayscale (no blue)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary:       #000000;
  --secondary:     #111111;
  --accent:        #222222;
  --bg:            #ffffff;
  --light-gray:    #f5f5f5;
  --mid-gray:      #e0e0e0;
  --border:        #e5e5e5;
  --text:          #333333;
  --text-muted:    #666666;
  --text-light:    #999999;
  --white:         #ffffff;
  --dark-surface:  #0a0a0a;
  --dark-card:     #161616;
  --dark-border:   #2a2a2a;

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl:     0 16px 60px rgba(0,0,0,0.22);

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     18px;
  --radius-xl:     24px;

  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;

  --font-main:     'Outfit', 'Inter', sans-serif;
  --font-body:     'Inter', sans-serif;

  --header-height: 120px;
}

/* ---- 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(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}
.section-light { background: var(--light-gray); }
.section-dark  { background: var(--primary); }

.text-white { color: var(--white) !important; }
.text-gray  { color: #aaaaaa !important; }
.mt-4       { margin-top: 2rem; }
.mb-2       { margin-bottom: 0.75rem; }
.w-full     { width: 100%; }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loading-screen {
  position: fixed; inset: 0;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { text-align: center; }

.loader-truck {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: truckBounce 0.8s ease-in-out infinite alternate;
}
@keyframes truckBounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}

.loader-bar {
  width: 220px;
  height: 4px;
  background: #333;
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.loader-fill {
  height: 100%;
  background: var(--white);
  border-radius: 99px;
  animation: loaderFill 1.8s ease forwards;
}
@keyframes loaderFill {
  from { width: 0; }
  to   { width: 100%; }
}
.loader-text {
  color: #888;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  font-family: var(--font-main);
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--white);
  z-index: 9998;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--secondary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 9990;
  white-space: nowrap;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--dark-border);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.success { border-left: 4px solid #22c55e; }
.toast.error   { border-left: 4px solid #ef4444; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

.btn-primary-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary-dark:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-dark:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-glass {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #20b957;
  transform: translateY(-2px);
}

/* Ripple Effect */
.ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.ripple:active::after {
  transform: scale(2.5);
  opacity: 1;
  transition: 0s;
}

/* ============================================================
   HEADER
   ============================================================ */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

/* Top Bar */
.top-bar {
  background: var(--secondary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.82rem;
  transition: var(--transition);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cccccc;
  transition: var(--transition-fast);
}
.top-contact:hover { color: var(--white); }
.top-contact i { font-size: 0.75rem; }
.top-bar-right span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #aaaaaa;
  font-size: 0.78rem;
}

/* Navbar */
#navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: none;
}
#navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}
header.scrolled .top-bar {
  max-height: 0;
  padding: 0;
  overflow: hidden;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}
.logo:hover .logo-icon { background: #333; transform: rotate(-5deg); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: var(--font-main); font-size: 1.1rem; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; }
.logo-sub  { font-size: 0.7rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.logo-light .logo-main { color: var(--white); }
.logo-light .logo-sub  { color: #888; }
.logo-light .logo-icon { background: var(--white); color: var(--primary); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: center;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.ham-line {
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 320px; max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.close-menu {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  font-size: 1rem;
  transition: var(--transition-fast);
}
.close-menu:hover { background: var(--primary); color: var(--white); }

.mobile-nav-links {
  padding: 16px 0;
  flex: 1;
}
.mobile-nav-link {
  display: block;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border-left: 3px solid transparent;
  transition: var(--transition-fast);
}
.mobile-nav-link:hover {
  color: var(--primary);
  background: var(--light-gray);
  border-left-color: var(--primary);
}

.mobile-menu-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}

.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}
.menu-overlay.active { opacity: 1; pointer-events: all; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding: 6px 16px;
  background: var(--mid-gray);
  border-radius: 99px;
}
.eyebrow-light { background: rgba(255,255,255,0.1); color: #aaa; }

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.4) 100%
  );
  z-index: 1;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .container { position: relative; z-index: 2; width: 100%; }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #eee;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-badge i { color: #fbbf24; }

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.hero-highlight {
  background: linear-gradient(90deg, #ffffff, #aaaaaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}
.hero-scroll-indicator span {
  width: 2px; height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  animation: scrollPulse 1.4s ease infinite;
}
.hero-scroll-indicator span:nth-child(2) { animation-delay: 0.2s; }
.hero-scroll-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.5); }
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--mid-gray);
}
.category-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.category-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover .category-img-wrap img { transform: scale(1.07); }
.category-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover .category-overlay { opacity: 1; }

.category-body { padding: 24px; }

.category-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: var(--light-gray);
  color: var(--text-muted);
}
.category-tag-dark { background: var(--primary); color: var(--white); }
.category-tag-accent { background: var(--accent); color: var(--white); }

.category-body h3 {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.category-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }

.category-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.category-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--light-gray);
  padding: 4px 10px;
  border-radius: 99px;
}
.category-features i { color: var(--primary); font-size: 0.7rem; }

.category-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.category-price { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 0.75rem; color: var(--text-light); }
.price-amount { font-family: var(--font-main); font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.price-unit { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: #1c1c1c;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  border-color: #3a3a3a;
}
.service-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--white); color: var(--primary); }

.service-card h3 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.88rem; color: #888; line-height: 1.7; margin-bottom: 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #aaa;
  transition: var(--transition-fast);
}
.service-card:hover .service-link { color: var(--white); gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.why-img-wrap img {
  width: 100%; height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.why-img-wrap:hover img { transform: scale(1.04); }
.why-img-badge {
  position: absolute;
  bottom: 28px; right: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-img-badge strong { display: block; font-family: var(--font-main); font-size: 2rem; font-weight: 900; line-height: 1; }
.why-img-badge span { font-size: 0.78rem; color: #999; text-transform: uppercase; letter-spacing: 0.05em; }

.why-desc { font-size: 1rem; color: var(--text-muted); margin-bottom: 28px; }

.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item-icon {
  width: 32px; height: 32px;
  min-width: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}
.why-item strong { display: block; font-family: var(--font-main); font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   STATISTICS
   ============================================================ */
.stats-section {
  background: var(--primary);
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  background: var(--dark-card);
  transition: var(--transition);
}
.stat-item:hover {
  background: #1c1c1c;
  border-color: #444;
  transform: translateY(-4px);
}
.stat-icon {
  font-size: 2rem;
  color: var(--white);
  opacity: 0.5;
  margin-bottom: 12px;
}
.stat-number {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  opacity: 0.6;
  display: inline;
}
.stat-label {
  font-size: 0.82rem;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}
.stat-item p {
  color: #aaaaaa;
  font-size: 0.88rem;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   FLEET
   ============================================================ */
.fleet-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.fleet-tab {
  padding: 10px 24px;
  border-radius: 99px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: var(--transition-fast);
}
.fleet-tab.active, .fleet-tab:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.fleet-card.hidden { display: none; }

.fleet-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.fleet-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.06); }

.fleet-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 99px;
  box-shadow: var(--shadow-sm);
}
.fleet-badge-dark  { background: var(--accent); color: var(--white); }
.fleet-badge-black { background: var(--primary); color: var(--white); }

.fleet-info { padding: 22px; }
.fleet-info h3 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.fleet-specs span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.fleet-specs i { color: var(--primary); font-size: 0.72rem; }
.fleet-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.fleet-price {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}
.fleet-price small { font-size: 0.78rem; font-weight: 400; color: var(--text-muted); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-large { grid-column: span 1; grid-row: span 2; }
.gallery-tall  { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-hover { opacity: 1; }

/* Lightbox */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.area-icon {
  width: 52px; height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.area-card:hover .area-icon { transform: scale(1.1) rotate(-5deg); }
.area-card h3 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.area-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 0.85rem;
  display: flex;
  gap: 3px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

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

.testimonial-avatar img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #333;
  flex-shrink: 0;
}

.testimonial-avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-info span {
  font-size: 0.78rem;
  color: #777;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  cursor: pointer;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: var(--white);
  color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: var(--transition-fast);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

/* Tablet — show 2 slides side by side */
@media (min-width: 640px) {
  .testimonial-slide {
    flex: 0 0 50%;
    width: 50%;
  }
}

/* Desktop — show 3 slides side by side */
@media (min-width: 1024px) {
  .testimonial-slide {
    flex: 0 0 33.333%;
    width: 33.333%;
  }
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition-fast);
}
.faq-question:hover { background: var(--light-gray); }
.faq-icon {
  font-size: 0.8rem;
  min-width: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 28px 22px;
}
.faq-answer-inner p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 200px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 56px;
}
.contact-info-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.contact-info-item strong { display: block; color: var(--white); font-family: var(--font-main); font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-item a, .contact-info-item span { display: block; font-size: 0.9rem; color: #999; transition: var(--transition-fast); }
.contact-info-item a:hover { color: var(--white); }

/* Form */
.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-main);
}
.required { color: #ef4444; }

input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}
input::placeholder, textarea::placeholder { color: #555; }
select { cursor: pointer; }
select option { background: #222; color: var(--white); }
textarea { resize: vertical; min-height: 110px; }

.form-error {
  font-size: 0.75rem;
  color: #ef4444;
  font-weight: 500;
  min-height: 16px;
}
input.invalid, select.invalid, textarea.invalid { border-color: #ef4444 !important; }

/* Map */
.map-wrap { border-radius: var(--radius-xl); overflow: hidden; height: 420px; }
.map-placeholder { width: 100%; height: 100%; position: relative; }
.map-placeholder iframe { width: 100%; height: 100%; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--secondary); }
.footer-top { padding: 80px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand {}
.footer-desc {
  font-size: 0.88rem;
  color: #666;
  margin: 16px 0 24px;
  line-height: 1.7;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #777;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}
.footer-social a:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

.footer-col h4 {
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: #666;
  transition: var(--transition-fast);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul a::before { content: '→'; opacity: 0; transition: var(--transition-fast); }
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }
.footer-col ul a:hover::before { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px !important; }
.footer-contact-list li {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #666;
}
.footer-contact-list i { color: #555; font-size: 0.85rem; margin-top: 3px; min-width: 14px; }
.footer-contact-list a, .footer-contact-list span { color: #666; transition: var(--transition-fast); }
.footer-contact-list a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: #555; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: #555; transition: var(--transition-fast); }
.footer-bottom-links a:hover { color: var(--white); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-btn {
  position: fixed;
  bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  transition: var(--transition);
}
.float-btn:hover { transform: scale(1.1) translateY(-3px); box-shadow: var(--shadow-xl); }

.float-whatsapp { right: 24px; background: #25D366; color: var(--white); bottom: 96px; }
.float-call     { right: 24px; background: var(--primary); color: var(--white); border: 1px solid #333; }

.float-tooltip {
  position: absolute;
  right: 68px;
  background: var(--secondary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  border: 1px solid var(--dark-border);
}
.float-btn:hover .float-tooltip { opacity: 1; transform: translateX(-4px); }

/* WhatsApp pulse ring */
.float-whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid #25D366;
  border-radius: 50%;
  animation: whatsappPulse 2s ease infinite;
}
@keyframes whatsappPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
  border: 1px solid #333;
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: #333; transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ============================================================
   PICKUP TRUCK RENTAL UAE — Animations
   ============================================================ */

/* ---- Scroll Reveal Base States ---- */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}

.reveal-up    { transform: translateY(40px); transition-property: opacity, transform; }
.reveal-left  { transform: translateX(-40px); transition-property: opacity, transform; }
.reveal-right { transform: translateX(40px); transition-property: opacity, transform; }
.reveal-scale { transform: scale(0.92); transition-property: opacity, transform; }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* ---- Hero Entrance ---- */
.hero-content.reveal-up {
  animation: heroEntrance 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Hero Badge entrance ---- */
.hero-badge {
  animation: fadeInDown 0.7s ease 0.2s both;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Navbar scroll transition ---- */
#navbar { will-change: padding, box-shadow; }

/* ---- Card hover lift ---- */
.category-card,
.service-card,
.fleet-card,
.area-card,
.stat-item {
  will-change: transform;
}

/* ---- Image zoom on hover ---- */
.category-img-wrap img,
.fleet-img-wrap img,
.gallery-item img,
.why-img-wrap img {
  will-change: transform;
}

/* ---- Button shimmer effect ---- */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ---- Floating animation for whatsapp ---- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ---- Counter number pop ---- */
@keyframes counterPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.stat-number.counted { animation: counterPop 0.3s ease; }

/* ---- Testimonial slide fade ---- */
@keyframes slideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-30px); }
}

/* ---- Section eyebrow bounce ---- */
.section-eyebrow {
  animation-fill-mode: both;
}

/* ---- FAQ accordion icon spin ---- */
.faq-icon { will-change: transform; }

/* ---- Loader truck wiggle on complete ---- */
@keyframes truckComplete {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-8px) rotate(-3deg); }
  40%  { transform: translateX(8px) rotate(3deg); }
  60%  { transform: translateX(-4px); }
  80%  { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

/* ---- Page entrance fade ---- */
@keyframes pageFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageFade 0.5s ease; }

/* ---- Focus ring for accessibility ---- */
:focus-visible {
  outline: 2px solid #555;
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Skeleton loading ---- */
@keyframes skeleton {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton {
  background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
  background-size: 800px 100%;
  animation: skeleton 1.5s infinite;
}

/* ---- Mobile menu slide ---- */
.mobile-menu {
  will-change: transform;
}

/* ---- Scroll progress smooth ---- */
#scroll-progress { will-change: width; }

/* ---- Image lazy load fade ---- */
img[loading="lazy"] {
  transition: opacity 0.4s ease;
}
img.loaded { opacity: 1; }

/* ---- Prefers reduced motion override ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   PICKUP TRUCK RENTAL UAE — Responsive Styles
   Breakpoints: 1400px | 1200px | 1024px | 768px | 576px | 400px
   ============================================================ */

/* ---- Large Screens (1400px+) ---- */
@media (min-width: 1400px) {
  .container { max-width: 1360px; }
  .hero-title { font-size: 4.4rem; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Desktop (max 1200px) ---- */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; }
  .why-grid { gap: 56px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* ---- Tablet Landscape (max 1024px) ---- */
@media (max-width: 1024px) {
  :root { --header-height: 70px; }

  .top-bar { display: none; }

  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

  .nav-inner { justify-content: space-between; }

  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(2rem, 5vw, 3.2rem); }

  .section { padding: 72px 0; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-img-col { order: -1; }
  .why-img-wrap img { height: 360px; }
  .why-img-badge { bottom: 16px; right: 16px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .contact-info-item { width: calc(50% - 8px); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }
  .gallery-large { grid-column: span 2; grid-row: span 1; }
  .gallery-tall  { grid-row: span 2; }
}

/* ---- Tablet Portrait (max 768px) ---- */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  .section-header { margin-bottom: 40px; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  /* Hero */
  .hero-stats { gap: 16px; }
  .hero-stat strong { font-size: 1.3rem; }
  .hero-stat-divider { height: 30px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badge { font-size: 0.75rem; }

  /* Categories */
  .categories-grid { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Fleet */
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-tabs { gap: 6px; }
  .fleet-tab { padding: 8px 16px; font-size: 0.8rem; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .gallery-item { height: 220px; }
  .gallery-large, .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr 1fr; }

  /* Stats */
  .stat-number { font-size: 2.4rem; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-info-item { width: 100%; }
  .contact-form-wrap { padding: 24px; }
  .contact-info-card { padding: 24px; }

  /* Map */
  .map-wrap { height: 300px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .footer-top { padding: 56px 0 40px; }

  /* Testimonials */
  .testimonial-card { padding: 24px; }
  .testimonial-text { font-size: 0.88rem; }

  /* FAQ */
  .faq-question { padding: 18px 20px; font-size: 0.88rem; }
  .faq-answer-inner { padding: 0 20px 18px; }

  /* Floating buttons */
  .float-btn { width: 50px; height: 50px; font-size: 1.1rem; }
  .float-whatsapp { bottom: 86px; }
  .float-call { bottom: 24px; }

  /* Why */
  .why-list { gap: 16px; }
  .why-img-wrap img { height: 280px; }
}

/* ---- Mobile (max 576px) ---- */
@media (max-width: 576px) {
  :root { --header-height: 64px; }

  body { font-size: 15px; }

  .section { padding: 48px 0; }
  .container { padding: 0 14px; }

  /* Header */
  #navbar { padding: 10px 0; }

  /* Logo */
  .logo-main { font-size: 1rem; }
  .logo-sub  { font-size: 0.65rem; }
  .logo-icon { width: 38px; height: 38px; font-size: 1rem; }

  /* Hero */
  .hero-content { text-align: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-actions { align-items: center; }
  .hero-desc { font-size: 0.95rem; }
  .hero-scroll-indicator { display: none; }

  /* Section */
  .section-title { font-size: 1.6rem; }
  .section-desc { font-size: 0.9rem; }
  .section-eyebrow { font-size: 0.72rem; }

  /* Categories */
  .category-img-wrap { height: 180px; }
  .category-body { padding: 18px; }
  .category-footer { flex-wrap: wrap; gap: 10px; }

  /* Services */
  .service-card { padding: 28px 22px; }

  /* Why */
  .why-grid { gap: 32px; }
  .why-content-col .section-title { font-size: 1.5rem; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 24px 16px; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.74rem; }

  /* Fleet */
  .fleet-tabs { justify-content: flex-start; overflow-x: auto; padding-bottom: 8px; flex-wrap: nowrap; }
  .fleet-tab { white-space: nowrap; flex-shrink: 0; }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr; }
  .area-card { padding: 24px 20px; }

  /* Testimonials */
  .testimonials-slider-wrap { overflow: hidden; }
  .testimonial-card { padding: 20px; }
  .slider-btn { width: 36px; height: 36px; font-size: 0.8rem; }

  /* FAQ */
  .faq-question { padding: 16px 18px; font-size: 0.85rem; }
  .faq-answer-inner { padding: 0 18px 16px; }
  .faq-answer-inner p { font-size: 0.85rem; }

  /* Contact */
  .contact-form-wrap { padding: 20px; }
  .contact-info-card { padding: 20px; gap: 16px; }
  .contact-grid { gap: 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: span 1; }
  .footer-top { padding: 44px 0 32px; }

  /* Map */
  .map-wrap { height: 260px; border-radius: 12px; }

  /* Mobile menu */
  .mobile-menu { width: 100%; max-width: 100%; }

  /* Float buttons */
  .float-btn { width: 48px; height: 48px; font-size: 1rem; right: 14px; }
  .float-whatsapp { bottom: 76px; }
  .float-call { bottom: 18px; }
  .back-to-top { left: 14px; bottom: 18px; width: 40px; height: 40px; }
  .float-tooltip { display: none; }
}

/* ---- Extra Small (max 400px) ---- */
@media (max-width: 400px) {
  .hero-title { font-size: 1.85rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-number { font-size: 1.7rem; }
  .section-title { font-size: 1.4rem; }
  .btn-lg { padding: 13px 24px; font-size: 0.9rem; }
  .category-footer { flex-direction: column; align-items: flex-start; }
  .category-footer .btn { align-self: stretch; justify-content: center; }
  .hero-stat-divider { display: none; }
  .hero-stats { gap: 16px; justify-content: space-around; }
}

/* ---- Print ---- */
@media print {
  #loading-screen,
  #scroll-progress,
  .float-btn,
  .back-to-top,
  .hamburger,
  .mobile-menu,
  .menu-overlay,
  .hero-scroll-indicator {
    display: none !important;
  }
  header { position: static; }
  .section { padding: 32px 0; }
  * { box-shadow: none !important; }
}

/* ============================================================
   CONTACT FORM ALERTS
   ============================================================ */
.form-alert-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}


/* ============================================================
   COMPREHENSIVE RESPONSIVE FIXES
   Header · Testimonials · Footer
   ============================================================ */

/* ---- Utility ---- */
.w-full { width: 100%; }
.mb-2   { margin-bottom: 10px; }

/* ============================================================
   HEADER — ALL BREAKPOINTS
   ============================================================ */

/* Navbar base — always flex */
#navbar .container { position: relative; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

/* Desktop (1025px+): show nav links, hide hamburger */
@media (min-width: 1025px) {
  .hamburger     { display: none !important; }
  .mobile-menu   { display: none !important; }
  .menu-overlay  { display: none !important; }
  .nav-links     { display: flex !important; }
  .nav-cta       { display: flex !important; }
}

/* Tablet + Mobile (max 1024px): show hamburger, hide nav links */
@media (max-width: 1024px) {
  .nav-links   { display: none !important; }
  .nav-cta     { display: none !important; }
  .hamburger   { display: flex !important; }

  .hamburger {
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
  }

  .ham-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #111;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile Menu Panel */
  .mobile-menu {
    display: flex !important;
    position: fixed;
    top: 0; right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    flex-direction: column;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
  }
  .mobile-menu.open { transform: translateX(0); }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
  }

  .mobile-nav-links {
    list-style: none;
    padding: 12px 0;
    flex: 1;
    margin: 0;
  }
  .mobile-nav-link {
    display: block;
    padding: 13px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    border-left: 3px solid transparent;
    text-decoration: none;
    transition: all 0.2s;
  }
  .mobile-nav-link:hover {
    color: #000;
    background: #f5f5f5;
    border-left-color: #000;
  }

  .mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .menu-overlay {
    display: block !important;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* Prevent body scroll when menu open */
  body.menu-open { overflow: hidden; }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
  .mobile-menu { width: 100%; max-width: 100%; }
  .logo-main   { font-size: 0.95rem; }
  .logo-sub    { font-size: 0.62rem; }
}

/* ============================================================
   TESTIMONIALS — ALL BREAKPOINTS
   ============================================================ */

.testimonials-slider-wrap { overflow: hidden; width: 100%; }
.testimonials-slider      { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }

/* Mobile: 1 card */
.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 8px;
  box-sizing: border-box;
}

/* Tablet: 2 cards */
@media (min-width: 640px) {
  .testimonial-slide { flex: 0 0 50%; width: 50%; }
}

/* Desktop: 3 cards */
@media (min-width: 1024px) {
  .testimonial-slide { flex: 0 0 33.333%; width: 33.333%; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 220px;
  box-sizing: border-box;
}

/* Mobile testimonial card adjustments */
@media (max-width: 480px) {
  .testimonial-card    { padding: 20px; }
  .testimonial-text    { font-size: 0.88rem; }
  .testimonial-avatar img { width: 42px; height: 42px; }
  .slider-btn          { width: 36px; height: 36px; font-size: 0.8rem; }
}

/* ============================================================
   FOOTER — ALL BREAKPOINTS
   ============================================================ */

/* Desktop: 4 columns */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

/* Tablet landscape: 2x2 grid */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* Tablet portrait: 2 columns without brand spanning */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile: single column */
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-bottom-links { justify-content: center; }
  .footer-social       { justify-content: center; flex-wrap: wrap; }
  .footer-col h4       { margin-bottom: 12px; }
}

