:root {
  --orange: #F5A623;
  --orange-dark: #D4891A;
  --dark: #1A1A2E;
  --dark2: #16213E;
  --charcoal: #2C2C3A;
  --light-bg: #F8F8F8;
  --text-muted-custom: #666;
  --white: #fff;
  --section-pad: 80px 0;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Barlow', sans-serif;
  color: #222;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  background: rgba(20, 20, 35, 0.97);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.4); }
.navbar-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff !important;
  letter-spacing: 1px;
}
.brand-rk { color: var(--orange); }
.navbar-nav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 600;
  font-size: .92rem;
  padding: 6px 14px !important;
  letter-spacing: .3px;
  transition: color .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--orange) !important; }
.navbar-toggler { border-color: var(--orange); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F5A623' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-quote {
  background: var(--orange);
  color: #fff !important;
  font-weight: 700;
  border-radius: 4px;
  padding: 8px 22px;
  border: none;
  transition: background .2s, transform .15s;
  font-size: .9rem;
}
.btn-quote:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #0d0d1a;
}
/* video background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(.45) saturate(.85);
  pointer-events: none;
}
/* fallback poster shown until video loads */
.hero-video-bg[poster] { object-position: center; }
/* dark gradient overlay on top of video */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10,10,25,.75) 0%,
    rgba(10,10,25,.45) 60%,
    rgba(10,10,25,.2) 100%
  );
  z-index: 1;
}
/* orange bottom line */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  z-index: 3;
}
/* all hero content sits above video */
.hero-section .container { position: relative; z-index: 2; }

