/* ==========================================================================
   DESIGN SYSTEM — 2-COLOR GREEN PALETTE
   Primary:   #3A6B4F  (Dark Forest Green)
   Secondary: #E8F2EC  (Soft Sage Green)
   ========================================================================== */

:root {
  /* 2-Color Palette */
  --green-dark:         #3A6B4F;   /* Primary — dark forest green */
  --green-dark-hover:   #2D5540;   /* Primary hover state */
  --green-dark-deep:    #1E3D2C;   /* Darkest — for text on dark bg */
  --green-mid:          #5A9474;   /* Mid-tone green for accents */
  --green-sage:         #E8F2EC;   /* Light sage — alternate sections */
  --green-sage-deep:    #D2E8DA;   /* Slightly deeper sage for cards */
  --green-sage-border:  #B8D8C4;   /* Border color */

  /* Content */
  --bg-main:            #FFFFFF;   /* White — primary content background */
  --bg-alt:             #E8F2EC;   /* Sage — alternate sections */
  --bg-highlight:       #D2E8DA;   /* Deeper sage — highlights */
  --card-bg:            #FFFFFF;

  /* Text */
  --text-primary:       #1A3326;   /* Very dark green-tinted text */
  --text-secondary:     #4E7A62;   /* Medium green for secondary text */
  --text-on-dark:       #FFFFFF;   /* White text on dark green */
  --text-muted:         #7FA98B;   /* Muted green */

  /* Borders */
  --border:             #C5DDD0;
  --border-light:       #DFF0E6;

  /* Shadows (green-tinted) */
  --shadow-sm:    0 1px 3px rgba(58, 107, 79, 0.06);
  --shadow-md:    0 4px 12px rgba(58, 107, 79, 0.08);
  --shadow-lg:    0 12px 28px rgba(58, 107, 79, 0.10);
  --shadow-green: 0 16px 40px rgba(58, 107, 79, 0.18);

  /* Typography */
  --font-main: 'Outfit', sans-serif;

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

/* ==========================================================================
   GLOBAL RESET
   ========================================================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--font-main);
  color: var(--text-primary);
  background-color: var(--bg-main);
  scroll-behavior: auto !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
  position: relative;
}

img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
button, input, select, textarea {
  font-family: inherit; font-size: inherit; color: inherit;
  border: none; background: none; outline: none;
}
button { cursor: pointer; }

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.highlight { color: var(--green-dark); }

/* Hero highlight override — white on dark canvas background */
.hero-slide .highlight { color: #FFFFFF; }

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-dark);
  background-color: var(--green-sage-deep);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 400;
}

.title-underline {
  width: 48px;
  height: 3px;
  background-color: var(--green-dark);
  border-radius: 2px;
  margin-bottom: 24px;
}

.title-underline.center {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition-normal);
}

.btn-primary {
  background-color: var(--green-dark);
  color: var(--text-on-dark);
  box-shadow: 0 4px 14px rgba(58, 107, 79, 0.30);
}

