/*
Theme Name: Manchu Transport
Theme URI: https://manchutransport.com
Author: Manchu Transport
Author URI: https://manchutransport.com
Description: Custom theme for Manchu Transport – Chiller Truck & Van Rental in Dubai & UAE
Version: 1.0.1
License: GNU General Public License v2 or later
Text Domain: manchu-transport
*/

/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
  --color-primary: #0D47A1;
  --color-primary-light: #1976D2;
  --color-primary-dark: #0A3680;
  --color-secondary: #FF6F00;
  --color-secondary-hover: #E65100;
  --color-dark: #0A1628;
  --color-light: #F5F7FA;
  --color-white: #FFFFFF;
  --color-text: #1A1A2E;
  --color-text-light: #6B7280;
  --color-border: #E5E7EB;
  --color-success: #25D366;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

/* ============================================
   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(--color-text);
  line-height: 1.7;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 700px;
}

.text-center {
  text-align: center;
}

.section-header.text-center .section-subtitle {
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.btn-primary:hover {
  background: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-left a {
  color: rgba(255, 255, 255, 0.85);
}

.top-bar-left a:hover {
  color: var(--color-secondary);
}

.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.7);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.top-bar-right a:hover {
  color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.1);
}

.top-bar-right svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   MAIN HEADER / NAV
   ============================================ */
.main-header {
  background: var(--color-white);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  will-change: box-shadow;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--color-text);
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--color-primary);
}

.main-nav svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  vertical-align: middle;
  margin-left: 4px;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -10px;
  background: var(--color-white);
  min-width: 220px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  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.88rem;
}

.nav-dropdown-menu a:hover {
  background: var(--color-light);
}

.nav-dropdown-menu a::after {
  display: none;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.88rem;
  border-radius: 50px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 6px 0;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060e1a 0%, #0a1628 25%, #0D47A1 70%, #1565C0 100%);
  z-index: 1;
}

.hero-bg-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      transparent 0px,
      transparent 30px,
      rgba(255, 255, 255, 0.015) 30px,
      rgba(255, 255, 255, 0.015) 60px);
  z-index: 2;
}

.hero-bg-gradient::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--color-dark) 0%, transparent 100%);
  z-index: 3;
}

.hero .container {
  position: relative;
  z-index: 4;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 45%;
  color: var(--color-white);
  position: relative;
  z-index: 5;
}

.hero-content .section-label {
  color: var(--color-secondary);
}

.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-vehicle {
  position: absolute;
  bottom: 5%;
  right: 12%;
  width: 48%;
  max-width: 680px;
  height: 90%;
  z-index: 3;
}

.hero-vehicle img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-height: 95%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.5));
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.hero-vehicle img.hero-vehicle-van {
  z-index: 2;
  transform-origin: bottom center;
  scale: 1.1;
  bottom: 28px;
  opacity: 1;
}

.hero-vehicle-truck {
  z-index: 1;
  opacity: 0;
  transform: translateY(12px);
}

/* JS toggles this class on .hero-vehicle to show truck */
.hero-vehicle.hero-slide-1 img.hero-vehicle-van {
  opacity: 0;
  transform: translateY(12px);
}

.hero-vehicle.hero-slide-1 .hero-vehicle-truck {
  opacity: 1;
  transform: translateY(0);
}

/* Hero navigation dots */
.hero-dots {
  position: absolute;
  bottom: 16px;
  right: 30%;
  display: flex;
  gap: 32px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
}

.hero-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  border-color: var(--color-white);
}

.hero-dot.active {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  box-shadow: 0 0 8px rgba(255, 111, 0, 0.5);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-primary) 30%, var(--color-primary-light) 100%);
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      transparent 0px,
      transparent 20px,
      rgba(255, 255, 255, 0.02) 20px,
      rgba(255, 255, 255, 0.02) 40px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
}

.stat-item {
  padding: 16px 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--color-secondary);
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ============================================
   SECTIONS (generic)
   ============================================ */