/* mute button */
.hero-mute-btn {
  position: absolute;
  bottom: 28px; right: 24px;
  z-index: 4;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  backdrop-filter: blur(4px);
}
.hero-mute-btn:hover { border-color: var(--orange); background: rgba(245,166,35,.25); }
.hero-eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin-bottom: 0;
}
.hero-title span { color: var(--orange); display: block; }
.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 480px;
  margin-top: 18px;
  line-height: 1.7;
}
.btn-primary-custom {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  padding: 13px 30px;
  border: none;
  font-size: 1rem;
  transition: background .2s, transform .15s;
  display: inline-block;
  text-decoration: none;
}
.btn-primary-custom:hover { background: var(--orange-dark); transform: translateY(-2px); color:#fff; }
.btn-outline-custom {
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  padding: 11px 28px;
  font-size: 1rem;
  background: transparent;
  transition: border-color .2s, background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline-custom:hover { border-color: var(--orange); background: rgba(245,166,35,.1); color:#fff; }
.stat-box {
  text-align: center;
  padding: 10px 20px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.stat-box:first-child { border-left: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,.65); font-size: .8rem; font-weight: 500; margin-top: 2px; }
.hero-stats-row {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 18px 0;
  margin-top: 50px;
}

/* ── TRUSTED BY ── */
.trusted-bar {
  background: #fff;
  border-bottom: 1px solid #E8E8E8;
  padding: 22px 0;
}
.trusted-label {
  font-weight: 700;
  font-size: .8rem;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.trusted-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #444;
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
}
.trusted-item i { font-size: 1.5rem; color: var(--orange); }
.trusted-highlight {
  font-weight: 700;
  color: var(--orange);
  font-size: .9rem;
  text-align: center;
}

/* ── SECTIONS ── */
section { padding: var(--section-pad); }
.section-eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
}
.section-title span { color: var(--orange); }
.section-desc { color: var(--text-muted-custom); font-size: .97rem; line-height: 1.75; }

/* ── MATERIALS ── */
.material-card {
  background: #fff;
  border: 1px solid #ECECEC;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  height: 100%;
}
.material-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); transform: translateY(-4px); }
.material-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}
.material-card-body { padding: 16px; }
.material-card h6 {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
}
.material-card p { color: var(--text-muted-custom); font-size: .83rem; margin-bottom: 12px; line-height: 1.6; }
.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.arrow-link:hover { background: var(--orange-dark); transform: scale(1.1); color:#fff; }
.btn-view {
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 700;
  border-radius: 4px;
  padding: 10px 24px;
  font-size: .9rem;
  background: transparent;
  transition: background .2s, color .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.btn-view:hover { background: var(--orange); color: #fff; }

/* ── FLEET ── */
.fleet-section { background: var(--dark); }
.fleet-section .section-title { color: #fff; }
.fleet-section .section-desc { color: rgba(255,255,255,.6); }
.fleet-section .section-eyebrow { color: var(--orange); }
.fleet-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
}
.fleet-badge i { color: var(--orange); }
.fleet-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.fleet-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform .4s;
}
.fleet-card:hover img { transform: scale(1.06); }
.fleet-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  padding: 14px 14px 12px;
}
.fleet-card-overlay .fleet-icon { color: var(--orange); font-size: 1.1rem; }
.fleet-card-overlay h6 { color: #fff; font-weight: 700; margin: 4px 0 0; font-size: .9rem; }
.fleet-card-overlay small { color: rgba(255,255,255,.65); font-size: .75rem; }

/* ── PROJECTS ── */
.projects-section { background: var(--light-bg); }
.project-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform .35s;
}
.project-img-wrap { overflow: hidden; border-radius: 6px; }
.project-img-wrap:hover img { transform: scale(1.06); }

/* ── WHY CHOOSE ── */
.why-section { background: var(--charcoal); }
.why-section .section-title { color: #fff; }
.why-section .section-eyebrow { color: var(--orange); }
.why-section .section-desc { color: rgba(255,255,255,.55); }
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  transition: background .25s, transform .25s;
  height: 100%;
}
.why-card:hover { background: rgba(245,166,35,.1); transform: translateY(-4px); }
.why-card .icon-wrap {
  width: 60px; height: 60px;
  background: rgba(245,166,35,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.why-card .icon-wrap i { font-size: 1.6rem; color: var(--orange); }
.why-card h6 { color: #fff; font-weight: 800; font-size: 1rem; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.65; margin: 0; }

/* ── TESTIMONIALS SLIDER ── */
.testi-slider-wrap {
  position: relative;
  overflow: hidden;
}
.testi-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.testi-slide {
  min-width: 100%;
  padding: 0 4px;
  box-sizing: border-box;
}
.testi-inner {
  display: flex;
  gap: 24px;
}
.testi-card {
  background: #fff;
  border: 1px solid #ECECEC;
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  flex: 1;
  min-width: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: box-shadow .25s, transform .25s;
}
.testi-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); transform: translateY(-3px); }
.testi-card .quote-icon {
  color: var(--orange);
  font-size: 3rem;
  line-height: .8;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testi-card p { color: #444; font-size: .95rem; line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testi-card .author { font-weight: 800; font-size: .95rem; color: #111; margin-bottom: 2px; }
.testi-card .role { color: var(--text-muted-custom); font-size: .8rem; }
.testi-card .testi-avatar {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1rem;
  flex-shrink: 0;
}
.stars { color: var(--orange); font-size: .9rem; margin-bottom: 12px; letter-spacing: 2px; }

/* Slider controls */
.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.testi-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid #DEDEDE;
  background: #fff;
  color: #333;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.testi-btn:hover { border-color: var(--orange); background: var(--orange); color: #fff; }
.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #DEDEDE;
  border: none;
  cursor: pointer;
  transition: all .25s;
  padding: 0;
}
.testi-dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #0F0F22 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,166,35,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
.cta-section h2 span { color: var(--orange); }
.cta-section p { color: rgba(255,255,255,.65); font-size: 1rem; }
.cta-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.cta-info-item i { color: var(--orange); font-size: 1.4rem; margin-top: 2px; flex-shrink: 0; }
.cta-info-item strong { color: #fff; display: block; font-size: .88rem; margin-bottom: 2px; }
.cta-info-item span { color: rgba(255,255,255,.6); font-size: .85rem; }

/* ── FOOTER ── */
.footer {
  background: #0F0F1E;
  padding: 60px 0 0;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}
.footer-tagline { color: rgba(255,255,255,.5); font-size: .82rem; margin: 8px 0 18px; line-height: 1.5; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  margin-right: 8px;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer h6 {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 18px;
  letter-spacing: .5px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  text-decoration: none;
  transition: color .2s;
}
.footer ul li a:hover { color: var(--orange); }
.footer-newsletter input {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  border-radius: 4px 0 0 4px;
  padding: 10px 14px;
  font-size: .85rem;
  width: 100%;
  flex: 1;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter input:focus { outline: none; border-color: var(--orange); }
.footer-newsletter button {
  background: var(--orange);
  border: none;
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background .2s;
}
.footer-newsletter button:hover { background: var(--orange-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0;
  margin-top: 50px;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .8rem; margin: 0; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.anim-fadeup  { animation: fadeUp   .7s ease both; }
.anim-fadein  { animation: fadeIn   .7s ease both; }
.anim-slright { animation: slideRight .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .35s; }
.delay-4 { animation-delay: .5s; }
.delay-5 { animation-delay: .65s; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible { transition-delay: .1s; }
.reveal-delay-2.visible { transition-delay: .2s; }
.reveal-delay-3.visible { transition-delay: .32s; }
.reveal-delay-4.visible { transition-delay: .44s; }
.reveal-delay-5.visible { transition-delay: .56s; }

/* counter pulse */
@keyframes counterPop {
  0%   { transform: scale(.7); opacity: 0; }
  70%  { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}
.counter-done { animation: counterPop .5s ease both; }

/* ── CONTACT MODAL ── */
.contact-modal .modal-content {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
#contactModal { z-index: 1060; }
.contact-modal .modal-header {
  background: var(--dark);
  color: #fff;
  border-bottom: 3px solid var(--orange);
  padding: 1.25rem 1.5rem;
}
.contact-modal .modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: .5px;
}
.contact-modal .modal-header .btn-close {
  filter: invert(1);
  opacity: .75;
}
.contact-modal .modal-body { padding: 1.5rem; }
.contact-modal .form-label {
  font-weight: 600;
  font-size: .88rem;
  color: var(--charcoal);
  margin-bottom: .35rem;
}
.contact-modal .form-control,
.contact-modal .form-select {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: .7rem .9rem;
  font-size: .92rem;
}
.contact-modal .form-control:focus,
.contact-modal .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 .2rem rgba(245,166,35,.15);
}
.contact-modal .modal-footer {
  border-top: 1px solid #eee;
  padding: 1rem 1.5rem 1.25rem;
}
.contact-modal .btn-submit-inquiry {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  padding: .65rem 1.5rem;
  transition: background .2s;
}
.contact-modal .btn-submit-inquiry:hover { background: var(--orange-dark); color: #fff; }
.contact-modal .btn-submit-inquiry:disabled { opacity: .7; cursor: not-allowed; }
.contact-success {
  text-align: center;
  padding: 2rem 1rem;
}
.contact-success i {
  font-size: 3.5rem;
  color: #28a745;
  margin-bottom: 1rem;
}
.contact-success h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .75rem;
}
.contact-success p { color: var(--text-muted-custom); margin-bottom: 0; }

/* ── MOBILE ── */
@media (max-width: 767px) {
  :root { --section-pad: 56px 0; }
  .hero-section { min-height: 100svh; padding-top: 40px; padding-bottom: 40px; }
  .hero-stats-row { margin-top: 36px; }
  .stat-box { padding: 8px 10px; }
  .stat-num { font-size: 1.5rem; }
  .trusted-bar .trusted-item { font-size: .7rem; }
  .fleet-card img { height: 155px; }
  .project-grid img { height: 150px; }
}
@media (max-width: 400px) {
  .hero-title { font-size: 2.5rem; }
}

/* ── INNER PAGES ── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.website-page-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 60%, #0d0d1a 100%);
  padding: 56px 0 48px;
  border-bottom: 4px solid var(--orange);
}

.website-page-eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.website-page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.05;
}

.website-page-subtitle {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  max-width: 620px;
  margin-top: 14px;
  margin-bottom: 0;
  line-height: 1.7;
}