.btn-primary:hover {
  background-color: var(--green-dark-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(58, 107, 79, 0.40);
}

.btn-secondary {
  background-color: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}

.btn-secondary:hover {
  background-color: var(--green-sage);
  transform: translateY(-2px);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */

.preloader-overlay {
  display: none !important;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: var(--green-dark-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  color: #FFFFFF;
  width: 80%;
  max-width: 400px;
}

.preloader-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.preloader-logo-svg {
  width: 60px;
  height: 60px;
  animation: pulseLogo 2s infinite ease-in-out;
  color: var(--green-sage);
}

.preloader-brand {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}

.progress-bar-container {
  width: 100%;
  height: 3px;
  background-color: rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background-color: var(--green-sage);
  transition: width 0.1s ease-out;
}

.progress-text {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.main-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 20px rgba(58, 107, 79, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  transition: height var(--transition-normal);
}

.main-header.scrolled .header-container { height: 68px; }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.logo-e-symbol {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  transition: transform var(--transition-normal);
}

.logo:hover .logo-e-symbol { transform: scale(1.08); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background-color: var(--green-dark);
  transition: width var(--transition-normal);
}

.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }

.nav-btn {
  background-color: var(--green-dark) !important;
  color: #FFFFFF !important;
  padding: 10px 22px !important;
  border-radius: 7px;
  box-shadow: 0 4px 12px rgba(58,107,79,0.25);
}

.nav-btn::after { display: none; }

.nav-btn:hover {
  background-color: var(--green-dark-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(58,107,79,0.35);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 18px;
}

.mobile-toggle .bar {
  height: 2px; width: 100%;
  background-color: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* ==========================================================================
   ANIMATED HERO SECTION (Logistics Animation)
   ========================================================================== */

.animated-hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, #294D39 0%, #1E3D2C 65%, #14281D 100%);
  padding: 130px 0 80px 0;
  overflow: hidden;
}

.hero-animation-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 250px;
  margin-bottom: 20px;
}

.truck-wrapper {
  position: absolute;
  bottom: 0;
  left: -600px; /* start off-screen to the left */
  width: 600px;
  height: 250px;
  animation: driveTruckIn 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-truck-svg {
  width: 100%;
  height: 100%;
}

.wheel-spin {
  transform-origin: center;
  transform-box: fill-box;
  animation: spinWheel 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes driveTruckIn {
  0% { left: -600px; }
  100% { left: 50%; transform: translateX(-50%); }
}

@keyframes spinWheel {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(1080deg); } /* 3 full rotations */
}

.hero-content.tagline-container {
  max-width: 820px;
  margin: 0 auto;
  color: #FFFFFF;
}

.hero-tagline {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-btn-outline {
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: #FFFFFF !important;
}

.hero-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: #FFFFFF !important;
}

/* Immediate & Fast Fade-in Animation for hero elements on site load */
.tagline-element {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpText 0.6s ease-out forwards;
}

.tagline-element.delay-1 { animation-delay: 0.1s; }
.tagline-element.delay-2 { animation-delay: 0.2s; }
.tagline-element.delay-3 { animation-delay: 0.3s; }

@keyframes fadeInUpText {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   SECTION 1 — WELCOME & STATS
   ========================================================================== */

.welcome-section {
  background-color: var(--bg-main);
  z-index: 10;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.welcome-content .lead-text {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.welcome-content .body-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.action-row {
  display: flex;
  gap: 16px;
}

/* Stats Panel */
.stats-panel { position: relative; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background-color: var(--green-sage);
  border: 1px solid var(--green-sage-border);
  border-radius: 16px;
  padding: 28px 22px;
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: var(--shadow-green);
}

.stat-value {
  font-size: 30px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  transition: color var(--transition-normal);
}

.stat-card:hover .stat-value { color: #FFFFFF; }

.stat-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color var(--transition-normal);
}

.stat-card:hover .stat-label { color: rgba(255,255,255,0.9); }

.stat-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  transition: color var(--transition-normal);
}

.stat-card:hover .stat-desc { color: rgba(255,255,255,0.7); }

/* ==========================================================================
   SECTION - ORGANIZATIONS WE WORKED WITH
   ========================================================================== */

.organizations-section {
  background: linear-gradient(135deg, #1A3626 0%, #0F2117 100%);
  color: #fff;
}

.organizations-section .section-title,
.organizations-section .section-tag {
  color: #fff;
}

.organizations-section .title-underline {
  background-color: #38BDF8;
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.org-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.org-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.org-card.active {
  background: #38BDF8;
  border-color: #38BDF8;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
  transform: translateY(-5px);
}

.org-card.active h3,
.org-card.active p,
.org-card.active .org-icon {
  color: #0F172A;
}

.org-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #38BDF8;
  transition: color 0.3s;
}

.org-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
  transition: color 0.3s;
}

.org-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  transition: color 0.3s;
}

.org-content-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, padding 0.6s ease;
  opacity: 0;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.org-content-panel.open {
  max-height: 300px;
  opacity: 1;
}

.org-content-inner {
  padding: 30px;
  text-align: center;
}

.org-content-inner p {
  font-size: 18px;
  font-weight: 500;
  color: #E0F2FE;
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 2 — WHY CHOOSE US
   ========================================================================== */

.why-section { background-color: var(--bg-alt); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.advantage-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 34px 26px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.advantage-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-sage-border);
  box-shadow: var(--shadow-green);
}

.card-icon-wrapper {
  width: 52px; height: 52px;
  background-color: var(--green-sage);
  color: var(--green-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition-normal);
}

.advantage-card:hover .card-icon-wrapper {
  background-color: var(--green-dark);
  color: #FFFFFF;
  transform: scale(1.08);
}

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

.advantage-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.advantage-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  flex-grow: 1;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.card-list li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.card-list li::before {
  content: '•';
  color: var(--green-dark);
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 18px;
}

/* ==========================================================================
   SECTION 3 — OUR FLEET
   ========================================================================== */

.fleet-section { background-color: var(--bg-main); }

.new-fleet-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.vehicle-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vehicle-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-sage-border);
  box-shadow: var(--shadow-green);
}

.vehicle-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

.v-specs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v-spec-item {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.v-icon {
  margin-right: 10px;
  font-size: 16px;
}

.v-label {
  color: var(--text-secondary);
  margin-right: 6px;
}

.v-val {
  color: var(--text-primary);
  font-weight: 600;
}

.fleet-anim-panel {
  background-color: var(--green-sage);
  border: 1px solid var(--green-sage-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.truck-story-animation {
  width: 100%;
  max-width: 600px;
}

.truck-story-animation svg {
  width: 100%;
  height: auto;
}

/* Animations */
@keyframes routeDash {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}
.route-line-anim {
  animation: routeDash 2s linear infinite;
}

@keyframes drawRoute {
  0% { stroke-dasharray: 0, 1000; }
  100% { stroke-dasharray: 1000, 1000; }
}
.route-line-active {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: drawRoute 6s ease-in-out infinite;
}

@keyframes driveTruck {
  0% { transform: translate(150px, 200px); opacity: 0; }
  5%, 30% { transform: translate(150px, 200px); opacity: 1; }
  70%, 85% { transform: translate(650px, 200px); opacity: 1; }
  90%, 100% { transform: translate(650px, 200px); opacity: 0; }
}
.anim-truck-group {
  animation: driveTruck 6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes bounceTruck {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.anim-truck-body {
  animation: bounceTruck 0.3s ease-in-out infinite;
}

@keyframes dropPackage1 {
  0%, 10% { transform: translateY(-100px); opacity: 0; }
  15%, 90% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}
@keyframes dropPackage2 {
  0%, 15% { transform: translateY(-100px); opacity: 0; }
  20%, 90% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}
@keyframes dropPackage3 {
  0%, 20% { transform: translateY(-100px); opacity: 0; }
  25%, 90% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-100px); opacity: 0; }
}
.anim-box-1 { animation: dropPackage1 6s infinite; }
.anim-box-2 { animation: dropPackage2 6s infinite; }
.anim-box-3 { animation: dropPackage3 6s infinite; }

@keyframes pulseStart {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(2); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}
.anim-pulse, .anim-pulse-end {
  animation: pulseStart 2s infinite;
}

@keyframes appearCheck {
  0%, 72% { transform: scale(0); opacity: 0; }
  78% { transform: scale(1.2); opacity: 1; }
  85%, 95% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0); opacity: 0; }
}
.anim-success {
  animation: appearCheck 6s infinite;
}

@media (max-width: 992px) {
  .new-fleet-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .vehicle-cards-wrapper {
    grid-template-columns: 1fr;
  }
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.fleet-showcase {
  background-color: var(--green-sage);
  border: 1px solid var(--green-sage-border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.truck-graphic {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cabin-wrap .badge {
  display: inline-block;
  background-color: var(--green-dark);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.cabin-wrap h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.cabin-wrap p {
  font-size: 14px;
  color: var(--text-secondary);
}

.chassis-visual {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.truck-svg { width: 100%; max-width: 500px; height: auto; }

/* Spec Table */
.fleet-details h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}

.specs-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.specs-table td:first-child {
  color: var(--text-secondary);
  font-weight: 400;
}

.specs-table .spec-value {
  color: var(--text-primary);
  font-weight: 600;
  text-align: right;
}

.specs-table tr:hover td { color: var(--green-dark); }

/* Deck toggle */
.deck-selector-section h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.deck-btn-group {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.deck-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 8px;
  border: 2px solid var(--border);
  background-color: var(--bg-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.deck-btn .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background-color: var(--text-muted);
  transition: all var(--transition-normal);
}

.deck-btn.active {
  border-color: var(--green-dark);
  color: var(--green-dark);
  background-color: var(--green-sage);
}

.deck-btn.active .dot {
  background-color: var(--green-dark);
  box-shadow: 0 0 8px rgba(58,107,79,0.5);
}

.deck-info-box {
  background-color: var(--green-sage);
  border-radius: 8px;
  padding: 15px;
  font-size: 13px;
  color: var(--text-secondary);
  border-left: 3px solid var(--green-dark);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION 4 — SERVICES
   ========================================================================== */

.services-section { background-color: var(--bg-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 38px 28px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--green-sage-border);
  box-shadow: var(--shadow-green);
}

.service-icon-wrapper {
  width: 50px; height: 50px;
  background-color: var(--green-sage);
  color: var(--green-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--green-dark);
  color: #FFFFFF;
}

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

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 22px;
  flex-grow: 1;
}

.service-points {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.service-points li {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-points li::before {
  content: '✓';
  color: var(--green-dark);
  font-weight: 700;
}

/* ==========================================================================
   SECTION 5 — PROCESS TIMELINE
   ========================================================================== */

.process-section { background-color: var(--bg-main); overflow: hidden; }

.timeline-wrapper {
  position: relative;
  padding: 40px 0;
  margin-top: 20px;
}

.timeline-progress-line {
  position: absolute;
  top: 50px; left: 0;
  width: 100%; height: 3px;
  background-color: var(--border);
  z-index: 1;
}

.timeline-indicator-bar {
  width: 100%; height: 100%;
  background-color: var(--green-dark);
  transition: width 0.1s ease-out;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.timeline-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-badge {
  width: 36px; height: 36px;
  border-radius: 50%;
  background-color: var(--bg-main);
  border: 3px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.timeline-step:hover .step-badge,
.timeline-step.active .step-badge {
  border-color: var(--green-dark);
  background-color: var(--green-dark);
  color: #FFFFFF;
  transform: scale(1.15);
  box-shadow: 0 0 14px rgba(58,107,79,0.35);
}

.timeline-step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  padding: 0 8px;
}

/* ==========================================================================
   SECTION 6 — CONTACT
   ========================================================================== */

.contact-section { background-color: var(--bg-alt); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-intro {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 38px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail-item {
  display: flex;
  gap: 18px;
  align-items: center;
}

.detail-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background-color: var(--green-dark);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

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

.detail-content { display: flex; flex-direction: column; }

.detail-content .label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.detail-content .value {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.detail-content a.value:hover { color: var(--green-dark); }

/* Form */
.form-container {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 42px;
  box-shadow: var(--shadow-lg);
}

.form-container h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-intro {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 26px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  background-color: var(--green-sage);
  transition: all var(--transition-fast);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  background-color: var(--bg-main);
  box-shadow: 0 0 0 3px rgba(58,107,79,0.12);
}

.form-group textarea { resize: vertical; }

.submit-btn { width: 100%; justify-content: center; padding: 16px; }

.btn-arrow {
  width: 18px; height: 18px;
  transition: transform var(--transition-fast);
}

.submit-btn:hover .btn-arrow { transform: translateX(4px); }

/* Success alert */
.form-success-alert {
  display: none;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--green-sage);
  border: 1px solid var(--green-sage-border);
  border-radius: 12px;
  padding: 20px;
  color: var(--green-dark-deep);
  margin-top: 22px;
  animation: slideInDown 0.4s ease-out;
}

.form-success-alert.visible { display: flex; }

.success-icon {
  width: 24px; height: 24px;
  color: var(--green-dark);
  flex-shrink: 0;
}

.form-success-alert h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--green-dark-deep);
}

.form-success-alert p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
  background-color: var(--green-dark-deep);
  color: #FFFFFF;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-brand-col .logo { color: #FFFFFF; margin-bottom: 18px; }
.footer-brand-col .logo .logo-icon { color: var(--green-sage); }

.brand-pitch {
  font-size: 14px;
  color: rgba(232,242,236,0.55);
  line-height: 1.65;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-sage);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(232,242,236,0.55);
  transition: var(--transition-fast);
}

.footer-links a:hover { color: var(--green-sage); }

.footer-address {
  font-size: 14px;
  color: rgba(232,242,236,0.55);
  line-height: 1.65;
  margin-bottom: 14px;
}

.footer-hours {
  font-size: 13px;
  color: var(--green-sage);
  font-weight: 600;
}

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

.copyright, .developer {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

[data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ==========================================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
  .section { padding: 80px 0; }

  /* Hero */
  .hero-slide h1.slide-title { font-size: 48px; }
  .hero-slide h2.slide-title { font-size: 40px; }
  .slide-desc { font-size: 18px; }

  /* Layouts */
  .welcome-grid  { grid-template-columns: 1fr; gap: 50px; }
  .cards-grid    { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .fleet-grid    { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 50px; }

  /* Timeline */
  .timeline-grid { grid-template-columns: repeat(3, 1fr); gap: 30px 16px; }
  .timeline-progress-line { display: none; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: 1 / -1; }
}

/* ==========================================================================
   RESPONSIVE — MOBILE LANDSCAPE / LARGE PHONE (max-width: 768px)
   ========================================================================== */

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

  /* ── Header ────────────────────────────── */
  .header-container { height: 66px; }
  .main-header.scrolled .header-container { height: 60px; }
  .logo { font-size: 15px; }
  .logo-icon { width: 24px; height: 24px; }

  /* ── Mobile Nav Drawer ─────────────────── */
  .mobile-toggle {
    display: flex;
    z-index: 1100;
    padding: 8px;
    margin-right: -8px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: 78%; max-width: 300px;
    height: 100vh;
    background-color: var(--bg-main);
    box-shadow: -4px 0 40px rgba(58, 107, 79, 0.12);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    padding: 60px 36px;
    z-index: 1050;
    border-left: 1px solid var(--border-light);
  }

  .nav-menu.open {
    display: flex;
    right: 0;
  }

  /* Nav backdrop overlay */
  .nav-menu.open::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(30, 61, 44, 0.35);
    z-index: -1;
  }

  .nav-link {
    font-size: 20px;
    font-weight: 600;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
  }

  .nav-link:last-child { border-bottom: none; }

  /* Nav CTA button in drawer */
  .nav-btn {
    margin-top: 12px;
    width: 100%;
    text-align: center;
    padding: 14px 22px !important;
    border-radius: 8px;
    font-size: 16px !important;
  }

  /* Hamburger → X animation */
  .mobile-toggle.open .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .mobile-toggle.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .mobile-toggle.open .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* ── Hero ──────────────────────────────── */
  .hero-slide h1.slide-title {
    font-size: 38px;
    letter-spacing: -0.01em;
  }
  .hero-slide h2.slide-title { font-size: 32px; }
  .slide-subtitle { font-size: 11px; letter-spacing: 0.22em; }
  .slide-desc { font-size: 16px; max-width: 90%; }
  .scroll-indicator { margin-top: 36px; }

  /* ── Buttons ───────────────────────────── */
  .btn {
    padding: 15px 22px;
    font-size: 15px;
    min-height: 48px; /* Touch target */
  }

  /* ── Section Headers ───────────────────── */
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 15px; }
  .section-header { margin-bottom: 44px; }

  /* ── Welcome ───────────────────────────── */
  .welcome-content .lead-text { font-size: 17px; }
  .action-row { flex-direction: column; gap: 12px; }
  .action-row .btn { width: 100%; justify-content: center; }

  /* ── Stats ─────────────────────────────── */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-card { padding: 22px 18px; border-radius: 14px; }
  .stat-value { font-size: 26px; }
  .stat-label { font-size: 12px; }
  .stat-desc { font-size: 12px; }

  /* ── Cards grids ───────────────────────── */
  .cards-grid    { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Horizontal card layout on medium phones */
  .advantage-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 22px;
  }
  .card-icon-wrapper { flex-shrink: 0; margin-bottom: 0; }

  /* ── Fleet ─────────────────────────────── */
  .fleet-showcase { padding: 28px 22px; border-radius: 18px; }
  .deck-btn-group { flex-direction: column; gap: 8px; }
  .deck-btn { width: 100%; justify-content: flex-start; min-height: 48px; }

  /* ── Timeline ──────────────────────────── */
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
  }
  .timeline-step:last-child { border-bottom: none; }
  .step-badge { margin-bottom: 0; flex-shrink: 0; }
  .timeline-step h3 { font-size: 16px; margin-bottom: 4px; }
  .timeline-step p { padding: 0; font-size: 13px; }

  /* ── Contact Form ──────────────────────── */
  .form-container { padding: 28px 22px; border-radius: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px;
    min-height: 48px; /* Touch target */
    font-size: 16px; /* Prevent iOS zoom on focus */
  }
  .form-group select { font-size: 16px; }
  .submit-btn { min-height: 52px; font-size: 16px; }

  /* ── New Fleet Layout Mobile Fix ─────── */
  .new-fleet-layout {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .fleet-anim-panel {
    min-height: 250px;
    padding: 16px !important;
  }

  /* ── Animated Hero Mobile Fix ───────────── */
  .animated-hero-section {
    padding: 95px 16px 30px 16px !important;
    margin-bottom: 0 !important;
    min-height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-h1-seo {
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 8px !important;
  }
  .hero-brand-animated {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
  }
  .hero-tagline-sub {
    font-size: 15px !important;
    margin-bottom: 16px !important;
  }
  .hero-description-paragraph {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    padding: 0 4px !important;
    margin-bottom: 24px !important;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* ── Video Section Mobile ──────────────── */
  .video-animation-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 200px;
  }
  .brand-reveal {
    font-size: 22px !important;
  }
  .tagline-reveal {
    font-size: 13px !important;
  }

  /* ── Organizations Section Mobile Fix ───── */
  .org-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .org-card {
    padding: 16px 12px !important;
  }

  /* ── Advantages Cards Mobile Grid ───────── */
  .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .advantage-card {
    flex-direction: column !important;
    padding: 20px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* ── Universal Section & Container Edge Fix */
  section, .section, .main-header {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  .container {
    width: 92% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  /* ── Footer ────────────────────────────── */
  .main-footer { padding: 60px 0 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand-col { grid-column: auto; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   RESPONSIVE — SMALL PHONES (max-width: 480px)
   ========================================================================== */

@media (max-width: 480px) {
  /* ── Container Padding ────────────────── */
  .container {
    width: 92% !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  /* ── Organizations Section Small Phones ── */
  .org-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .org-card {
    padding: 14px 8px !important;
  }
  .org-card h3 {
    font-size: 15px !important;
  }

  /* ── Hero ──────────────────────────────── */
  .hero-brand-animated {
    font-size: 26px !important;
  }
  .hero-slide h1.slide-title {
    font-size: 26px;
    letter-spacing: 0;
    line-height: 1.2;
  }
  .hero-slide h2.slide-title {
    font-size: 22px;
    line-height: 1.25;
  }
  .slide-desc { font-size: 14px; }
  .slide-subtitle { font-size: 10px; letter-spacing: 0.14em; }

  /* ── Section titles ────────────────────── */
  .section-title { font-size: 22px !important; line-height: 1.3; }
  .section-tag { font-size: 10px; letter-spacing: 0.12em; }
  .section { padding: 40px 0 !important; }

  /* ── Stats — single column on tiny screens */
  .stats-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .stat-card { padding: 18px 14px !important; }
  .stat-value { font-size: 24px !important; }

  /* ── Cards — vertical layout ───────────── */
  .advantage-card { flex-direction: column !important; padding: 18px 14px !important; }
  .card-icon-wrapper { margin-bottom: 12px; }

  /* ── Vehicle Cards ─────────────────────── */
  .vehicle-card {
    padding: 18px 14px !important;
  }
  .vehicle-card h4 {
    font-size: 16px !important;
  }
  .v-specs {
    font-size: 13px !important;
  }

  /* ── Services Grid ─────────────────────── */
  .service-card {
    padding: 20px 16px !important;
  }

  /* ── Form ──────────────────────────────── */
  .form-container { padding: 20px 14px !important; border-radius: 16px; }
  .form-container h3 { font-size: 18px !important; }

  /* ── Footer ────────────────────────────── */
  .main-footer { padding: 40px 0 20px !important; }
  .footer-top { gap: 24px !important; }
  .footer-links-col h4,
  .footer-contact-col h4 { font-size: 12px; }

  /* ── Preloader text ────────────────────── */
  .preloader-brand { font-size: 15px; letter-spacing: 0.06em; }
}

/* ==========================================================================
   TOUCH & MOBILE UX IMPROVEMENTS
   ========================================================================== */

/* Smooth momentum scrolling on iOS */
@media (max-width: 768px) {
  html { -webkit-overflow-scrolling: touch; }

  /* Larger tap targets for all interactive elements */
  .nav-link,
  .deck-btn,
  .footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Remove hover effects on touch (they "stick" on mobile) */
  .advantage-card:hover,
  .service-card:hover,
  .stat-card:hover {
    transform: none;
  }

  /* Faster transitions on mobile for perceived performance */
  :root {
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;
  }

  /* Disable scroll reveal transforms on mobile (just fade in) */
  [data-reveal="left"]  { transform: translateY(20px); }
  [data-reveal="right"] { transform: translateY(20px); }
}

/* ==========================================================================
   VERY SMALL DEVICES (max-width: 360px)
   ========================================================================== */

@media (max-width: 360px) {
  .container { width: 94% !important; }
  .hero-brand-animated { font-size: 22px !important; }
  .hero-slide h1.slide-title { font-size: 22px; }
  .hero-slide h2.slide-title { font-size: 20px; }
  .section-title { font-size: 20px !important; }
  .stat-value { font-size: 22px !important; }
  .form-container { padding: 16px 12px !important; }
  .fleet-showcase { padding: 16px 12px !important; }
}

/* ==========================================================================
   VIDEO ANIMATION OVERLAY TEXT
   ========================================================================== */

.animation-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 100%;
  padding: 0 20px;
  pointer-events: none;
}

.brand-reveal {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  margin: 0 0 12px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(56, 189, 248, 0.75));
  opacity: 0;
  animation: revealText 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.tagline-reveal {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #e0f2fe;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: revealText 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes revealText {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(15px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Logo Image Styling */
.logo-img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
}

/* Redesigned Hero Section Typography & Animations */
.hero-h1-seo {
  font-size: clamp(32px, 5.2vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-brand-animated {
  font-size: clamp(24px, 3.8vw, 40px);
  font-weight: 700;
  color: #D2E8DA;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroBrandFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes heroBrandFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline-sub {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
}

.hero-description-paragraph {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 820px;
  margin: 0 auto 36px auto;
  text-align: center;
}

/* ==========================================================================
   ICON-ONLY HEADER LOGO (NO TEXT, TRANSPARENT BLEND)
   ========================================================================== */

.logo-icon-only {
  display: inline-flex;
  align-items: center;
  margin-left: 28px;
  text-decoration: none;
  border: none;
  background: transparent;
}

.logo-img-icon-only {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.15);
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  transition: transform var(--transition-normal);
}

.logo-icon-only:hover .logo-img-icon-only {
  transform: scale(1.05);
}

/* ==========================================================================
   PRELOADER ANIMATION (TRUCK INTO E-LOGO)
   ========================================================================== */

.preloader-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background-color: #1E3D2C; /* Website deep green background */
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.7s ease;
}

.preloader-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-stage {
  width: 90%;
  max-width: 700px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Speed lines animation behind truck */
.speed-line {
  stroke-dashoffset: 0;
  animation: moveSpeedLines 0.6s linear infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.15s; }
.line-3 { animation-delay: 0.3s; }

@keyframes moveSpeedLines {
  0% { stroke-dashoffset: 40; }
  100% { stroke-dashoffset: 0; }
}

/* E Logo stroke drawing */
.e-logo-stroke {
  animation: drawELogo 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes drawELogo {
  0% { stroke-dashoffset: 600; opacity: 0.2; }
  100% { stroke-dashoffset: 0; opacity: 1; filter: drop-shadow(0 0 15px rgba(90, 148, 116, 0.8)); }
}

/* Truck driving from left into center of E logo */
.preloader-truck-group {
  transform: translateX(-350px);
  animation: driveTruckIntoE 2.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

@keyframes driveTruckIntoE {
  0% {
    transform: translateX(-350px);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  80% {
    transform: translateX(330px); /* Drives smoothly into center of E logo */
    opacity: 1;
  }
  100% {
    transform: translateX(330px);
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(232, 242, 236, 0.9));
  }
}

.preloader-brand-text {
  opacity: 0;
  transform: translateY(10px);
  animation: revealPreloaderBrand 1s ease-out 2.2s forwards;
}

@keyframes revealPreloaderBrand {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