.section {
  padding: 72px 0;
}

.section-light {
  background: var(--color-light);
}

.section-dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   SERVICES CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 32px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-card:hover .service-card-img::after {
  opacity: 1;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.92rem;
  margin-bottom: 16px;
  flex: 1;
}

.service-card-body .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.service-card-body .btn svg {
  transition: transform 0.3s ease;
}

.service-card-body .btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   WHY CHOOSE US / ICON GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.feature-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-secondary);
  /* unified orange for all cards */
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* Remove individual rainbow top borders — unified to orange above */
.feature-item:nth-child(2),
.feature-item:nth-child(3),
.feature-item:nth-child(4),
.feature-item:nth-child(5),
.feature-item:nth-child(6) {
  border-top-color: var(--color-secondary);
}

.feature-item:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 111, 0, 0.4);
  border-top-color: var(--color-secondary);
  transform: translateY(-6px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Unique icon gradient per card — cold-chain themed */
.feature-item:nth-child(1) .feature-icon {
  /* UAE Coverage */
  background: linear-gradient(135deg, #0D47A1, #1976D2);
}

.feature-item:nth-child(2) .feature-icon {
  /* DM Card Certified */
  background: linear-gradient(135deg, #1B5E20, #43A047);
}

.feature-item:nth-child(3) .feature-icon {
  /* Affordable Rates */
  background: linear-gradient(135deg, #E65100, #FF6F00);
}

.feature-item:nth-child(4) .feature-icon {
  /* Flexible Plans */
  background: linear-gradient(135deg, #4A148C, #7B1FA2);
}

.feature-item:nth-child(5) .feature-icon {
  /* Cooling Systems */
  background: linear-gradient(135deg, #006064, #00838F);
}

.feature-item:nth-child(6) .feature-icon {
  /* 24/7 Support */
  background: linear-gradient(135deg, #B71C1C, #E53935);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-item h3 {
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ============================================
   INDUSTRIES GRID
   ============================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.industry-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.industry-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(13, 71, 161, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.industry-item:hover .industry-icon {
  transform: scale(1.1);
}

/* Per-industry icon colors */
.industry-item:nth-child(1) .industry-icon {
  background: rgba(230, 81, 0, 0.1);
  color: #E65100;
}

.industry-item:nth-child(2) .industry-icon {
  background: rgba(46, 125, 50, 0.1);
  color: #2E7D32;
}

.industry-item:nth-child(3) .industry-icon {
  background: rgba(2, 119, 189, 0.1);
  color: #0277BD;
}

.industry-item:nth-child(4) .industry-icon {
  background: rgba(123, 31, 162, 0.1);
  color: #7B1FA2;
}

.industry-item:nth-child(5) .industry-icon {
  background: rgba(216, 67, 21, 0.1);
  color: #D84315;
}

.industry-item:nth-child(6) .industry-icon {
  background: rgba(198, 40, 40, 0.1);
  color: #C62828;
}

.industry-icon svg {
  width: 22px;
  height: 22px;
}

.industry-item h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.industry-item p {
  font-size: 0.82rem;
  margin-bottom: 0;
}

/* ============================================
   TRUSTED CLIENTS
   ============================================ */
.clients-section {
  background: var(--color-light);
}

/* Marquee viewport */
.clients-marquee {
  overflow: hidden;
  margin-top: 40px;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Scrolling track — contains 2x the logos for seamless loop */
.clients-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  background: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  min-width: 180px;
  min-height: 100px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  border: 1px solid var(--color-border);
  text-decoration: none;
  flex-shrink: 0;
  will-change: transform;
}

.client-logo:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-primary-light);
}

.client-logo img {
  max-height: 60px;
  max-width: 140px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-logo:hover img {
  transform: scale(1.08);
}

/* ============================================
   QUOTE FORM (inline on home)
   ============================================ */
.quote-section {
  background: var(--color-dark);
}

.quote-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quote-text {
  color: var(--color-white);
}

.quote-text h2 {
  color: var(--color-white);
  margin-bottom: 12px;
}

.quote-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.quote-text ul {
  margin-top: 20px;
}

.quote-text ul li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-text ul li svg {
  color: var(--color-secondary);
  width: 18px;
  min-width: 18px;
}

.quote-form {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.quote-form h3 {
  margin-bottom: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
  background: var(--color-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.15);
  background: var(--color-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
  transform: translateY(-6px);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-card-meta a {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.blog-card-meta a:hover {
  opacity: 0.85;
}

.blog-card-body h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body h3 a {
  color: var(--color-text);
  transition: color 0.3s ease;
}

.blog-card-body h3 a:hover {
  color: var(--color-primary);
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
  flex: 1;
}

.blog-card-footer {
  padding: 0 24px 24px;
}

.blog-card-footer a {
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-card-footer a:hover {
  color: var(--color-white);
}

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      transparent,
      transparent 20px,
      rgba(255, 255, 255, 0.015) 20px,
      rgba(255, 255, 255, 0.015) 40px);
  pointer-events: none;
}

.page-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.page-banner h1 {
  color: var(--color-white);
  margin-bottom: 8px;
}

.breadcrumbs {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumbs a:hover {
  color: var(--color-secondary);
}

.breadcrumbs span {
  margin: 0 8px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-intro-text h2 {
  margin-bottom: 16px;
}

.about-intro-text p {
  margin-bottom: 12px;
}

.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  aspect-ratio: 4/3;
}

.about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation-duration: 5.6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.about-image .about-img-1 {
  z-index: 2;
  animation-name: aboutFadeImg1;
}

.about-image .about-img-2 {
  z-index: 1;
  animation-name: aboutFadeImg2;
}

@keyframes aboutFadeImg1 {

  0%,
  36% {
    opacity: 1;
  }

  50%,
  86% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes aboutFadeImg2 {

  0%,
  36% {
    opacity: 0;
  }

  50%,
  86% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fleet-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.fleet-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.fleet-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.fleet-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-gallery-item:hover img {
  transform: scale(1.08);
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
}

.service-detail-content h2 {
  margin-bottom: 16px;
}

.service-detail-content {
  overflow-wrap: break-word;
  word-wrap: break-word;
  min-width: 0;
}

.service-detail-content h3 {
  margin: 24px 0 12px;
}

.service-detail-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.service-detail-content ul li {
  margin-bottom: 8px;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.service-detail-sidebar {
  position: sticky;
  top: 100px;
}

.service-detail-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 20px 0;
  box-shadow: var(--shadow-md);
}

/* FAQ */
.faq-section {
  margin-top: 40px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: var(--color-white);
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  color: var(--color-text);
}

.faq-question:hover {
  background: var(--color-light);
}

.faq-question svg {
  transition: transform 0.3s ease;
  width: 18px;
  height: 18px;
  min-width: 18px;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 20px 16px;
  font-size: 0.92rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.contact-info-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.contact-info-card:nth-child(1) {
  border-top-color: var(--color-secondary);
}

.contact-info-card:nth-child(2) {
  border-top-color: var(--color-primary);
}

.contact-info-card:nth-child(3) {
  border-top-color: var(--color-primary-dark);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
  border-color: transparent;
}

.contact-info-card:nth-child(1):hover {
  border-top-color: var(--color-secondary);
}

.contact-info-card:nth-child(2):hover {
  border-top-color: var(--color-primary);
}

.contact-info-card:nth-child(3):hover {
  border-top-color: var(--color-primary-dark);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-white);
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-card h4 {
  margin-bottom: 6px;
}

.contact-info-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.contact-info-card a {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-info-card a:hover {
  color: var(--color-secondary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: 56px 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg,
      transparent 0px,
      transparent 30px,
      rgba(255, 255, 255, 0.03) 30px,
      rgba(255, 255, 255, 0.03) 60px);
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-col .footer-heading {
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col .footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.footer-col p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-logo {
  height: 48px;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 4px;
}

.footer-links a svg {
  width: 12px;
}

.footer-contact li {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
}

.footer-contact svg {
  width: 18px;
  min-width: 18px;
  color: var(--color-secondary);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

.footer-social svg {
  width: 16px;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
  opacity: 0;
  animation: pulse-wa 2s infinite;
  pointer-events: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@keyframes pulse-wa {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* ============================================
   BLOG ARCHIVE
   ============================================ */
.blog-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.pagination a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.pagination .current {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Single Post */
.single-post-content {
  max-width: 800px;
  margin: 0 auto;
}

.single-post-content h1 {
  margin-bottom: 16px;
}

/* Tighten spacing on single post sections */
.section-blog-single,
.section-related-posts {
  padding-top: 48px;
}

/* Article hero image */
.single-post-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
  max-height: 440px;
}

.single-post-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Meta bar */
.single-post-meta {
  margin-bottom: 40px;
  padding: 16px 24px;
  background: var(--color-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-size: 0.88rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.single-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Dot separator between meta items */
.single-post-meta span+span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-text-light);
  margin-right: 16px;
  flex-shrink: 0;
}

.single-post-meta span svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.single-post-meta a {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

/* Article body typography */
.single-post-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 24px;
  color: var(--color-text);
}

.single-post-body h2 {
  margin: 48px 0 20px;
  padding-left: 16px;
  border-left: 4px solid var(--color-primary);
  font-size: 1.6rem;
}

.single-post-body h3 {
  margin: 36px 0 14px;
  font-size: 1.22rem;
  color: var(--color-text);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
}

/* Drop cap on first paragraph */
.single-post-body>p:first-of-type::first-letter {
  float: left;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 0.85;
  margin: 4px 12px 0 0;
  color: var(--color-primary);
}

.single-post-body ul,
.single-post-body ol {
  padding-left: 0;
  margin-bottom: 24px;
  list-style: none;
}

.single-post-body ul li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--color-text);
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.single-post-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.single-post-body ol {
  counter-reset: article-counter;
  padding-left: 0;
}

.single-post-body ol li {
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: var(--color-text);
  padding-left: 40px;
  position: relative;
  line-height: 1.7;
  counter-increment: article-counter;
}

.single-post-body ol li::before {
  content: counter(article-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blockquotes */
.single-post-body blockquote {
  border-left: 4px solid var(--color-secondary);
  background: var(--color-light);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-text);
}

/* Tables */
.single-post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.single-post-body thead {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
}

.single-post-body th {
  padding: 14px 18px;
  font-weight: 600;
  text-align: left;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
}

.single-post-body td {
  padding: 14px 18px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.single-post-body tbody tr:nth-child(even) {
  background: var(--color-light);
}

.single-post-body tbody tr:hover {
  background: rgba(13, 71, 161, 0.04);
}

/* Strong emphasis within body */
.single-post-body strong {
  color: var(--color-text);
  font-weight: 700;
}

/* Links within body */
.single-post-body a {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(13, 71, 161, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s ease;
}

.single-post-body a:hover {
  text-decoration-color: var(--color-primary);
}

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* Post share / CTA box */
.single-post-cta {
  margin-top: 48px;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(13, 71, 161, 0.06) 0%, rgba(255, 111, 0, 0.06) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 71, 161, 0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.single-post-cta::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(13, 71, 161, 0.05);
  pointer-events: none;
}

.single-post-cta::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 111, 0, 0.05);
  pointer-events: none;
}

.single-post-cta h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  border: none;
  padding: 0;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

.single-post-cta p {
  margin: 0 0 24px;
  color: var(--color-text-light);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.single-post-cta .btn {
  position: relative;
  z-index: 1;
}

/* Post navigation at bottom */
.single-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

/* When only one nav link, span full width */
.single-post-nav a:only-child {
  grid-column: 1 / -1;
  max-width: 50%;
}

.single-post-nav a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.4;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.single-post-nav a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.single-post-nav .nav-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  font-weight: 700;
}

.single-post-nav .nav-next {
  text-align: right;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
  }

  .hero .container {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content p {
    margin: 0 auto 28px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-vehicle {
    position: relative;
    right: auto;
    bottom: auto;
    width: 80%;
    max-width: 80%;
    height: auto;
    aspect-ratio: 5 / 4;
    margin: 20px auto 0;
    z-index: 4;
    overflow: visible;
  }

  .hero-vehicle img {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    display: block;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-vehicle img.hero-vehicle-van {
    scale: 1;
    bottom: 35px;
  }

  .hero-vehicle img.hero-vehicle-truck {
    bottom: 20px;
  }

  .hero-dots {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8px;
  }

  .services-grid,
  .features-grid,
  .blog-grid,
  .blog-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .quote-form-wrapper {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .fleet-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-top: 2px solid var(--color-secondary);
    gap: 0;
  }

  .main-nav.active {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .main-nav.active>a,
  .main-nav.active>.nav-dropdown>a {
    display: block;
    padding: 14px 24px;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .main-nav.active>a:hover,
  .main-nav.active>.nav-dropdown>a:hover {
    background: var(--color-light);
    color: var(--color-primary);
  }

  .main-nav.active>a.active,
  .main-nav.active>.nav-dropdown>a.active {
    color: var(--color-secondary);
    background: rgba(255, 111, 0, 0.05);
    border-left: 3px solid var(--color-secondary);
  }

  /* Remove the underline pseudo-element on mobile */
  .main-nav.active a::after {
    display: none;
  }

  /* Mobile nav quote link */
  .main-nav.active .nav-quote-link {
    color: var(--color-secondary) !important;
  }

  /* Mobile dropdown - collapsible accordion */
  .main-nav.active .nav-dropdown {
    position: static;
    width: 100%;
  }

  /* The chevron icon inside OUR SERVICES link */
  .main-nav.active .nav-dropdown>a svg {
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
  }

  /* Rotate chevron when open */
  .main-nav.active .nav-dropdown.open>a svg {
    transform: rotate(180deg);
  }

  /* Orange left accent on parent when open */
  .main-nav.active .nav-dropdown.open>a {
    border-left: 3px solid var(--color-secondary);
    color: var(--color-secondary);
    background: rgba(255, 111, 0, 0.05);
  }

  /* Submenu: hidden by default, slides open */
  .main-nav.active .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    min-width: 0;
    background: var(--color-light);
    border-radius: 0;
    /* Accordion collapsed state */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-bottom: none;
  }

  /* Submenu open state */
  .main-nav.active .nav-dropdown.open .nav-dropdown-menu {
    max-height: 300px;
    border-bottom: 1px solid var(--color-border);
  }

  .main-nav.active .nav-dropdown-menu a {
    padding: 12px 24px 12px 44px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 3px solid transparent;
  }

  .main-nav.active .nav-dropdown-menu a:last-child {
    border-bottom: none;
  }

  .main-nav.active .nav-dropdown-menu a:hover {
    background: rgba(13, 71, 161, 0.06);
    border-left-color: var(--color-primary);
    color: var(--color-primary);
  }

  /* Hamburger toggle - Pure CSS implementation */
  .menu-toggle {
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    z-index: 1001;
    border: none;
    cursor: pointer;
    position: relative;
    /* Middle line */
    background-color: transparent;
    background-image: linear-gradient(var(--color-dark), var(--color-dark));
    background-size: 24px 2px;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.2s ease;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    content: '';
    position: absolute;
    left: 8px;
    /* (40px - 24px) / 2 = 8px */
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: top 0.3s ease, bottom 0.3s ease, transform 0.3s ease;
  }

  .menu-toggle::before {
    top: 12px;
  }

  .menu-toggle::after {
    bottom: 12px;
  }

  .menu-toggle.active {
    background-image: none;
  }

  .menu-toggle.active::before {
    top: 19px;
    transform: rotate(45deg);
  }

  .menu-toggle.active::after {
    bottom: 19px;
    transform: rotate(-45deg);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 460px;
  }

  .services-grid,
  .features-grid,
  .industries-grid,
  .contact-grid,
  .blog-grid,
  .blog-archive-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fleet-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section {
    padding: 48px 0;
  }
}

@media (max-width: 576px) {
  .hero .container {
    padding-top: 36px;
    padding-bottom: 10px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

}

/* ============================================
   UTILITY ADDITIONS
   ============================================ */

/* Service detail page — vehicle image */
.service-detail-img {
  border-radius: var(--radius-md);
  margin: 24px 0;
  width: 100%;
}

/* Sidebar sticky quote form */
.sidebar-quote-form {
  position: sticky;
  top: 100px;
}

.sidebar-form-title {
  font-size: 1.1rem;
}

/* Sidebar related services box */
.sidebar-related {
  margin-top: 24px;
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 24px;
}

.sidebar-related h4 {
  margin-bottom: 16px;
}

/* Get a Quote nav link highlight */
.nav-quote-link {
  color: var(--color-secondary) !important;
  font-weight: 700;
}

.main-nav .nav-quote-link:hover,
.main-nav .nav-quote-link.active {
  color: var(--color-secondary-hover) !important;
}

/* Quote page layout overrides */
.quote-page-wrapper {
  background: transparent;
}

.quote-page-form {
  box-shadow: var(--shadow-md);
}

.form-intro {
  text-align: center;
  margin-bottom: 24px;
  color: var(--color-text-light);
  font-size: 0.92rem;
}

/* Quote page benefits column */
.quote-benefits {
  padding: 24px 0;
}

.quote-benefits h2 {
  margin-bottom: 16px;
}

.benefits-list {
  margin-top: 20px;
  list-style: none;
}

.benefit-item {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-size: 0.95rem;
}

.benefit-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--color-primary);
}

/* Contact aside box (quote page sidebar) */
.contact-aside {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 24px;
}

.contact-aside h4 {
  margin-bottom: 16px;
}

.contact-aside-list {
  list-style: none;
}

.contact-aside-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-aside-list li:last-child {
  margin-bottom: 0;
}

.contact-aside-list li svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--color-primary);
}

.contact-aside-list li:last-child svg {
  color: var(--color-success);
}

.contact-aside-link {
  color: var(--color-primary);
  font-weight: 600;
}

.contact-aside-link--whatsapp {
  color: var(--color-success);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  /* Reduced from 30px — prevents large layout gaps */
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside grids */
.reveal-children>* {
  opacity: 0;
  transform: translateY(10px);
  /* Reduced from 20px */
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.reveal-children.revealed>*:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-children.revealed>*:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-children.revealed>*:nth-child(3) {
  transition-delay: 0.15s;
}

.reveal-children.revealed>*:nth-child(4) {
  transition-delay: 0.2s;
}

.reveal-children.revealed>*:nth-child(5) {
  transition-delay: 0.25s;
}

.reveal-children.revealed>*:nth-child(6) {
  transition-delay: 0.3s;
}

.reveal-children.revealed>* {
  opacity: 1;
  transform: translateY(0);
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-children>* {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   SECTION WAVE DIVIDERS
   ============================================ */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 50px;
}

.wave-divider--light svg {
  fill: var(--color-light);
}

.wave-divider--white svg {
  fill: var(--color-white);
}

.wave-divider--dark svg {
  fill: var(--color-dark);
}

/* ============================================
   BLOG PLACEHOLDER IMAGE
   ============================================ */
.blog-card-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
}

.blog-card-placeholder svg {
  width: 48px;
  height: 48px;
}

/* Blog archive grid cards: enhance transitions */
.blog-archive-grid .blog-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-archive-grid .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

/* ============================================
   GLOBAL BUTTON ARROW ANIMATION
   ============================================ */
.btn svg {
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.btn:hover svg {
  transform: translateX(5px);
}

/* ============================================
   UI POLISH PASS — March 2026
   ============================================ */

/* Section header tighter bottom spacing */
.section-header {
  margin-bottom: 8px;
}

/* Service card image consistency */
.service-card-img {
  height: 200px;
}

/* Blog card footer better alignment */
.blog-card-footer {
  margin-top: auto;
}

.blog-card-footer a svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.blog-card-footer a:hover svg {
  transform: translateX(4px);
}

/* Industry items — enhanced slide + left accent border on hover */
.industry-item {
  border-left: 3px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-item:hover {
  transform: translateX(6px);
  border-left-color: var(--color-secondary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Quote section gap refinement */
.quote-form-wrapper {
  align-items: start;
  gap: 48px;
}

.quote-text {
  padding-top: 24px;
}

/* Focus-visible for accessibility */
.btn:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Improved hero gradient for deeper text readability */
.hero-bg::after {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.90) 0%, rgba(13, 71, 161, 0.65) 100%);
}

/* Contact page — map balanced heights */
.map-wrapper {
  min-height: 440px;
}

/* Clients section — slightly tighter bottom */
.clients-section.section {
  padding-bottom: 56px;
}

/* Stats bar — breathing room */
.stats-bar {
  padding: 28px 0;
}

/* Page banner — text shadow for readability */
.page-banner h1 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Nav active link — refined underline */
.main-nav a::after {
  height: 2px;
  border-radius: 1px;
}

/* Top bar social hover */
.top-bar-right a:hover {
  transform: translateY(-1px);
}

/* WhatsApp button refined shadow */
.whatsapp-float {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

/* CTA Banner button glow on hover */
.cta-banner .btn:hover {
  box-shadow: 0 8px 24px rgba(255, 111, 0, 0.4);
}

/* FAQ active item — colored border */
.faq-item.active {
  border-color: var(--color-primary-light);
}

/* Service detail content list readability */
.service-detail-content ul li {
  line-height: 1.6;
}

/* Sidebar related services — light bg overrides */
.sidebar-related {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 24px;
}

.sidebar-related h4 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-secondary);
  color: var(--color-dark);
}

/* Override footer-links white text inside sidebar */
.sidebar-related .footer-links a {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.sidebar-related .footer-links a svg {
  color: var(--color-secondary);
}

.sidebar-related .footer-links a:hover {
  color: var(--color-primary);
  padding-left: 6px;
}

.sidebar-related .footer-links li {
  margin-bottom: 8px;
}

/* ============================================
   VISUAL AUDIT IMPROVEMENTS — March 2026
   ============================================ */

/* Temperature badge on service cards */
.service-card-temp-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10, 22, 40, 0.82);
  color: var(--color-white);
  padding: 4px 11px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Enhanced service card CTA button — more inviting */
.service-card-body .btn-outline-dark {
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.service-card-body .btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 71, 161, 0.28);
}


/* Service card image now has relative for badge positioning */
.service-card-img {
  position: relative;
}

/* Icon on About page specialties — fix duplicate truck issue visual */
.about-specialties .feature-icon svg {
  width: 26px;
  height: 26px;
}

/* Slightly thicker industry icon */
.industry-icon svg {
  width: 24px;
  height: 24px;
}

/* "Why Choose" cards — remove gap between section header and grid */
.section:has(.features-grid) .section-header {
  margin-bottom: 4px;
}

/* ─── Areas We Serve Page ─────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.area-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border-top-color: var(--color-secondary);
}

.area-card-header {
  padding: 24px 24px 8px;
  background: transparent;
  color: var(--color-dark);
}

.area-card-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.area-card-header h2::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.area-card-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.area-card-body > p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.area-zones {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.area-zones li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text);
}

.area-zones li svg {
  width: 15px;
  height: 15px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.area-services {
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.area-services .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 992px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .areas-grid { grid-template-columns: 1fr; }
}