:root {
    --gold: #cfab1d;
    --gold-light: #faca0b;
    --dark: #030345;
    --dark-2: #12121A;
    --dark-3: #07077eeb;
    --dark-4: #252535;
    --text-muted-custom: #8888AA;
    --white: #F5F5FA;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, .display-heading {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}

/* ── NAV ── */
.navbar {
    background: #07077eeb;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 1rem 0;
}
.navbar-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  color: var(--gold) !important;
}
.navbar-brand span { color: var(--white); }
.nav-link {
  color: rgba(245,245,250,0.75) !important;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem !important;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--gold) !important; }
.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  border-radius: 2px;
  font-weight: 700;
}
.nav-cta:hover { background: var(--gold-light); color: var(--dark) !important; }
.navbar-toggler { border-color: rgba(201,168,76,0.4); }
.navbar-toggler-icon { filter: invert(1); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
    /*linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);*/
    background-size: 60px 60px;
    animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -300px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  border: 1px solid rgba(201,168,76,0.3);
  display: inline-block;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 0.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .accent { color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted-custom);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-buttons { animation: fadeUp 0.9s 0.3s ease both; }
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: 1px solid rgba(201,168,76,0.5);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline-gold:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.hero-stats {
  animation: fadeUp 1s 0.4s ease both;
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted-custom);
  margin-top: 0.2rem;
}
.hero-visual {
  position: relative;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-card-float {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 1.5rem;
  animation: float 4s ease-in-out infinite;
}
.hero-card-float.delay { animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.route-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 100px;
    padding: 0.4rem 0.9rem;
    font-size: 0.78rem;
    color: var(--text-muted-custom);
    margin: 0.3rem;
}
.route-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.live-badge {
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.3);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.live-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

@keyframes fadeUp {
  from { opacity:0; transform: translateY(28px); }
  to { opacity:1; transform: translateY(0); }
}

/* ── SECTION GENERIC ── */
section { padding: 100px 0; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  margin-bottom: 1rem;
}
.section-title .accent { color: var(--gold); }
.divider-gold {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}


/* VALUES STRIP */
#values {
  padding: 40px 0;
  background: var(--dark-3);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.value-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
}
.value-pill i { color: var(--gold); font-size: 1.1rem; }
.value-pill span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--light);
}
.value-sep {
  width: 1px;
  height: 30px;
  background: rgba(201,168,76,0.2);
}

/* ── SERVICES ── */
#services { background: var(--dark); }
.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px;
  padding: 2rem;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.service-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--text-muted-custom);
  font-size: 0.9rem;
  line-height: 1.7;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--text-muted-custom);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-list li i { color: var(--gold); font-size: 0.75rem; }

.fleet-icon::before { 
    color: var(--gold); 
}

/* ── WHY US ── */
#why { background: var(--dark); }
.why-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  min-width: 52px;
  transition: color 0.3s;
}
.why-item:hover .why-num { color: var(--gold); }
.why-item h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.why-item p {
  color: var(--text-muted-custom);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}
.tech-badge {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 3px;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
}
.tech-badge:hover { border-color: rgba(201,168,76,0.4); }
.tech-badge i { font-size: 1.5rem; color: var(--gold); }
.tech-badge span { font-size: 0.88rem; color: var(--white); font-weight: 500; }

/* ── VALUES ── */
#values { background: var(--dark-2); }
.value-chip {
    background: var(--dark-3);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 100px;
    padding: 0.6rem 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin: 0.4rem;
    transition: background 0.2s, border-color 0.2s;
}
.value-chip:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.5); }
.value-chip i { color: var(--gold); }

/* ── ABOUT ── */
#about { background: var(--dark-2); }
.about-card {
    background: var(--dark-3);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
}
.about-card:hover {
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-4px);
}
.about-icon { 
    font-size: 3rem; 
    color: var(--gold); 
    margin-bottom: 1.25rem; 
    display: block; 
}

.about-card h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.about-card p { color: var(--text-muted-custom); font-size: 0.88rem; margin: 0; }

/* ── COVERAGE TICKER ── */
.ticker-wrap {
  background: var(--dark-4);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 0.9rem 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 3rem;
  animation: ticker 18s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted-custom);
  white-space: nowrap;
}
.ticker-item i { color: var(--gold); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* MARKET */
#market { background: var(--dark-3); }
.market-tag {
  display: inline-block;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgb(207 171 29);
  color: var(--text-muted-custom);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin: 0.3rem;
}

/* CONTACT */
#contact { background: var(--dark); }
.contact-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  padding: 2.5rem;
}
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.75rem; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--gold); font-size: 1.1rem; }
.contact-item .label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.contact-item .val { color: var(--text); font-size: 0.92rem; line-height: 1.5; }
.contact-item a { color: var(--gold-light); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.promise-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 2.5rem;
}
.promise-box blockquote {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

/* ── CONTACT ── */
#contact { background: var(--dark-2); }
.contact-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 2rem;
  height: 100%;
}
.contact-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; }
.contact-card h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.contact-card p, .contact-card a {
  color: var(--text-muted-custom);
  font-size: 0.88rem;
  line-height: 1.7;
  text-decoration: none;
}
.contact-card a:hover { color: var(--gold); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-3) 0%, rgba(201,168,76,0.08) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.06), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 1rem;
}
.cta-banner p {
  color: var(--text-muted-custom);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 3rem 0 2rem;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-brand span { color: var(--white); }
footer p { color: var(--text-muted-custom); font-size: 0.85rem; }
.footer-link {
  color: var(--text-muted-custom);
  text-decoration: none;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  margin-top: 2rem;
}
.tagline-footer {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-stats { gap: 2rem; }
  section { padding: 70px 0; }
}
    