/* ============================================
   BHAGAVAN SDN BHD — Corporate Logistics Website
   Design System & Styles
   ============================================ */

/* ---------- Loading Screen (Smart - only shows on slow loads) ---------- */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 99999;
  display: none;
  /* Hidden by default, only shows when loading is slow */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Show loader only when 'loading' class is added (page is slow) */
#loader.loading {
  display: flex;
  opacity: 1;
}

/* Hide loader smoothly */
#loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  width: 180px;
  height: auto;
  margin-bottom: 30px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f1f3f6;
  border-top: 4px solid #c41e3a;
  border-radius: 50%;
  animation: loaderSpin 1s linear infinite;
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(0.98);
  }
}

/* ---------- Google Fonts loaded via HTML head for performance ---------- */

/* ---------- Smooth Scrolling ---------- */
html {
  scroll-behavior: smooth;
}

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --primary-blue: #1E73B7;
  --primary-blue-hover: #1a66a3;
  --primary-blue-light: #e8f2fb;
  --dark-blue: #0F3D63;
  --dark-blue-deep: #0a2d49;
  --accent-red: #E53935;
  --accent-red-hover: #c62828;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fb;
  --light-gray: #f1f3f6;
  --mid-gray: #e0e4ea;
  --text-gray: #6b7280;
  --text-dark: #1f2937;
  --text-heading: #0f172a;
  --black: #111827;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Sizing */
  --container-max: 1200px;
  --container-wide: 1400px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;
  --border-radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 61, 99, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 61, 99, 0.08);
  --shadow-lg: 0 8px 30px rgba(15, 61, 99, 0.1);
  --shadow-xl: 0 16px 50px rgba(15, 61, 99, 0.12);
  --shadow-card: 0 2px 16px rgba(15, 61, 99, 0.07);
  --shadow-card-hover: 0 8px 32px rgba(15, 61, 99, 0.13);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Header Height */
  --header-height: 72px;
  --topbar-height: 42px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--dark-blue);
}

a:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

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

button:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--space-md);
  color: var(--text-gray);
  line-height: 1.8;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--gray {
  background-color: var(--off-white);
}

.section--dark {
  background-color: var(--dark-blue);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
}

.section-header .overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rust-red);
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.05rem;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  transition: all var(--transition-base);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.btn--primary:hover {
  background-color: var(--primary-blue-hover);
  border-color: var(--primary-blue-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 115, 183, 0.35);
}

.btn--cta {
  background-color: var(--accent-red);
  color: var(--white);
  border-color: var(--accent-red);
}

.btn--cta:hover {
  background-color: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.35);
}

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

.btn--outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline-white:hover {
  background-color: var(--white);
  color: var(--dark-blue);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn svg,
.btn i {
  width: 18px;
  height: 18px;
}

/* ---------- Top Contact Bar ---------- */
.topbar {
  background-color: var(--dark-blue);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: transform var(--transition-base);
}

.topbar.hidden {
  transform: translateY(-100%);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
}

.topbar-item a {
  color: rgba(255, 255, 255, 0.85);
}

.topbar-item a:hover {
  color: var(--white);
}

.topbar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.7;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* ---------- Main Header / Navbar ---------- */
.header {
  background-color: transparent;
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(15, 61, 99, 0.08);
  top: 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--dark-blue);
}

.logo span {
  color: var(--primary-blue);
}

.logo:hover {
  color: var(--dark-blue);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

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

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 0;
  transition: all var(--transition-fast);
  position: relative;
}

.nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast);
}

.nav a:not(.btn):hover::after,
.nav a:not(.btn).active::after {
  transform: scaleX(1);
}

.nav a:hover,
.nav a.active {
  color: var(--primary-blue);
  background-color: transparent;
}

.nav .btn--cta {
  margin-left: var(--space-sm);
  padding: 0.55rem 1.4rem;
  font-size: 0.88rem;
  color: var(--white);
}

.nav .btn--cta:hover {
  color: var(--white);
  background-color: var(--accent-red-hover);
}

/* Transparent header state — white text over dark backgrounds */
.header:not(.scrolled) .nav a:not(.btn) {
  color: rgba(255, 255, 255, 0.9);
}

.header:not(.scrolled) .nav a:not(.btn):hover,
.header:not(.scrolled) .nav a:not(.btn).active {
  color: var(--white);
}

.header:not(.scrolled) .nav a:not(.btn)::after {
  background-color: var(--white);
}

.header:not(.scrolled) .logo {
  color: var(--white);
}

.header:not(.scrolled) .logo span {
  color: rgba(255, 255, 255, 0.8);
}

.header:not(.scrolled) .hamburger span {
  background-color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2.5px;
  background-color: var(--dark-blue);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---------- Hero Slider ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--dark-blue-deep);
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1s ease, transform 6s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(10, 25, 47, 0.85) 0%,
      rgba(10, 25, 47, 0.6) 50%,
      rgba(10, 25, 47, 0.3) 100%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  max-width: 650px;
  color: var(--white);
}

.hero-slide-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 1.2rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.hero-slide-content .hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero-slide-content h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-weight: 800;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.hero-slide-content h1 .highlight {
  color: #64b5f6;
}

.hero-slide-content .hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2xl);
  max-width: 520px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}

.hero-slide-content .hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.9s, transform 0.6s ease 0.9s;
}

