/* ============================================================
   dash-shared.css  —  Dash EV Design System
   Shared styles for all inner pages
   ============================================================ */

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

:root {
  --navy:      #112544;
  --navy-2:    #1a3a5c;
  --green:     #3a7d44;
  --green-l:   #5ad172;
  --green-bg:  #f0faf2;
  --white:     #ffffff;
  --off:       #f7f9fc;
  --off2:      #eef2f7;
  --text:      #112544;
  --muted:     #5a6a80;
  --border:    #dde5ee;
  --shadow:    0 4px 24px rgba(17,37,68,0.10);
  --shadow-lg: 0 16px 48px rgba(17,37,68,0.14);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', sans-serif; }
a { text-decoration: none; color: inherit; }
::selection { background: var(--green-l); color: #fff; }

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; background: #fff; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s, visibility .5s;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pre-ring {
  width: 44px; height: 44px;
  border: 3px solid var(--off2);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── NAVBAR ── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
#header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(17,37,68,0.08);
}
.nav-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { width: 148px; height: auto; display: block; }
.nav-list {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-list > li > a {
  display: block; padding: 8px 14px;
  font-size: 14px; font-weight: 500; color: var(--navy);
  border-radius: 8px; transition: all .25s;
}
.nav-list > li > a:hover,
.nav-list > li.active > a { color: var(--green); background: var(--green-bg); }

/* dropdown */
.nav-list li { position: relative; }
.nav-drop {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  list-style: none;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all .28s ease;
  box-shadow: var(--shadow-lg);
}
.nav-list li:hover .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 9px;
  font-size: 13.5px; color: var(--muted);
  transition: all .22s;
}
.nav-drop li a i { color: var(--green); width: 16px; }
.nav-drop li a:hover { background: var(--green-bg); color: var(--navy); }

.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--green) !important; color: #fff !important; }

.nav-hamburger {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: 8px; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--navy); font-size: 17px; cursor: pointer;
}

@media(max-width:991px) {
  .nav-hamburger { display: flex; }
  .nav-list {
    display: none; flex-direction: column; gap: 2px;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-top: 1px solid var(--border);
    padding: 16px; box-shadow: var(--shadow-lg);
  }
  .nav-list.open { display: flex; }
  .nav-list > li { width: 100%; }
  .nav-list > li > a { padding: 11px 14px; }
  .nav-drop { position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: var(--off);
    margin-top: 4px; border-radius: 10px; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff;
  font-size: 14px; font-weight: 700; padding: 14px 28px;
  border-radius: 50px; transition: all .3s;
  box-shadow: 0 4px 20px rgba(17,37,68,.25);
}
.btn-primary:hover { background: var(--green); color: #fff; box-shadow: 0 6px 28px rgba(58,125,68,.35); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  font-size: 14px; font-weight: 600; padding: 13px 26px;
  border: 1.5px solid var(--border); border-radius: 50px;
  transition: all .3s;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); background: var(--green-bg); }

.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-l); color: var(--navy);
  font-size: 14px; font-weight: 700; padding: 15px 32px;
  border-radius: 50px; transition: all .3s;
  box-shadow: 0 4px 24px rgba(90,209,114,.35);
  position: relative;
}
.btn-cta:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

/* ── SECTION COMMONS ── */
.sec-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.sec-bar {
  width: 40px; height: 3px; background: var(--green);
  border-radius: 3px; margin-bottom: 16px;
}
.sec-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; color: var(--navy); line-height: 1.15; margin-bottom: 14px;
}
.sec-p { font-size: 1rem; color: var(--muted); line-height: 1.75; }

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: linear-gradient(135deg, #112544 0%, #1a3a5c 50%, #0d3020 100%);
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(90,209,114,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; color: #fff; margin-bottom: 12px;
}
.page-hero p { font-size: 14px; color: rgba(255,255,255,0.6); }
.page-hero p a { color: rgba(255,255,255,0.6); }
.page-hero p a:hover { color: var(--green-l); }
.page-hero p i { font-size: 9px; margin: 0 8px; }

/* ── CTA BOX ── */
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 50%, #0d3020 100%);
  border-radius: 28px; padding: 72px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,209,114,.15) 0%, transparent 70%);
}
.cta-box h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; font-weight: 800; margin-bottom: 16px; position: relative; }
.cta-box p  { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 520px; margin: 0 auto 32px; line-height: 1.75; position: relative; }
@media(max-width:576px) { .cta-box { padding: 48px 24px; } }

/* ── GLASS CARD ── */
.glass-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all .35s;
  height: 100%;
}
.glass-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(58,125,68,.2);
}

/* ── SERVICE CARDS ── */
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 34px 26px;
  transition: all .35s; height: 100%;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-l));
  transform: scaleX(0); transition: transform .35s; transform-origin: left;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(58,125,68,.2); }
