/* =========================================================
   HighwayKart — Design Tokens
   Theme: Indian commercial-vehicle yellow plate + asphalt road
   ========================================================= */
:root{
  --asphalt:      #14161A;
  --asphalt-2:    #1E222A;
  --asphalt-3:    #2A2F38;
  --highway-yellow: #FFC93D;
  --highway-yellow-dark: #E6AC1B;
  --route-blue:   #2957FF;
  --route-blue-dark: #1C3FCC;
  --signal-red:   #E4433B;
  --white:        #FFFFFF;
  --concrete:     #F5F6F8;
  --concrete-2:   #ECEEF1;
  --line:         #DADEE3;
  --ink:          #14161A;
  --ink-soft:     #4A505C;
  --whatsapp:     #25D366;

  --font-display: 'Rajdhani', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;
  --shadow-card: 0 4px 24px rgba(20,22,26,0.08);
  --shadow-lift: 0 12px 32px rgba(20,22,26,0.16);
  --header-h: 72px;
  --bottom-bar-h: 64px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  padding-bottom:var(--bottom-bar-h);
}
@media (min-width:900px){ body{padding-bottom:0;} }

img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4{font-family:var(--font-display);font-weight:700;line-height:1.08;margin:0;letter-spacing:0.2px;}
p{margin:0;}
button{font-family:inherit;cursor:pointer;}

:focus-visible{
  outline:3px solid var(--route-blue);
  outline-offset:2px;
}

.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 20px;
}
@media (min-width:900px){ .container{padding:0 32px;} }

.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--route-blue);
  font-weight:600;
}
.eyebrow.on-dark{color:var(--highway-yellow);}

h1{font-size:clamp(34px,7vw,60px);}
h2{font-size:clamp(26px,4.5vw,40px);}
h3{font-size:clamp(19px,3vw,23px);}

