/* ═══════════════════════════════════════════════════════════════
   Safe Way — Smart Transport | Master Stylesheet
   Design System: Deep Petrol + Neon Green + Premium Glassmorphism
   ═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&family=Tajawal:wght@300;400;500;700&family=Inter:wght@400;500;600;700;800&display=swap');

/* ── CSS Custom Properties (Design Tokens) ── */
:root {
  /* Colors */
  --primary:         #004346;
  --primary-deep:    #002A2C;
  --primary-light:   #005A5E;
  --accent:          #00FF66;
  --accent-dim:      #00CC52;
  --accent-glow:     rgba(0, 255, 102, 0.35);
  --accent-glow-strong: rgba(0, 255, 102, 0.55);
  --white:           #FFFFFF;
  --off-white:       #F8F9FA;
  --gray-100:        #F1F3F5;
  --gray-200:        #E9ECEF;
  --gray-400:        #ADB5BD;
  --gray-600:        #6C757D;
  --gray-800:        #343A40;
  --dark:            #0A1A1B;

  /* Typography */
  --font-heading:    'Cairo', sans-serif;
  --font-body:       'Tajawal', sans-serif;
  --font-en:         'Inter', sans-serif;

  /* Spacing */
  --section-padding:  100px 0;
  --container-width:  1200px;
  --gap:             24px;

  /* Effects */
  --radius-sm:       8px;
  --radius-md:       16px;
  --radius-lg:       24px;
  --radius-xl:       32px;
  --shadow-sm:       0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:       0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:       0 16px 48px rgba(0,0,0,0.18);
  --shadow-glow:     0 0 30px var(--accent-glow), 0 0 60px rgba(0,255,102,0.15);
  --transition:      all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;

  /* Glass */
  --glass-bg:        rgba(0, 67, 70, 0.65);
  --glass-border:    rgba(255, 255, 255, 0.1);
  --glass-blur:      20px;
}

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

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

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

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

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

ul { list-style: none; }

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

/* ── Utility Classes ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

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

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 42, 44, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

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

.nav-logo img {
  height: 320px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  margin: -120px -40px;
  filter: drop-shadow(0 2px 12px rgba(0,255,102,0.25));
  transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
  height: 240px;
  margin: -90px -30px;
}

.nav-logo-text {
  display: none; /* Logo PNG already has brand text */
}

.nav-logo-text .brand {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  line-height: 1.1;
}

.nav-logo-text .tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--gray-400);
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  background: var(--accent) !important;
  color: var(--primary-deep) !important;
  padding: 10px 28px !important;
  border-radius: 50px !important;
  font-size: 0.9rem !important;
  box-shadow: 0 0 20px var(--accent-glow);
  transition: var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow) !important;
}

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

/* Hamburger Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ══════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background Image Layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.5) contrast(1.1);
}

/* Gradient Overlays */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(0, 42, 44, 0.85) 0%,
      rgba(0, 67, 70, 0.6) 40%,
      rgba(0, 42, 44, 0.75) 70%,
      rgba(10, 26, 27, 0.95) 100%
    );
}

/* Animated Particle Grid */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-200px) scale(1); }
  80% { opacity: 0.1; }
}

/* Geometric Accent Lines */
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  height: 1px;
  animation: lineSlide 12s infinite ease-in-out;
}

.hero-line:nth-child(1) {
  top: 20%;
  width: 60%;
  right: -20%;
  animation-delay: 0s;
}

.hero-line:nth-child(2) {
  top: 50%;
  width: 40%;
  left: -10%;
  animation-delay: 4s;
}

.hero-line:nth-child(3) {
  top: 75%;
  width: 50%;
  right: -15%;
  animation-delay: 8s;
}

@keyframes lineSlide {
  0%, 100% { opacity: 0; transform: translateX(100%); }
  30% { opacity: 0.5; }
  50% { opacity: 0.8; transform: translateX(-100%); }
  70% { opacity: 0.3; }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 950px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid rgba(0, 255, 102, 0.25);
  border-radius: 50px;
  padding: 8px 24px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 8px;
  animation: fadeInUp 0.9s ease-out 0.2s both;
}

.hero-title .brand-name {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow);
  font-family: var(--font-en);
  font-weight: 800;
  letter-spacing: 2px;
}

.hero-title .dash {
  color: var(--accent);
  opacity: 0.6;
  margin: 0 4px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 2;
  animation: fadeInUp 0.9s ease-out 0.4s both;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease-out 0.6s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-deep);
  background: var(--accent);
  border: none;
  border-radius: 60px;
  padding: 18px 42px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 40px var(--accent-glow-strong), 0 0 80px rgba(0,255,102,0.2);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 60px;
  padding: 16px 36px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0,255,102,0.15);
}

/* Fleet Preview in Hero */
.hero-fleet {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.fleet-vehicle {
  position: relative;
  text-align: center;
}

.fleet-vehicle img {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5)) brightness(1.1);
  transition: var(--transition);
}

.fleet-vehicle:hover img {
  transform: translateY(-8px) scale(1.05);
  filter: drop-shadow(0 16px 40px rgba(0,255,102,0.2)) brightness(1.15);
}