.svc-ico {
  width: 54px; height: 54px; border-radius: 15px;
  background: var(--green-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
  transition: all .3s;
}
.svc-card:hover .svc-ico { background: var(--green); color: #fff; transform: rotate(-8deg) scale(1.1); }
.svc-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.svc-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── FLEET CARDS ── */
.fleet-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 22px; overflow: hidden;
  transition: all .4s cubic-bezier(.23,1,.32,1);
  height: 100%;
}
.fleet-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-7px); border-color: rgba(58,125,68,.25); }
.fleet-img {
  background: linear-gradient(135deg, var(--off) 0%, var(--green-bg) 100%);
  padding: 28px 20px 16px; text-align: center;
  position: relative;
}
.fleet-img img {
  width: 100%; max-height: 240px; object-fit: contain;
  transition: transform .5s ease;
  filter: drop-shadow(0 8px 24px rgba(58,125,68,.15));
}
.fleet-card:hover .fleet-img img { transform: scale(1.07) translateY(-4px); }
.fleet-img-placeholder {
  width: 100%; height: 240px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--off) 0%, var(--green-bg) 100%);
}
.fleet-img-placeholder i { font-size: 72px; color: var(--green); opacity: .4; }
.soon-tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--navy); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 50px;
}
.avail-tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 50px;
}
.fleet-body { padding: 22px 26px 30px; }
.fleet-body h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.fleet-body p  { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.fleet-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 18px;
}
.fspec {
  background: var(--off); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px;
  font-size: 12px; font-weight: 600; color: var(--muted);
}
.fspec i { color: var(--green); margin-right: 5px; }
.fspec-label { display: block; font-size: 10px; font-weight: 500; color: var(--muted); opacity: .7; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .5px; }
.fspec-val { font-size: 13px; font-weight: 700; color: var(--navy); }
.btn-fleet {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-bg); color: var(--green);
  border: 1px solid rgba(58,125,68,.25); border-radius: 50px;
  font-size: 13px; font-weight: 600; padding: 9px 18px;
  transition: all .3s;
}
.btn-fleet:hover { background: var(--green); color: #fff; }

/* ── FOOTER ── */
#footer { padding: 72px 0 28px; background: var(--navy); }
.footer-logo img { width: 140px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 270px; margin-bottom: 20px; }
.f-socials { display: flex; gap: 10px; }
.f-soc {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 14px; transition: all .3s;
}
.f-soc:hover { background: var(--green); border-color: var(--green); color: #fff; }
.f-head { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.f-links { list-style: none; padding: 0; }
.f-links li { margin-bottom: 9px; }
.f-links a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: all .25s; display: inline-flex; align-items: center; gap: 8px; }
.f-links a:hover { color: var(--green-l); }
.f-links a i { font-size: 12px; color: var(--green-l); }
.f-bottom {
  margin-top: 56px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.f-bottom p { font-size: 13px; color: rgba(255,255,255,.3); margin: 0; }

/* ── WHATSAPP FLOAT ── */
.wa-btn {
  position: fixed; bottom: 26px; right: 26px;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; box-shadow: 0 4px 18px rgba(37,211,102,.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: all .3s;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-btn img { width: 28px; height: 28px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.up { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ── NUMBERED STEP CARDS ── */
.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 24px;
  transition: all .35s; height: 100%; text-align: center;
  position: relative;
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(58,125,68,.2); }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem; font-weight: 900;
  color: var(--green-l); line-height: 1;
  margin-bottom: 14px; opacity: .5;
}
.step-ico {
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--green-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 18px;
  transition: all .3s;
}
.step-card:hover .step-ico { background: var(--green); color: #fff; }
.step-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── CHECKLIST ── */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-size: 14.5px; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--green); font-size: 15px; margin-top: 2px; flex-shrink: 0; }

/* ── PRICING CARDS ── */
.price-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 24px; padding: 40px 32px;
  text-align: center; transition: all .4s;
  position: relative; overflow: hidden; height: 100%;
}
.price-card.featured { border-color: var(--green); }
.price-card.featured::before {
  content: 'Popular';
  position: absolute; top: 16px; right: -20px;
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 28px;
  transform: rotate(45deg);
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(58,125,68,.3); }
.price-label { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 6px;
}
.price-amount sup { font-size: 1.2rem; vertical-align: super; }
.price-sub { font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.price-vehicle { font-size: 13px; font-weight: 600; color: var(--green); background: var(--green-bg); border-radius: 50px; padding: 4px 14px; display: inline-block; margin-bottom: 20px; }

/* ── INFO CARDS (contact) ── */
.info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; padding: 26px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: all .3s;
}
.info-card:hover { box-shadow: var(--shadow); border-color: rgba(58,125,68,.2); }
.info-ico {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--green-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.info-card h5 { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: 15px; font-weight: 500; color: var(--navy); margin: 0; }
.info-card a:hover { color: var(--green); }

/* ── STATION BADGES ── */
.station-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 20px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow); transition: all .3s;
  margin: 6px;
}
.station-badge i { color: var(--green); }
.station-badge:hover { border-color: var(--green); background: var(--green-bg); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ── WHY CARD (navy bg) ── */
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 34px 28px;
  text-align: center; transition: all .35s; height: 100%;
}
.why-card:hover { background: rgba(90,209,114,.08); border-color: rgba(90,209,114,.2); transform: translateY(-4px); }
.why-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem; font-weight: 900; color: var(--green-l);
  line-height: 1; margin-bottom: 14px; opacity: .6;
}
.why-card h4 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.65; margin: 0; }

/* ── FEAT ITEMS ── */
.feat {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--off);
  border: 1px solid var(--border); border-radius: 14px;
  transition: all .3s;
}
.feat:hover { border-color: rgba(58,125,68,.3); background: var(--green-bg); }
.feat-ico {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--green-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.feat h5 { font-size: 13.5px; font-weight: 700; margin-bottom: 2px; color: var(--navy); }
.feat p  { font-size: 12px; color: var(--muted); margin: 0; }

/* ── USES LIST ── */
.uses-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: var(--white);
  border: 1px solid var(--border); border-radius: 14px;
  font-size: 14.5px; font-weight: 500; color: var(--text);
  transition: all .3s;
}
.uses-item:hover { border-color: rgba(58,125,68,.3); background: var(--green-bg); transform: translateX(4px); }
.uses-item i { width: 36px; height: 36px; border-radius: 10px; background: var(--green-bg); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }

/* ── FORM STYLES ── */
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; display: block; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text);
  background: var(--white); transition: all .25s;
  outline: none;
}
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(58,125,68,.1); }
.form-control::placeholder { color: var(--muted); }
textarea.form-control { resize: vertical; min-height: 130px; }