.section{padding:64px 0;}
@media (min-width:900px){ .section{padding:96px 0;} }
.section-head{max-width:640px;margin-bottom:36px;}
.section-head p{color:var(--ink-soft);margin-top:12px;font-size:16px;}
.bg-concrete{background:var(--concrete);}
.bg-asphalt{background:var(--asphalt);color:var(--white);}
.bg-asphalt .ink-soft{color:#B9BEC7;}
.ink-soft{color:var(--ink-soft);}

/* =========== Buttons =========== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 24px;
  border-radius:var(--radius-s);
  font-weight:700;
  font-size:15px;
  border:2px solid transparent;
  white-space:nowrap;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn svg{width:19px;height:19px;flex-shrink:0;}
.btn:hover{transform:translateY(-2px);}
.btn:active{transform:translateY(0);}

.btn-plate{
  background:var(--highway-yellow);
  color:var(--asphalt);
  border-color:var(--asphalt);
  box-shadow:0 3px 0 var(--asphalt);
}
.btn-plate:hover{background:var(--highway-yellow-dark);box-shadow:0 5px 0 var(--asphalt);}
.btn-plate:active{box-shadow:0 1px 0 var(--asphalt); transform:translateY(2px);}

.btn-blue{
  background:var(--route-blue);
  color:var(--white);
  box-shadow:var(--shadow-card);
}
.btn-blue:hover{background:var(--route-blue-dark);}

.btn-whatsapp{
  background:var(--whatsapp);
  color:var(--white);
  box-shadow:var(--shadow-card);
}
.btn-whatsapp:hover{background:#1DA851;}

.btn-outline{
  background:transparent;
  border-color:currentColor;
  color:inherit;
}
.btn-outline:hover{background:rgba(255,255,255,0.08);}
.bg-concrete .btn-outline:hover, .btn-outline.on-light:hover{background:rgba(20,22,26,0.06);}

.btn-block{width:100%;}
.btn-lg{padding:16px 28px;font-size:16px;}

/* =========== Header =========== */
.site-header{
  position:sticky;top:0;z-index:100;
  background:var(--asphalt);
  border-bottom:3px solid var(--highway-yellow);
}
.site-header .container{
  display:flex;align-items:center;justify-content:space-between;
  height:var(--header-h);
}
.logo{
  display:flex;align-items:center;gap:10px;
  font-family:var(--font-display);
  font-weight:700;font-size:24px;color:var(--white);
}
.logo .logo-mark{
  width:38px;height:38px;border-radius:8px;
  background:var(--highway-yellow);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.logo .logo-mark svg{width:22px;height:22px;}
.logo small{
  display:block;font-family:var(--font-mono);font-size:9px;letter-spacing:2px;
  color:var(--highway-yellow);font-weight:600;text-transform:uppercase;margin-top:-2px;
}

.main-nav{display:none;}
@media (min-width:960px){
  .main-nav{display:flex;gap:6px;align-items:center;}
  .main-nav a{
    color:#D6D9DE;font-weight:600;font-size:14.5px;padding:10px 14px;border-radius:var(--radius-s);
    transition:color .15s, background .15s;
  }
  .main-nav a:hover, .main-nav a[aria-current="page"]{color:var(--white);background:var(--asphalt-3);}
}

.header-actions{display:flex;align-items:center;gap:10px;}
.header-actions .btn{padding:10px 14px;font-size:13.5px;}
.header-actions .btn span{display:none;}
@media (min-width:640px){ .header-actions .btn span{display:inline;} }
.header-actions .call-plate{
  font-family:var(--font-mono);
}

.nav-toggle{
  display:flex;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:var(--radius-s);
  background:var(--asphalt-3);border:none;color:var(--white);
}
@media (min-width:960px){ .nav-toggle{display:none;} }
.nav-toggle svg{width:22px;height:22px;}

.mobile-nav{
  display:none;
  background:var(--asphalt-2);
  border-bottom:3px solid var(--highway-yellow);
}
.mobile-nav.open{display:block;}
@media (min-width:960px){ .mobile-nav{display:none !important;} }
.mobile-nav ul{padding:12px 20px 20px;}
.mobile-nav a{
  display:block;padding:13px 4px;color:#E5E7EA;font-weight:600;font-size:16px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.mobile-nav a[aria-current="page"]{color:var(--highway-yellow);}

/* =========== Hero =========== */
.hero{
  background:
    radial-gradient(ellipse at 80% -10%, rgba(41,87,255,0.35), transparent 55%),
    var(--asphalt);
  color:var(--white);
  position:relative;
  overflow:hidden;
  padding:52px 0 64px;
}
@media (min-width:900px){ .hero{padding:88px 0 100px;} }
.hero-grid{
  display:grid;gap:40px;
  align-items:center;
}
@media (min-width:900px){ .hero-grid{grid-template-columns:1.05fr 0.95fr;gap:24px;} }

.trust-chip-row{
  display:flex;flex-wrap:wrap;gap:10px;margin-top:26px;
}
.trust-chip{
  display:flex;align-items:center;gap:7px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  padding:8px 13px;border-radius:100px;
  font-size:13px;font-weight:600;color:#EDEFF2;
}
.trust-chip svg{width:15px;height:15px;color:var(--highway-yellow);flex-shrink:0;}

.hero h1{margin-bottom:16px;}
.hero .lede{font-size:17.5px;color:#C7CBD2;max-width:520px;margin-bottom:28px;}
.hero-ctas{display:flex;flex-wrap:wrap;gap:12px;}

.hero-visual{position:relative;min-height:260px;}
.route-svg{width:100%;height:auto;}
.route-line{
  fill:none;stroke:var(--highway-yellow);stroke-width:4;stroke-linecap:round;
  stroke-dasharray:14 14;
  animation:dash-move 2.2s linear infinite;
}
@keyframes dash-move{ to{ stroke-dashoffset:-56; } }

/* =========== Trust strip =========== */
.trust-strip{
  background:var(--white);
  border-bottom:1px solid var(--line);
}
.trust-strip .container{
  display:grid;gap:22px;
  grid-template-columns:repeat(2,1fr);
  padding-top:30px;padding-bottom:30px;
}
@media (min-width:760px){ .trust-strip .container{grid-template-columns:repeat(4,1fr);} }
.trust-item{display:flex;align-items:center;gap:12px;}
.trust-item .icon-box{
  width:44px;height:44px;border-radius:10px;background:var(--concrete);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.trust-item .icon-box svg{width:22px;height:22px;color:var(--route-blue);}
.trust-item strong{display:block;font-size:14.5px;}
.trust-item span{font-size:12.5px;color:var(--ink-soft);}

/* =========== Services grid =========== */
.services-grid{
  display:grid;gap:18px;
  grid-template-columns:repeat(1,1fr);
}
@media (min-width:640px){ .services-grid{grid-template-columns:repeat(2,1fr);} }
@media (min-width:1000px){ .services-grid{grid-template-columns:repeat(4,1fr);} }

.service-card{
  background:var(--white);
  border:1px solid var(--line);
  border-left:4px solid var(--highway-yellow);
  border-radius:var(--radius-m);
  padding:22px 20px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lift);border-left-color:var(--route-blue);}
.service-card .icon-box{
  width:46px;height:46px;border-radius:10px;background:var(--asphalt);
  display:flex;align-items:center;justify-content:center;margin-bottom:14px;
}
.service-card .icon-box svg{width:24px;height:24px;color:var(--highway-yellow);}
.service-card h3{margin-bottom:8px;}
.service-card p{font-size:14px;color:var(--ink-soft);}
.service-card a.card-link{
  display:inline-flex;align-items:center;gap:6px;margin-top:14px;font-weight:700;font-size:13.5px;color:var(--route-blue);
}

/* =========== Timeline (route-line signature) =========== */
.timeline{position:relative;margin-top:12px;}
.timeline::before{
  content:"";position:absolute;left:23px;top:6px;bottom:6px;width:2px;
  background-image:linear-gradient(var(--highway-yellow) 60%, transparent 0%);
  background-size:2px 14px;background-repeat:repeat-y;
}
@media (min-width:760px){ .timeline::before{left:50%;margin-left:-1px;} }
.timeline-step{
  position:relative;padding-left:60px;margin-bottom:34px;
}
.timeline-step:last-child{margin-bottom:0;}
@media (min-width:760px){
  .timeline{display:grid;grid-template-columns:1fr 1fr;column-gap:48px;}
  .timeline-step{padding-left:0;margin-bottom:0;}
  .timeline-step:nth-child(odd){text-align:right;padding-right:48px;}
  .timeline-step:nth-child(even){padding-left:48px;grid-column:2;}
  .timeline-step:nth-child(odd){grid-column:1;}
}
.timeline-num{
  position:absolute;left:0;top:0;width:46px;height:46px;border-radius:50%;
  background:var(--asphalt);color:var(--highway-yellow);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-mono);font-weight:700;font-size:16px;
  border:3px solid var(--highway-yellow);
}
@media (min-width:760px){
  .timeline-step:nth-child(odd) .timeline-num{left:auto;right:-23px;}
  .timeline-step:nth-child(even) .timeline-num{left:-23px;}
}
.timeline-step h3{margin-bottom:6px;}
.timeline-step p{font-size:14.5px;color:var(--ink-soft);}

/* =========== Testimonials =========== */
.testimonial-grid{display:grid;gap:18px;grid-template-columns:1fr;}
@media (min-width:760px){ .testimonial-grid{grid-template-columns:repeat(3,1fr);} }
.testimonial-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-m);
  padding:22px;box-shadow:var(--shadow-card);
}
.stars{display:flex;gap:3px;margin-bottom:12px;}
.stars svg{width:16px;height:16px;color:var(--highway-yellow-dark);}
.testimonial-card p{font-size:14.5px;color:var(--ink);margin-bottom:16px;}
.testimonial-name{font-weight:700;font-size:14px;}
.testimonial-loc{font-size:12.5px;color:var(--ink-soft);}

/* =========== CTA hazard banner =========== */
.cta-banner{
  position:relative;
  background:var(--highway-yellow);
  color:var(--asphalt);
  padding:44px 0;
  border-top:4px solid var(--asphalt);
  border-bottom:4px solid var(--asphalt);
}
.cta-banner .container{
  display:flex;flex-direction:column;gap:20px;align-items:flex-start;justify-content:space-between;
}
@media (min-width:800px){ .cta-banner .container{flex-direction:row;align-items:center;} }
.cta-banner h2{font-size:clamp(22px,3.6vw,32px);}
.cta-banner .actions{display:flex;gap:12px;flex-wrap:wrap;}

/* =========== Forms =========== */
.form-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-l);
  padding:24px;box-shadow:var(--shadow-card);
}
@media (min-width:640px){ .form-card{padding:34px;} }
.form-row{display:grid;gap:16px;margin-bottom:16px;}
@media (min-width:640px){ .form-row.two{grid-template-columns:1fr 1fr;} }
.field label{
  display:block;font-size:13px;font-weight:700;margin-bottom:6px;color:var(--ink);
}
.field .req{color:var(--signal-red);}
.field input, .field select, .field textarea{
  width:100%;padding:12px 14px;border-radius:var(--radius-s);
  border:1.5px solid var(--line);font-family:var(--font-body);font-size:15px;
  background:var(--white);color:var(--ink);
  transition:border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color:var(--route-blue);outline:none;
}
.field textarea{resize:vertical;min-height:100px;}
.form-note{font-size:12.5px;color:var(--ink-soft);margin-top:14px;}
.form-success{
  display:none;background:#F0FBF3;border:1.5px solid #35C25E;color:#166534;
  padding:16px;border-radius:var(--radius-s);font-size:14.5px;font-weight:600;margin-bottom:18px;
  align-items:center;gap:10px;
}
.form-success.show{display:flex;}
.form-success svg{width:20px;height:20px;flex-shrink:0;color:#1F9D4B;}

/* =========== FAQ accordion =========== */
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-item:first-child{border-top:1px solid var(--line);}
.faq-q{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  background:none;border:none;text-align:left;padding:20px 4px;
  font-family:var(--font-display);font-weight:700;font-size:17px;color:var(--ink);
}
.faq-q svg{width:20px;height:20px;flex-shrink:0;transition:transform .2s ease;color:var(--route-blue);}
.faq-item.open .faq-q svg{transform:rotate(45deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .25s ease;}
.faq-a-inner{padding:0 4px 20px;color:var(--ink-soft);font-size:14.5px;max-width:720px;}
.faq-item.open .faq-a{max-height:400px;}

/* =========== Service areas / local SEO =========== */
.area-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px;}
.area-tags span{
  font-family:var(--font-mono);font-size:12.5px;padding:7px 12px;border-radius:100px;
  background:var(--asphalt);color:var(--highway-yellow);font-weight:600;
}

/* =========== Footer =========== */
.site-footer{background:var(--asphalt);color:#C7CBD2;padding:56px 0 28px;}
.footer-grid{display:grid;gap:32px;grid-template-columns:1fr;margin-bottom:36px;}
@media (min-width:760px){ .footer-grid{grid-template-columns:1.3fr 1fr 1fr 1fr;} }
.footer-col h4{color:var(--white);font-size:14px;letter-spacing:1px;text-transform:uppercase;margin-bottom:14px;}
.footer-col ul li{margin-bottom:10px;}
.footer-col a:hover{color:var(--highway-yellow);}
.footer-col p{font-size:14px;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.12);padding-top:22px;
  display:flex;flex-direction:column;gap:10px;font-size:12.5px;color:#8B909C;
}
@media (min-width:640px){ .footer-bottom{flex-direction:row;justify-content:space-between;} }

/* =========== Mobile bottom bar =========== */
.mobile-bottom-bar{
  position:fixed;bottom:0;left:0;right:0;z-index:99;
  display:grid;grid-template-columns:repeat(3,1fr);
  background:var(--asphalt);border-top:3px solid var(--highway-yellow);
  height:var(--bottom-bar-h);
}
@media (min-width:900px){ .mobile-bottom-bar{display:none;} }
.mobile-bottom-bar a{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;
  color:#D6D9DE;font-size:11px;font-weight:700;
}
.mobile-bottom-bar a svg{width:20px;height:20px;}
.mobile-bottom-bar a.mb-call svg{color:var(--route-blue);}
.mobile-bottom-bar a.mb-whatsapp svg{color:var(--whatsapp);}
.mobile-bottom-bar a.mb-quote svg{color:var(--highway-yellow);}

/* =========== Page hero (inner pages) =========== */
.page-hero{
  background:var(--asphalt);color:var(--white);padding:44px 0 40px;
  border-bottom:4px solid var(--highway-yellow);
}
.page-hero .eyebrow{margin-bottom:10px;}
.page-hero p{color:#C7CBD2;max-width:620px;margin-top:12px;font-size:15.5px;}
.breadcrumb{font-size:12.5px;color:#9BA0AC;margin-bottom:14px;}
.breadcrumb a:hover{color:var(--highway-yellow);}

/* =========== Misc =========== */
.two-col{display:grid;gap:40px;grid-template-columns:1fr;}
@media (min-width:900px){ .two-col{grid-template-columns:1fr 1fr;align-items:center;} }
.stat-row{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:28px;}
.stat-row strong{display:block;font-family:var(--font-display);font-size:clamp(24px,4vw,34px);color:var(--asphalt);}
.stat-row span{font-size:12.5px;color:var(--ink-soft);}
.bg-asphalt .stat-row strong{color:var(--highway-yellow);}

.value-grid{display:grid;gap:18px;grid-template-columns:1fr;}
@media (min-width:640px){ .value-grid{grid-template-columns:repeat(2,1fr);} }
.value-card{padding:22px;border-radius:var(--radius-m);background:var(--white);border:1px solid var(--line);}
.value-card .icon-box{
  width:42px;height:42px;border-radius:9px;background:var(--concrete);
  display:flex;align-items:center;justify-content:center;margin-bottom:12px;
}
.value-card .icon-box svg{width:22px;height:22px;color:var(--route-blue);}

.contact-cards{display:grid;gap:16px;grid-template-columns:1fr;}
@media (min-width:640px){ .contact-cards{grid-template-columns:repeat(3,1fr);} }
.contact-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius-m);
  padding:22px;text-align:center;
}
.contact-card .icon-box{
  width:50px;height:50px;border-radius:12px;background:var(--asphalt);
  display:flex;align-items:center;justify-content:center;margin:0 auto 14px;
}
.contact-card .icon-box svg{width:24px;height:24px;color:var(--highway-yellow);}
.contact-card h3{margin-bottom:6px;}
.contact-card p{font-size:14px;color:var(--ink-soft);margin-bottom:16px;}

.map-embed{
  border-radius:var(--radius-m);overflow:hidden;border:1px solid var(--line);
  aspect-ratio:16/9;
}
.map-embed iframe{width:100%;height:100%;border:0;}

.skip-link{
  position:absolute;left:-999px;top:0;background:var(--highway-yellow);color:var(--asphalt);
  padding:10px 16px;font-weight:700;z-index:200;border-radius:0 0 8px 0;
}
.skip-link:focus{left:0;}

/* =========== Floating WhatsApp "Ready to chat?" button =========== */
.wa-fab-wrap{
  position:fixed;
  right:18px;
  bottom:calc(var(--bottom-bar-h) + 18px);
  z-index:98;
  display:flex;align-items:center;gap:10px;
  flex-direction:row-reverse;
}
@media (min-width:900px){ .wa-fab-wrap{bottom:24px;} }

.wa-fab{
  width:58px;height:58px;border-radius:50%;
  background:var(--whatsapp);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(37,211,102,0.45);
  position:relative;
  flex-shrink:0;
}
.wa-fab svg{width:28px;height:28px;color:var(--white);}
.wa-fab::before{
  content:"";position:absolute;inset:0;border-radius:50%;
  background:var(--whatsapp);opacity:0.55;
  animation:wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse{
  0%{ transform:scale(1); opacity:0.55; }
  100%{ transform:scale(1.7); opacity:0; }
}

.wa-fab-bubble{
  background:var(--asphalt);color:var(--white);
  font-size:13px;font-weight:700;
  padding:9px 14px;border-radius:100px;
  white-space:nowrap;
  box-shadow:var(--shadow-card);
  animation:wa-bob 2.6s ease-in-out infinite;
}
@media (max-width:480px){ .wa-fab-bubble{display:none;} }
@keyframes wa-bob{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-3px); }
}

/* =========== Logo image (when config.js logoUrl is set) =========== */
.logo-img{display:block;object-fit:contain;flex-shrink:0;}
.logo-img-header{height:46px;width:auto;max-width:180px;}
.logo-img-footer{height:38px;width:auto;max-width:150px;}

/* =========== Footer admin/backend link =========== */
.footer-admin-link{
  display:inline-flex;align-items:center;gap:6px;
}
.footer-admin-link svg{flex-shrink:0;opacity:0.85;}