.fleet-vehicle .vehicle-label {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1s ease-out 1s both;
}

.hero-scroll .scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.hero-scroll .scroll-dot {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 4px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 20px; opacity: 0.3; }
}

.hero-scroll span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-en);
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════════
   PARTNERS SECTION (شركاء النجاح)
   ══════════════════════════════════════════ */
.partners {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--primary-deep) 50%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.partners::before,
.partners::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,102,0.2), transparent);
}
.partners::before { top: 0; }
.partners::after  { bottom: 0; }

.partners .section-subtitle {
  margin-bottom: 48px;
}

/* ── Marquee wrapper ── */
.partners-marquee-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  direction: ltr; /* Force LTR so marquee scrolls correctly on RTL page */
}

/* Fade edges */
.partners-marquee-outer::before,
.partners-marquee-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 3;
  pointer-events: none;
}
.partners-marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}
.partners-marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

/* ── The scrolling belt ── */
.partners-marquee-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 50s linear infinite;
  will-change: transform;
}

.partners-marquee-outer:hover .partners-marquee-inner {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Logo card ── */
.partner-card {
  flex: 0 0 140px;
  width: 140px !important;
  height: 88px !important;
  min-width: 140px;
  max-width: 140px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
  overflow: hidden;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.3),
    0 0 0 2px rgba(0,255,102,0.4);
}

.partner-card img {
  width: 100% !important;
  height: 100% !important;
  max-width: 116px !important;
  max-height: 64px !important;
  object-fit: contain !important;
  display: block;
}

/* ══════════════════════════════════════════
   STATS BAR (Social Proof)
   ══════════════════════════════════════════ */
.stats-bar {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  padding: 48px 0;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,255,102,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0,255,102,0.04) 0%, transparent 60%);
}

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

.stat-item {
  text-align: center;
  padding: 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0,255,102,0.2), transparent);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,255,102,0.1);
  border-radius: 12px;
  color: var(--accent);
  font-size: 1.4rem;
}

.stat-number {
  font-family: var(--font-en);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 30px var(--accent-glow);
}

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

/* ══════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════ */
.services {
  padding: var(--section-padding);
  background: var(--dark);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(ellipse at center top, rgba(0,67,70,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  background: linear-gradient(160deg, rgba(0,67,70,0.4) 0%, rgba(0,42,44,0.6) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  group: true;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,255,102,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(0,255,102,0.08);
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,42,44,0.95) 0%, transparent 100%);
}

.service-card-body {
  padding: 28px;
  position: relative;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,255,102,0.1);
  border: 1px solid rgba(0,255,102,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 16px;
  margin-top: -52px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--primary-deep);
  box-shadow: 0 0 25px var(--accent-glow);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  transition: var(--transition-fast);
}

.service-link svg {
  transition: var(--transition-fast);
}

.service-card:hover .service-link svg {
  transform: translateX(-6px);
}

/* ══════════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════════ */
.why-us {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--dark) 0%, var(--primary-deep) 50%, var(--dark) 100%);
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: rgba(0,67,70,0.25);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0,255,102,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(0,67,70,0.45);
  border-color: rgba(0,255,102,0.15);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0,255,102,0.12) 0%, rgba(0,255,102,0.04) 100%);
  border: 1px solid rgba(0,255,102,0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--primary-deep);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: scale(1.05);
}

.feature-text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 0.93rem;
  color: var(--gray-400);
  line-height: 1.8;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testimonials {
  padding: var(--section-padding);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,255,102,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0 40px;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 340px;
  scroll-snap-align: start;
  background: linear-gradient(160deg, rgba(0,67,70,0.35) 0%, rgba(0,42,44,0.5) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(0,255,102,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.15;
  font-family: serif;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  direction: ltr;
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-deep);
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.testimonial-author-role {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* Testimonial Navigation Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--transition);
}

.testimonials-dots .dot.active {
  background: var(--accent);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ══════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════ */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,255,102,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(0,255,102,0.06) 0%, transparent 50%);
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--primary-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
}

.footer-brand-logo img {
  height: 280px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  margin: -100px -30px;
  filter: drop-shadow(0 2px 12px rgba(0,255,102,0.2));
}

.footer-brand p {
  font-size: 0.93rem;
  color: var(--gray-400);
  line-height: 1.8;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--gray-400);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary-deep);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--accent-glow);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.93rem;
  color: var(--gray-400);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--accent);
  transform: translateX(-4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
  margin-top: 4px;
}

.footer-contact-item span {
  font-size: 0.93rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray-600);
}

.footer-bottom p span {
  color: var(--accent);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

  .services-grid .service-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    justify-self: center;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(0, 42, 44, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(0,255,102,0.1);
    gap: 28px;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-hamburger {
    display: flex;
  }

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

  .stat-item:nth-child(odd)::after {
    display: none;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

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

  .services-grid .service-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 85%;
    min-width: 280px;
  }

  .hero-fleet {
    gap: 24px;
  }

  .hero-fleet .fleet-vehicle img {
    height: 70px;
  }

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

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

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }

  .hero-fleet {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