/* Animate content when slide is active */
.hero-slide.active .hero-slide-content .hero-badge,
.hero-slide.active .hero-slide-content h1,
.hero-slide.active .hero-slide-content .hero-text,
.hero-slide.active .hero-slide-content .hero-buttons {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.hero-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider-arrow svg {
  width: 22px;
  height: 22px;
}

.hero-slider-arrow--prev {
  left: 24px;
}

.hero-slider-arrow--next {
  right: 24px;
}

/* ---------- Feature Strip ---------- */
.feature-strip {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  padding-bottom: var(--space-3xl);
}

.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.feature-strip-card {
  position: relative;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--border-radius);
  padding: var(--space-xl) var(--space-xl) var(--space-xl) var(--space-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-strip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Accent bar on left */
.feature-strip-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-blue), var(--dark-blue));
  border-radius: 4px 0 0 4px;
  transition: width var(--transition-base);
}

.feature-strip-card:hover .feature-strip-accent {
  width: 6px;
}

/* Each card gets a unique accent color */
.feature-strip-card:nth-child(1) .feature-strip-accent {
  background: linear-gradient(to bottom, #3b82f6, #1d4ed8);
}

.feature-strip-card:nth-child(2) .feature-strip-accent {
  background: linear-gradient(to bottom, #ef4444, #b91c1c);
}

.feature-strip-card:nth-child(3) .feature-strip-accent {
  background: linear-gradient(to bottom, #14b8a6, #0d9488);
}

.feature-strip-card:nth-child(4) .feature-strip-accent {
  background: linear-gradient(to bottom, #f59e0b, #d97706);
}

/* Number */
.feature-strip-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.feature-strip-card:nth-child(1):hover .feature-strip-number {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
}

.feature-strip-card:nth-child(2):hover .feature-strip-number {
  background: linear-gradient(135deg, #f87171, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
}

.feature-strip-card:nth-child(3):hover .feature-strip-number {
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  -webkit-background-clip: text;
  background-clip: text;
}

.feature-strip-card:nth-child(4):hover .feature-strip-number {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Body text */
.feature-strip-body h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
  font-weight: 700;
}

.feature-strip-body p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* ---------- About Preview ---------- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-preview-content .overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-blue);
  margin-bottom: var(--space-sm);
}

.about-preview-content h2 {
  margin-bottom: var(--space-lg);
}

.about-preview-content p {
  font-size: 1rem;
  line-height: 1.8;
}

.about-preview-stats {
  display: flex;
  gap: var(--space-2xl);
  margin: var(--space-xl) 0 var(--space-2xl);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--mid-gray);
  border-bottom: 1px solid var(--mid-gray);
}

.about-preview-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-preview-stat strong {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.about-preview-stat span {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 500;
}

.about-preview-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.about-preview-image::before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  border-radius: 0 var(--border-radius-lg) 0 var(--border-radius-lg);
  z-index: -1;
}

.about-preview-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, var(--light-gray), var(--mid-gray));
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  border: 1px solid var(--mid-gray);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-blue-light);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
}

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

.service-card h4 {
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: var(--space-lg);
}

.service-card .btn--sm {
  font-size: 0.82rem;
}

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.feature-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition-base);
  text-align: center;
}

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

.feature-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto var(--space-lg);
  transition: all var(--transition-base);
}

.feature-card-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.15rem;
}

.feature-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
  color: var(--text-gray);
}

/* ---------- Fleet Section ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.fleet-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--mid-gray);
  position: relative;
  overflow: hidden;
}

.fleet-card--owned {
  border-top: 4px solid var(--primary-blue);
}

.fleet-card--leased {
  border-top: 4px solid var(--dark-blue);
}

.fleet-card-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
}

.fleet-card--owned .fleet-card-badge {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.fleet-card--leased .fleet-card-badge {
  background: rgba(15, 61, 99, 0.08);
  color: var(--dark-blue);
}

.fleet-card h3 {
  margin-bottom: var(--space-lg);
}

.fleet-detail {
  display: flex;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.92rem;
}

.fleet-detail:last-child {
  border-bottom: none;
}

.fleet-detail-label {
  font-weight: 600;
  color: var(--text-heading);
  flex-shrink: 0;
  margin-right: var(--space-md);
}

.fleet-detail-value {
  color: var(--text-gray);
  text-align: right;
}

/* ---------- Stats / Counters ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
}

.stat-number {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ---------- Customers Logo Grid ---------- */
.customers-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
}

.customer-logo-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  transition: all var(--transition-base);
  overflow: hidden;
}

.customer-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rust-red);
}

.customer-logo-card img {
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: all var(--transition-base);
}

.customer-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---------- Customers Marquee ---------- */
.marquee-wrapper {
  overflow: hidden;
  padding: var(--space-lg) 0;
  position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}

.section--dark .marquee-wrapper::before {
  background: linear-gradient(to right, var(--dark-blue), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}

.section--dark .marquee-wrapper::after {
  background: linear-gradient(to left, var(--dark-blue), transparent);
}

.section:not(.section--gray):not(.section--dark) .marquee-wrapper::before {
  background: linear-gradient(to right, var(--white), transparent);
}

.section:not(.section--gray):not(.section--dark) .marquee-wrapper::after {
  background: linear-gradient(to left, var(--white), transparent);
}

.marquee-track {
  display: flex;
  gap: var(--space-2xl);
  animation: marquee 30s linear infinite;
  width: max-content;
}

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

.marquee-item {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  background: var(--white);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  padding: var(--space-md);
  color: var(--text-gray);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition-fast);
}

.marquee-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue-light);
}

.marquee-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  border: 1px solid var(--mid-gray);
  position: relative;
}

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

.gallery-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--light-gray), var(--mid-gray));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--text-gray);
}

.gallery-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.gallery-placeholder span {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ---------- CTA Strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.8);
  margin: var(--space-sm) 0 0;
  font-size: 1.05rem;
}

.cta-strip-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--dark-blue-deep);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-4xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  font-weight: 700;
}

.footer-about .logo {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-size: 1.2rem;
}

.footer-about .logo span {
  color: #64b5f6;
}

.footer-about p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.6;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--dark-blue-deep), var(--dark-blue), var(--primary-blue));
  padding: calc(var(--header-height) + var(--topbar-height) + var(--space-3xl)) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb a:hover {
  color: var(--white);
}

.page-header .breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- About Page ---------- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--light-gray), var(--mid-gray));
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid var(--light-gray);
}

.info-table td {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.93rem;
  vertical-align: top;
}

.info-table td:first-child {
  font-weight: 600;
  color: var(--text-heading);
  white-space: nowrap;
  width: 200px;
}

.info-table td:last-child {
  color: var(--text-gray);
}

/* Mission/Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.mv-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition-base);
}

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

.mv-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-blue-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-bottom: var(--space-lg);
}

.mv-card-icon svg {
  width: 26px;
  height: 26px;
}

.mv-card h3 {
  margin-bottom: var(--space-md);
}

.mv-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* Capabilities list */
.capabilities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md) var(--space-2xl);
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--border-radius-sm);
  transition: background var(--transition-fast);
}

.capability-item:hover {
  background: var(--primary-blue-light);
}

.capability-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--primary-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.capability-check svg {
  width: 14px;
  height: 14px;
}

.capability-item h5 {
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.capability-item p {
  font-size: 0.85rem;
  margin: 0;
}

/* Leverage Results */
.leverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.leverage-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition-base);
}

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

.leverage-card svg {
  width: 40px;
  height: 40px;
  color: var(--primary-blue);
  margin-bottom: var(--space-md);
}

.leverage-card h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.leverage-card p {
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--mid-gray);
}

.contact-detail {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--light-gray);
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--primary-blue-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
}

.contact-detail h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.contact-detail a {
  color: var(--text-gray);
}

.contact-detail a:hover {
  color: var(--primary-blue);
}

/* Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--mid-gray);
}

.contact-form-card h3 {
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--mid-gray);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(30, 115, 183, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* ---------- Reveal on Scroll ---------- */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(30px);
}

.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats-row {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .leverage-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 4rem;
    --space-3xl: 3rem;
  }

  .topbar {
    display: none;
  }

  /* Mobile Nav */
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-4xl) var(--space-xl);
    gap: var(--space-xs);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-base);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .nav .btn--cta {
    margin-left: 0;
    margin-top: var(--space-md);
    width: 100%;
    text-align: center;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }

  .features-grid {
    grid-template-columns: 1fr;
    margin-top: calc(-1 * var(--space-2xl));
  }

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

  .fleet-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .capabilities-list {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 70vh;
  }

  .hero-stats-row {
    gap: var(--space-lg);
    flex-wrap: wrap;
  }

  .cta-strip .container {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip-buttons {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .info-table td:first-child {
    white-space: normal;
    width: auto;
  }

  .info-table td {
    display: block;
    padding: var(--space-sm) var(--space-md);
  }

  .info-table td:first-child {
    padding-bottom: 0;
  }

  .leverage-grid {
    grid-template-columns: 1fr;
  }

  .customers-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .topbar-left {
    gap: var(--space-sm);
    font-size: 0.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .customers-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .container {
    padding: 0 var(--space-md);
  }
}

/* ========== ABOUT PAGE — REDESIGNED ========== */

/* --- About Hero: Split Layout --- */
.about-hero {
  padding: calc(var(--space-5xl) + 100px) 0 var(--space-3xl);
  background: var(--white);
  min-height: 50vh;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about-hero__left .overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-blue);
  margin-bottom: var(--space-md);
}

.about-hero__left h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-heading);
}

.about-hero__left h1 .highlight {
  color: var(--primary-blue);
}

.about-hero__right {
  padding-top: var(--space-xl);
}

.about-hero__right .lead {
  font-size: 1.2rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

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

/* --- About Images Grid --- */
.about-images {
  padding-bottom: var(--space-4xl);
}

.about-images__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-lg);
  min-height: 400px;
}

.about-images__item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.about-images__item--tall {
  grid-row: span 2;
}

.about-images__item .about-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
}

/* --- About Image Placeholder (shared) --- */
.about-image-placeholder {
  background: var(--light-gray);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--text-gray);
  aspect-ratio: 4/3;
  border: 2px dashed var(--mid-gray);
}

.about-image-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.35;
}

.about-image-placeholder span {
  font-size: 0.85rem;
  opacity: 0.6;
}

.about-image-placeholder--lg {
  min-height: 380px;
  aspect-ratio: auto;
}

/* --- About Stats Bar --- */
.about-stats {
  background: var(--dark-blue);
  padding: var(--space-3xl) 0;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.about-stats__item h2 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.about-stats__item h2 span {
  color: var(--primary-blue);
  font-weight: 800;
}

.about-stats__item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.4;
}

/* --- About Split Section (Mission/Vision) --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-split--reverse {
  direction: rtl;
}

.about-split--reverse>* {
  direction: ltr;
}

.about-split__icon {
  width: 52px;
  height: 52px;
  background: var(--accent-red);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.about-split__icon svg {
  width: 26px;
  height: 26px;
}

.about-split__content .overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-blue);
  margin-bottom: var(--space-sm);
}

.about-split__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
  margin-bottom: var(--space-lg);
}

.about-split__content h2 em {
  font-style: normal;
  color: var(--primary-blue);
}

.about-split__content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

/* --- About Capabilities (Trusted Section) --- */
.about-capabilities__header {
  max-width: 650px;
  margin-bottom: var(--space-3xl);
}

.about-capabilities__header .overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-blue);
  margin-bottom: var(--space-sm);
}

.about-capabilities__header h2 {
  margin-bottom: var(--space-md);
}

.about-capabilities__header h2 em {
  font-style: normal;
  color: var(--primary-blue);
}

.about-capabilities__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.about-capabilities__right h4 {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-md);
}

.about-capabilities__sub {
  font-size: 0.95rem;
  margin-bottom: var(--space-xl);
}

.about-capabilities__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
}

.about-capabilities__list li {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--mid-gray);
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.about-capabilities__list li:last-child {
  border-bottom: 1px solid var(--mid-gray);
}

.about-capabilities__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- About Details (Corporate Info Grid) --- */
.about-details__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.about-details__header .overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-blue);
  margin-bottom: var(--space-sm);
}

.about-details__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.about-details__item {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition-base);
}

.about-details__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-details__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-blue);
  margin-bottom: var(--space-sm);
}

.about-details__value {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.about-details__value a {
  color: var(--primary-blue);
}

/* --- About Page Responsive --- */
@media (max-width: 768px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-hero__right {
    padding-top: 0;
  }

  .about-hero {
    padding: var(--space-3xl) 0 var(--space-xl);
  }

  .about-images__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-images__item--tall {
    grid-row: auto;
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-split--reverse {
    direction: ltr;
  }

  .about-capabilities__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-details__grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .about-details__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Utility classes ---------- */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mb-2xl {
  margin-bottom: var(--space-2xl);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.pt-0 {
  padding-top: 0;
}

/* Note text */
.note {
  background: var(--primary-blue-light);
  border-left: 4px solid var(--primary-blue);
  padding: var(--space-md) var(--space-lg);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  font-size: 0.9rem;
  color: var(--dark-blue);
  margin-top: var(--space-xl);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  z-index: 10000;
  font-size: 0.85rem;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 6px;
  color: var(--white);
}

/* =========================================
   REDESIGN THEME (Homepage)
   ========================================= */

:root {
  --rust-red: #c53a2b;
  --rust-red-hover: #a12f23;
  --pure-black: #000000;
  --black: #111111;
  --white: #ffffff;
  --off-white: #fafafa;
}

/* --- Topbar --- */
.topbar--dark {
  background-color: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(5px);
  color: #ccc;
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}

.topbar--dark .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.topbar--dark .topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar--dark a {
  color: #ccc;
}

.topbar--dark a:hover {
  color: var(--white);
}

/* --- Header --- */
.header--redesign {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 42px;
  /* below topbar */
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header--redesign.scrolled {
  position: fixed;
  top: 0;
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo--redesign {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 50px;
  height: 50px;
  background-color: var(--rust-red);
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-family: serif;
}

.logo-b {
  font-size: 30px;
  font-weight: bold;
}

.logo-curved {
  position: absolute;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 800;
  color: var(--pure-black);
  bottom: -4px;
  margin-left: 10px;
  text-transform: uppercase;
  background: white;
  padding: 0 4px;
}

.nav--redesign {
  display: flex;
  gap: 30px;
}

.nav--redesign a {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--white);
  /* White on the dark hero */
}

.nav--redesign a:hover,
.nav--redesign a.active {
  color: var(--rust-red);
}

.header--redesign.scrolled .nav--redesign a {
  color: var(--pure-black);
}

.header--redesign.scrolled .nav--redesign a:hover,
.header--redesign.scrolled .nav--redesign a.active {
  color: var(--rust-red);
}

.btn--header-quote {
  background-color: var(--rust-red);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

.btn--header-quote:hover {
  background-color: var(--rust-red-hover);
  color: var(--white);
}

.header-progress-line {
  height: 4px;
  background-color: var(--rust-red);
  width: 100%;
}

/* --- Hero --- */
.hero--redesign {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: scale(1.05);
  /* Zoom effect */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 5;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-content--redesign {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  width: 100%;
}

.hero-badge-container {
  margin-bottom: var(--space-lg);
}

.hero-badge--rust {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero-title--huge {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-family: var(--font-primary);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: var(--space-xl);
  text-transform: uppercase;
}

.hero-subtitle--rust {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.6;
}

.hero-actions--rust {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.btn-rust-solid {
  background-color: var(--rust-red);
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  padding: 1rem 2.5rem;
  letter-spacing: 1px;
}

.btn-rust-outline {
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  padding: 1rem 2.5rem;
  letter-spacing: 1px;
}

.btn-rust-solid:hover {
  background-color: var(--rust-red-hover);
  color: var(--white);
}

.btn-rust-outline:hover {
  background-color: var(--white);
  color: var(--black);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(197, 58, 43, 0.8);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 10;
  transition: all 0.2s;
  cursor: pointer;
}

.hero-arrow svg {
  width: 24px;
  height: 24px;
}

.hero-arrow:hover {
  background-color: var(--rust-red);
}

.hero-arrow--prev {
  left: 0;
}

.hero-arrow--next {
  right: 0;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.hero-dots .dot.active {
  background-color: var(--rust-red);
}

/* --- Stats --- */
.stats-black-block {
  background-color: var(--black);
  padding: var(--space-4xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-col {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-col.line-none {
  border-right: none;
}

.stat-num {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--rust-red);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.stat-txt {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
}

/* --- Services --- */
.services-clean-section {
  padding: var(--space-5xl) 0;
  background-color: var(--white);
}

.section-title-underlined {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--pure-black);
  margin-bottom: var(--space-4xl);
  display: inline-block;
  border-bottom: 6px solid var(--rust-red);
  padding-bottom: 5px;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.service-clean-card {
  border: 1px solid #eaeaea;
  padding: var(--space-3xl) var(--space-2xl);
  background: var(--white);
  transition: all var(--transition-fast);
}

.service-clean-card.active,
.service-clean-card:hover {
  border-color: var(--rust-red);
}

.service-clean-card .card-icon {
  margin-bottom: var(--space-xl);
}

.service-clean-card .card-icon svg {
  width: 45px;
  height: 45px;
  color: var(--rust-red);
}

.service-clean-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: var(--space-md);
  color: var(--pure-black);
}

.service-clean-card p {
  color: var(--text-gray);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.learn-more-link {
  color: var(--rust-red);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- Split About --- */
.split-about-section {
  padding: var(--space-5xl) 0;
  background-color: var(--off-white);
}

/* Company Info Grid */
.company-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid #ddd;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rust-red);
}

.info-value {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.info-value a {
  color: var(--dark-blue);
  text-decoration: none;
}

.info-value a:hover {
  color: var(--rust-red);
}

.dual-col-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.split-heading {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-family: var(--font-primary);
  font-weight: 900;
  line-height: 1.05;
  color: var(--pure-black);
  margin-bottom: var(--space-lg);
}

.split-paragraph {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: var(--space-2xl);
  max-width: 95%;
  line-height: 1.8;
}

.feature-list-card {
  background: var(--white);
  border: 1px solid #eaeaea;
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.feature-list-card .check-icon svg {
  width: 28px;
  height: 28px;
  color: var(--rust-red);
  margin-top: 4px;
}

.feat-text h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--pure-black);
}

.feat-text p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--text-gray);
  line-height: 1.6;
}

/* --- Responsive Adjustments for Redesign --- */
@media (max-width: 1024px) {

  .dual-col-container,
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .stats-flex-container {
    flex-wrap: wrap;
  }

  .stat-col {
    flex: 0 0 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-lg) 0;
  }

  .stat-col:nth-child(2),
  .stat-col:nth-child(4) {
    border-right: none;
  }

  .stat-col:nth-child(3),
  .stat-col:nth-child(4) {
    border-bottom: none;
  }

  .nav--redesign {
    display: none;
  }

  .btn--header-quote {
    display: none;
  }

  .hamburger--redesign {
    display: flex;
  }
}

/* =========================================
   REDESIGN THEME - PART 2
   ========================================= */

/* --- Who We Are Split --- */
.who-we-are-section {
  background-color: var(--black);
  color: var(--white);
}

.who-we-are-container {
  display: flex;
  min-height: 750px;
}

.who-we-are-left {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  border-right: 4px solid var(--rust-red);
}

.who-we-are-experience {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  flex-direction: column;
}

.who-we-are-experience .exp-num {
  font-family: var(--font-primary);
  font-size: 6rem;
  font-weight: 900;
  color: var(--rust-red);
  line-height: 1;
}

.who-we-are-experience .exp-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.who-we-are-right {
  flex: 1.1;
  padding: var(--space-5xl) var(--space-4xl);
  display: flex;
  align-items: center;
}

.who-we-are-content {
  max-width: 600px;
}

.section-overline--red {
  color: var(--rust-red);
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.who-we-are-content h2 {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.who-we-are-content p {
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.divider--dark-red {
  height: 1px;
  background-color: rgba(197, 58, 43, 0.3);
  margin: var(--space-2xl) 0;
}

.who-we-are-stats {
  display: flex;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.stat-item-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item-mini strong {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--rust-red);
  line-height: 1;
}

.stat-item-mini span {
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.bg-dark-btn {
  background-color: transparent;
}

.bg-dark-btn:hover {
  background-color: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* --- Our Fleet --- */
.our-fleet-section {
  background-color: var(--black);
}

.text-white {
  color: var(--white) !important;
}

.fleet-cards-grid {
  display: flex;
  width: 100%;
}

.fleet-card {
  flex: 1;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.fleet-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
}

.fleet-card-content {
  position: relative;
  z-index: 2;
  padding: var(--space-3xl);
  width: 100%;
}

.fleet-card-content h3 {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.fleet-card-content p {
  color: #ccc;
  font-size: 1.05rem;
  margin: 0;
}

.border-left-right {
  border-left: 2px solid var(--black);
  border-right: 2px solid var(--black);
}

/* --- Footer Redesign --- */
.footer--redesign {
  background-color: var(--white);
  padding-top: var(--space-5xl);
  border-top: 1px solid #eaeaea;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-4xl);
}

.footer-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--pure-black);
  margin-bottom: var(--space-xl);
  letter-spacing: 1.5px;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col ul li {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 18px;
}

.footer-links-col ul li::before {
  content: "•";
  color: var(--rust-red);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: inherit;
}

.footer-links-col ul li a {
  color: var(--text-gray);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-links-col ul li a:hover {
  color: var(--rust-red);
}

.footer-contact-col .contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: var(--space-lg);
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-contact-col .contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--rust-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom--redesign {
  border-top: 1px solid #eaeaea;
  padding: var(--space-lg) 0;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: var(--text-gray);
}

.footer-legal a:hover {
  color: var(--rust-red);
}

@media (max-width: 1024px) {
  .who-we-are-container {
    flex-direction: column;
  }

  .who-we-are-left {
    min-height: 400px;
    border-right: none;
    border-bottom: 4px solid var(--rust-red);
  }

  .fleet-cards-grid {
    flex-direction: column;
  }

  .fleet-card {
    border-left: none;
    border-right: none;
    border-bottom: 2px solid var(--black);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .who-we-are-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

/* --- Services Dark Grid --- */
.services-dark-section {
  background-color: var(--black);
  padding: var(--space-5xl) 0;
}

.services-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.service-dark-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  transition: all var(--transition-fast);
  border-top: 4px solid transparent;
}

.service-dark-card:hover {
  transform: translateY(-10px);
  border-top-color: var(--rust-red);
  background-color: #111;
}

.card-icon-red {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.card-icon-red svg {
  width: 50px;
  height: 50px;
  color: var(--rust-red);
}

.service-dark-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.service-dark-card p {
  color: #ccc;
  line-height: 1.6;
}

/* --- Features Strip --- */
.features-strip-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.feature-strip-panel {
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  color: var(--white);
  transition: all var(--transition-fast);
}

.feature-strip-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.feature-strip-panel:hover::before {
  background: rgba(0, 0, 0, 0.7);
}

.feature-strip-panel>* {
  position: relative;
  z-index: 2;
}

.fs-icon {
  margin-bottom: var(--space-md);
  display: inline-flex;
}

.fs-icon svg {
  width: 40px;
  height: 40px;
  color: var(--rust-red);
}

.feature-strip-panel h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.feature-strip-panel p {
  color: #ddd;
  line-height: 1.6;
}

/* --- Fleet Hover Effect Override --- */
.fleet-card {
  transition: all 0.4s ease;
}

.fleet-card-content {
  transform: translateY(30px);
  transition: all 0.4s ease;
}

.fleet-card p {
  opacity: 0;
  transition: all 0.4s ease;
}

.fleet-card:hover {
  background-color: #000;
}

.fleet-card:hover .fleet-card-content {
  transform: translateY(0);
}

.fleet-card:hover p {
  opacity: 1;
}

/* --- Footer Top Border --- */
.footer--redesign {
  border-top: 4px solid var(--rust-red);
}

@media (max-width: 1024px) {
  .services-dark-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-strip-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-dark-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage 1:1 screenshot overrides */
body.home-redesign {
  background: #fff;
}

body.home-redesign .container {
  max-width: 1400px;
}

body.home-redesign .topbar--dark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 0;
  background: rgba(12, 12, 12, 0.95);
  border-bottom: 1px solid #262626;
  font-size: 13px;
}

body.home-redesign .topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

body.home-redesign .topbar-inner div {
  display: flex;
  gap: 18px;
}

body.home-redesign .header--redesign {
  position: fixed;
  top: 35px;
  background: rgba(40, 40, 40, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.home-redesign .header--redesign.scrolled {
  top: 0;
  background: #fff;
}

body.home-redesign .header-container {
  height: 78px;
}

body.home-redesign .header-progress-line {
  height: 2px;
}

body.home-redesign .logo-mark img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

body.home-redesign .footer-logo img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

body.home-redesign .hero--redesign {
  margin-top: 0;
}

body.home-redesign .hero-bg-slide {
  background-position: center;
  background-size: cover;
}

body.home-redesign .hero-bg-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

body.home-redesign .hero-bg-1 {
  background-image: url("../images/fleet/TGA_7032.webp");
}

body.home-redesign .hero-bg-2 {
  background-image: url("../images/fleet/TGA_7036.webp");
}

body.home-redesign .hero-bg-3 {
  background-image: url("../images/hero/TGA_7013.JPG");
}

body.home-redesign .hero-content--redesign {
  padding-top: 90px;
}

body.home-redesign .hero-title--huge {
  max-width: 900px;
}

body.home-redesign .hero-subtitle--rust {
  max-width: 800px;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}

body.home-redesign .hero-badge--rust {
  letter-spacing: 4px;
  font-size: 12px;
}

body.home-redesign .hero-arrow {
  font-size: 38px;
  line-height: 1;
  font-weight: 300;
  background: #c53a2b;
}

body.home-redesign .stats-black-block {
  padding: 50px 0;
}

body.home-redesign .services-clean-section {
  padding: 80px 0 88px;
}

body.home-redesign .services-cards-grid {
  margin-top: 18px;
}

body.home-redesign .service-clean-card h3 {
  font-size: 38px;
  line-height: 1.05;
  margin-bottom: 14px;
}

body.home-redesign .who-we-are-left {
  background: linear-gradient(130deg, #3b3b3b 0%, #111 100%);
}

body.home-redesign .fleet-heading-wrap {
  padding-top: 64px;
}

body.home-redesign .fleet-a {
  background: linear-gradient(135deg, #343434 0%, #121212 100%);
}

body.home-redesign .fleet-b {
  background: linear-gradient(135deg, #2b2b2b 0%, #0d0d0d 100%);
}

body.home-redesign .fleet-c {
  background: linear-gradient(135deg, #393939 0%, #141414 100%);
}

body.home-redesign .split-about-section {
  background: #f5f5f5;
}

body.home-redesign .feature-list-card {
  border: 1px solid #dfdfdf;
}

body.home-redesign .footer-logo img {
  width: 360px;
}

body.home-redesign .footer-contact-col .btn-rust-solid {
  margin-top: 6px;
  display: inline-block;
}

@media (max-width: 900px) {
  body.home-redesign .topbar--dark {
    display: none;
  }

  body.home-redesign .header--redesign {
    top: 0;
  }

  body.home-redesign .hero-subtitle--rust {
    font-size: 26px;
  }

  body.home-redesign .services-cards-grid,
  body.home-redesign .dual-col-container {
    grid-template-columns: 1fr;
  }
}


/* Spec-accurate homepage refinements */
body.home-redesign .topbar--dark {
  height: 36px;
  padding: 8px 0;
  background: rgba(0, 0, 0, 0.78);
  border: 0;
  overflow: hidden;
  transition: transform 0.35s ease;
}

body.home-redesign .topbar-inner {
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}

body.home-redesign .topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #d8d8d8;
  white-space: nowrap;
}

body.home-redesign .topbar-item svg {
  width: 14px;
  height: 14px;
  fill: #c53a2b;
  flex: 0 0 14px;
}

body.home-redesign .topbar-item a {
  color: #d8d8d8;
}

body.home-redesign .header--redesign {
  top: 36px;
  background: rgba(0, 0, 0, 0.52);
  border-bottom: 0;
  transition: transform 0.35s ease, background 0.35s ease, border 0.35s ease;
}

body.home-redesign .header-container {
  height: 90px;
}

body.home-redesign .header-progress-line {
  display: none;
}

body.home-redesign .nav--redesign {
  gap: 32px;
}

body.home-redesign .nav--redesign a {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

body.home-redesign .btn--header-quote {
  background: transparent;
  border: 2px solid #c53a2b;
  padding: 8px 24px;
  font-size: 14px;
}

body.home-redesign .header--redesign.scrolled {
  top: 0;
  background: #fff;
  border-bottom: 3px solid #c53a2b;
}

body.home-redesign .header--redesign.scrolled .btn--header-quote {
  background: #c53a2b;
  color: #fff;
}

body.home-redesign.header-bars-hidden .topbar--dark {
  transform: translateY(-100%);
}

body.home-redesign.header-bars-hidden .header--redesign:not(.scrolled) {
  transform: translateY(-120%);
}

body.home-redesign .hero--redesign {
  height: 100vh;
  min-height: 100vh;
}

body.home-redesign .hero-bg-slide::before {
  background: rgba(0, 0, 0, 0.6);
}

body.home-redesign .hero-badge--rust {
  font-size: 12px;
  padding: 8px 16px;
  letter-spacing: 4px;
}

body.home-redesign .hero-title--huge {
  font-size: clamp(48px, 8vw, 96px);
}

body.home-redesign .hero-subtitle--rust {
  font-size: 20px;
  opacity: 0.85;
  max-width: 672px;
  text-transform: none;
  font-weight: 500;
  line-height: 1.5;
}

body.home-redesign .btn-rust-solid,
body.home-redesign .btn-rust-outline {
  padding: 16px 32px;
  font-size: 14px;
  letter-spacing: 2px;
}

body.home-redesign .hero-actions--rust {
  gap: 16px;
}

body.home-redesign .hero-arrow {
  padding: 12px;
  width: auto;
  height: auto;
  line-height: 1;
}

body.home-redesign .hero-arrow--prev {
  left: 12px;
}

body.home-redesign .hero-arrow--next {
  right: 12px;
}

body.home-redesign .stats-black-block {
  padding: 40px 0;
}

body.home-redesign .stat-col {
  padding: 24px 32px;
}

body.home-redesign .stat-num {
  font-size: 60px;
}

body.home-redesign .stat-txt {
  font-size: 12px;
  letter-spacing: 3px;
}

body.home-redesign .services-clean-section {
  padding: 80px 24px;
}

body.home-redesign .services-clean-section .container {
  max-width: 1152px;
  padding: 0;
}

body.home-redesign .section-title-underlined {
  font-size: clamp(48px, 5vw, 60px);
  border-bottom-width: 4px;
  text-align: left;
}

body.home-redesign .services-cards-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.home-redesign .service-clean-card {
  border: 2px solid #d5d5d5;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.home-redesign .service-clean-card:hover,
body.home-redesign .service-clean-card.active {
  border-color: #c53a2b;
}

body.home-redesign .service-icon {
  margin-bottom: 20px;
}

body.home-redesign .service-icon svg {
  width: 40px;
  height: 40px;
  fill: #c53a2b;
}

body.home-redesign .service-clean-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

body.home-redesign .service-clean-card p {
  font-size: 14px;
  color: #6a6a6a;
  line-height: 1.6;
}

body.home-redesign .split-about-section {
  background: #ededed;
  padding: 80px 0;
}

body.home-redesign .dual-col-container {
  gap: 64px;
  grid-template-columns: 1fr 1fr;
}

body.home-redesign .split-heading {
  font-size: 60px;
}

body.home-redesign .check-icon svg {
  width: 24px;
  height: 24px;
  fill: #c53a2b;
}

body.home-redesign .feature-list-card {
  border: 1px solid #d6d6d6;
  padding: 20px;
  gap: 14px;
  margin: 0 0 16px;
}

body.home-redesign .who-we-are-section {
  padding: 80px 0;
  background: #000;
}

body.home-redesign .who-we-are-container {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 420px;
}

body.home-redesign .who-we-are-left {
  flex: 5;
  min-height: 420px;
  background: linear-gradient(130deg, #1a1a1a 0%, #0d0d0d 100%);
  border-right: 6px solid #c53a2b;
  position: relative;
}

body.home-redesign .who-we-are-experience {
  left: 32px;
  bottom: 32px;
}

body.home-redesign .who-we-are-experience .exp-num {
  font-size: 72px;
}

body.home-redesign .who-we-are-experience .exp-text {
  color: #b2b2b2;
  font-size: 12px;
  letter-spacing: 2px;
}

body.home-redesign .who-we-are-right {
  flex: 7;
  background: #111;
  padding: 48px 40px;
}

body.home-redesign .section-overline--red {
  font-size: 12px;
  letter-spacing: 4px;
}

body.home-redesign .who-we-are-content h2 {
  font-size: clamp(40px, 4vw, 50px);
}

body.home-redesign .who-we-are-content p {
  color: #9a9a9a;
}

body.home-redesign .divider--dark-red {
  margin: 16px 0;
}

body.home-redesign .our-fleet-section {
  background: #000;
}

body.home-redesign .fleet-heading-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 40px 32px;
}

body.home-redesign .fleet-cards-grid {
  width: 100%;
  gap: 0;
  height: 560px;
}

body.home-redesign .fleet-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex: 1;
  height: 560px;
  min-height: 560px;
  overflow: hidden;
  border-right: 2px solid #131313;
  border-radius: 0;
}

body.home-redesign .fleet-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #c53a2b;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 3;
}

body.home-redesign .fleet-card:last-child {
  border-right: 0;
}

body.home-redesign .fleet-card.border-left-right {
  border-left: 0;
  border-right: 2px solid #131313;
}

body.home-redesign .fleet-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  z-index: 1;
}

body.home-redesign .fleet-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  filter: none;
  transition: transform 0.7s ease;
  z-index: 0;
}

body.home-redesign .fleet-a .fleet-media {
  background-image: url("../images/fleet/TGA_7040.webp");
}

body.home-redesign .fleet-b .fleet-media {
  background-image: url("../images/fleet/TGA_7050.webp");
  background-position: 30% center;
}

body.home-redesign .fleet-c .fleet-media {
  background-image: linear-gradient(135deg, #151515 0%, #090909 100%);
}

body.home-redesign .fleet-card:hover {
  transform: none;
}

body.home-redesign .fleet-card:hover::after {
  opacity: 1;
}

body.home-redesign .fleet-card:hover .fleet-media {
  transform: scale(1.05);
}

body.home-redesign .fleet-see-all {
  text-decoration: none;
}

body.home-redesign .fleet-circle-arrow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.home-redesign .fleet-circle-arrow svg {
  width: 36px;
  height: 36px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.home-redesign .fleet-card.fleet-see-all:hover .fleet-circle-arrow {
  background: #c53a2b;
  border-color: #c53a2b;
  transform: translate(-50%, -50%) scale(1.05);
}

body.home-redesign .fleet-card.fleet-see-all:hover .fleet-circle-arrow svg {
  transform: translateX(6px) scale(1.05);
}

body.home-redesign .fleet-see-all .fleet-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

body.home-redesign .fleet-see-all h3 {
  color: #fff;
}

body.home-redesign .fleet-see-all p {
  color: #c9c9c9;
}

body.home-redesign .fleet-card-content {
  position: relative;
  z-index: 2;
  transform: none;
  padding: 0 32px 32px 32px;
}

body.home-redesign .fleet-card-content h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

body.home-redesign .fleet-card p {
  opacity: 1;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

body.home-redesign .fleet-heading-wrap .section-title-underlined {
  font-size: clamp(48px, 5vw, 60px);
  border-bottom: 4px solid #c53a2b;
  margin-bottom: 0;
}

body.home-redesign .cta-banner-section {
  position: relative;
  padding: 72px 24px;
  background: linear-gradient(135deg, #181818 0%, #0a0a0a 100%);
  text-align: center;
  overflow: hidden;
  border-top: 4px solid #c53a2b;
}

body.home-redesign .cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

body.home-redesign .cta-banner-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  margin-bottom: 16px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.home-redesign .cta-banner-content p {
  font-size: clamp(16px, 2vw, 18px);
  color: #d1d1d1;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
}

body.home-redesign .btn--huge {
  padding: 16px 40px;
  font-size: 15px;
  letter-spacing: 2px;
  display: inline-block;
  font-weight: 800;
}

body.home-redesign .btn--huge:hover {
  background: #a12f23;
  color: #fff;
}

body.home-redesign .footer--redesign {
  border-top: 4px solid #c53a2b;
}

/* Override .container constraint inside footer */
body.home-redesign .footer--redesign .container {
  max-width: none;
  width: 100%;
  padding: 0 60px;
}

body.home-redesign .footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-top: 50px;
  padding-bottom: 50px;
}

body.home-redesign .footer-logo-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  margin-left: 0;
}

body.home-redesign .footer-logo-col .footer-logo {
  display: block;
}

body.home-redesign .footer-title {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 3px solid #c53a2b;
}

body.home-redesign .footer-contact-col .btn-rust-solid {
  width: 100%;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

body.home-redesign .footer-bottom--redesign {
  background: #f4f4f4;
  font-size: 12px;
  padding: 16px 0;
}

body.home-redesign .footer-bottom--redesign .container {
  max-width: none;
  width: 100%;
  padding: 0 60px;
}

body.home-redesign .footer-bottom-flex {
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  body.home-redesign .services-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  body.home-redesign .header--redesign {
    top: 0;
  }

  body.home-redesign .topbar--dark {
    display: none;
  }

  body.home-redesign .services-cards-grid,
  body.home-redesign .dual-col-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.home-redesign .services-cards-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== Service Card Animations ===== */
body.js-enabled .service-clean-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease,
              border-color 0.3s ease, box-shadow 0.3s ease;
}

body.js-enabled .service-clean-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

body.home-redesign .service-clean-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  border-color: #c53a2b;
}

body.home-redesign .service-icon svg {
  transition: transform 0.3s ease;
}

body.home-redesign .service-clean-card:hover .service-icon svg {
  transform: scale(1.18);
}

/* ===== Stats Count-Up Fade-In ===== */
body.js-enabled .stat-col {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.js-enabled .stat-col.stat-visible {
  opacity: 1;
  transform: translateY(0);
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

a img, button img {
  pointer-events: auto;
}
