/* =========================================================
   SN FLEET SECTION (3-column slider, AC/Non-AC pricing tags)
   Depends on :root --sn-* tokens + your base sn-* styles
   ========================================================= */

.sn-fleet{
  background: linear-gradient(180deg, rgba(14,143,58,.06), rgba(255,255,255,0));
}

/* Head layout */
.sn-fHead{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  align-items:start;
  margin-bottom: 12px;
}
.sn-fMini{ top: 14px; }

/* AC toggle */
.sn-acToggle{
  display:flex;
  gap: 8px;
  align-items:center;
}
.sn-acBtn{
  border:1px solid var(--sn-border);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-radius: var(--sn-pill);
  padding: 10px 12px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(12,16,23,.84);
  display:inline-flex;
  align-items:center;
  gap: 8px;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.sn-acBtn:hover{ transform: translateY(-1px); box-shadow: 0 10px 22px rgba(12,16,23,.10); }
.sn-acBtn.is-active{
  border-color: rgba(14,143,58,.30);
  box-shadow: 0 12px 28px rgba(14,143,58,.16);
}
.sn-fNoteLine{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top: 8px;
  color: rgba(12,16,23,.72);
  font-weight: 750;
}
.sn-fNoteLine i{ margin-top:2px; opacity:.85; }

/* Controls */
.sn-fControls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: 12px;
}
.sn-fNav{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--sn-border);
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 30px rgba(12,16,23,.08);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sn-fNav:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(12,16,23,.12);
}
.sn-fProgress{ display:flex; gap:8px; align-items:center; }
.sn-fDot{
  width: 8px; height: 8px; border-radius: 99px;
  background: rgba(12,16,23,.18);
}
.sn-fDot.is-active{ background: rgba(11,58,164,.70); }

/* Slider wrapper */
.sn-fWrap{
  margin-top: 12px;
  overflow:hidden;
  border-radius: var(--sn-r20);
}
.sn-fTrack{
  display:flex;
  gap: 14px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  padding: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sn-fTrack::-webkit-scrollbar{ display:none; }

/* Each card = 3 columns in a row using min-width */
.sn-vCard{
  flex: 0 0 calc((100% - 28px) / 3); /* 3 columns */
  scroll-snap-align: start;
  border:1px solid var(--sn-border);
  background: rgba(255,255,255,.86);
  border-radius: var(--sn-r20);
  overflow:hidden;
  box-shadow: 0 12px 30px rgba(12,16,23,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.sn-vCard:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(12,16,23,.12);
}

/* Media */
.sn-vMedia{
  position:relative;
  height: 170px;
  background-size: cover;
  background-position: center;
}
.sn-vMedia::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(12,16,23,.10), rgba(12,16,23,.62));
}

/* Media top */
.sn-vTop{
  position:absolute;
  left: 12px; right: 12px; top: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:2;
  gap:10px;
}
.sn-vIcon{
  width:42px; height:42px;
  border-radius: 14px;
  display:grid; place-items:center;
  color:#fff;
  box-shadow: 0 14px 30px rgba(12,16,23,.18);
}
.sn-vTag{
  border-radius: var(--sn-pill);
  padding: 7px 10px;
  font-weight: 900;
  font-size: 12px;
  color: rgba(255,255,255,.96);
  background: rgba(12,16,23,.35);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  white-space:nowrap;
}

/* Pricing tags */
.sn-vPrice{
  position:absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
}
.sn-vKm{
  display:inline-flex;
  align-items:baseline;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--sn-pill);
  font-weight: 950;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(12,16,23,.18);
}
.sn-vKm small{
  font-weight: 900;
  font-size: 11px;
  opacity: .95;
}
.sn-km--ac{
  background: linear-gradient(90deg, var(--sn-blue), var(--sn-orange));
}
.sn-km--nonac{
  background: linear-gradient(90deg, rgba(12,16,23,.88), rgba(12,16,23,.70));
}
.sn-vMin{
  padding: 8px 10px;
  border-radius: var(--sn-pill);
  font-weight: 900;
  font-size: 12px;
  color: rgba(255,255,255,.92);
  background: rgba(12,16,23,.35);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

/* Body */
.sn-vBody{ padding: 14px; }
.sn-vBody h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 950;
  color: var(--sn-ink);
}
.sn-vBody p{
  margin: 0 0 10px;
  color: rgba(12,16,23,.76);
  font-size: 13.5px;
  line-height: 1.55;
}

/* Specs */
.sn-vSpecs{
  margin:0 0 10px;
  padding:0;
  list-style:none;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
}
.sn-vSpecs li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: rgba(12,16,23,.78);
  font-weight: 800;
  font-size: 13px;
}
.sn-vSpecs i{ margin-top:2px; opacity:.85; }

/* Chips */
.sn-vChips{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-bottom: 12px;
}

/* CTAs */
.sn-vCtas{
  display:flex;
  gap: 10px;
}
.sn-vCtas .sn-btn{ flex:1; padding: 11px 12px; }

/* Hidden state for filters */
.sn-hidden{ display:none !important; }

/* Responsive */
@media (max-width: 992px){
  .sn-fHead{ grid-template-columns: 1fr; }
  .sn-miniQuote{ position: relative; top:auto; }
  .sn-vCard{ flex-basis: calc((100% - 14px) / 2); } /* 2 columns */
}
@media (max-width: 576px){
  .sn-vCard{ flex-basis: 100%; } /* 1 column */
  .sn-vMedia{ height: 190px; }
  .sn-vSpecs{ grid-template-columns: 1fr; }
  .sn-vCtas{ flex-direction: column; }
}
.sn-vKm.sn-km--nonac{ display:none; }

/* =========================================================
   SANNIDHI – FLEET SECTION (RESPONSIVE)
   Section: #fleet.sn-fleet
   Paste AFTER your existing sn-* CSS so it overrides.
   Covers: Head grid + filters + AC toggle + slider + vehicle cards
   ========================================================= */

/* ---------- Desktop-first layout ---------- */
.sn-fleet{
  padding: clamp(26px, 4vw, 58px) 0;
}

.sn-fleet .container{
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

/* Head: left content + right sticky mini */
.sn-fHead{
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: clamp(14px, 2.2vw, 24px);
  align-items: start;
}

.sn-fHead > div{ min-width: 0; }

/* Scale title/lead */
.sn-fleet .sn-h2{
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.15;
  margin: 10px 0 10px;
}

.sn-fleet .sn-lead{
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.65;
  margin: 0 0 14px;
}

/* Sticky mini trust card */
.sn-fMini{
  position: sticky;
  top: var(--sn-sticky-offset, 96px);
  align-self: start;
}

/* Mini CTAs */
.sn-miniCtas{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sn-miniCtas .sn-btn{
  width: 100%;
  justify-content: center;
}

/* Fleet filters row */
.sn-fPills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.sn-fPills .sn-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* AC toggle on right (desktop) */
.sn-acToggle{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
  flex: 0 0 auto;
}
.sn-acBtn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Note line */
.sn-fNoteLine{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
  margin-top: 12px;
}
.sn-fNoteLine span{ min-width: 0; }

/* Slider controls */
.sn-fControls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(14px, 2vw, 18px);
}

.sn-fNav{
  flex: 0 0 auto;
}

.sn-fProgress{
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

/* Slider wrapper: allow horizontal scroll on touch devices */
.sn-fWrap{
  margin-top: 14px;
  overflow: hidden;
}

/* Track: desktop slider style */
.sn-fTrack{
  display: flex;
  gap: clamp(12px, 2vw, 18px);
  align-items: stretch;
  will-change: transform;
}

/* Each vehicle card width for slider */
.sn-vCard{
  flex: 0 0 calc(30% - 9px); /* 2 cards visible on desktop */
  min-width: 0;
}

/* Media sizing */
.sn-vMedia{
  background-size: cover;
  background-position: center;
  min-height: 220px;
}

/* Price block wraps safely */
.sn-vPrice{
  display: grid;
  gap: 6px;
  align-items: start;
}
.sn-vKm{
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.sn-vMin{
  opacity: .9;
}

/* Card body spacing */
.sn-vBody{
  padding: 16px 16px 14px;
}
.sn-vBody h3{
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 8px;
}

/* Specs list */
.sn-vSpecs{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.sn-vSpecs li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}

/* Chips wrap */
.sn-vChips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

/* CTAs inside card */
.sn-vCtas{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 14px;
  align-items: center;
}
.sn-vCtas .sn-btn{
  width: 100%;
  justify-content: center;
}

/* ---------- <= 1100px (tighter) ---------- */
@media (max-width: 1100px){
  .sn-vCard{
    flex-basis: calc(60% - 9px); /* slightly bigger cards */
  }
}

/* ---------- <= 860px (tablet: stack head + touch scroll slider) ---------- */
@media (max-width: 860px){
  .sn-fHead{
    grid-template-columns: 1fr;
  }

  /* stop sticky on smaller screens */
  .sn-fMini{
    position: relative;
    top: auto;
  }

  /* filters: horizontal scroll */
  .sn-fPills{
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    gap: 10px;
  }
  .sn-fPills::-webkit-scrollbar{ height: 6px; }

  /* keep AC toggle visible and not forced to far right inside scroll */
  .sn-acToggle{
    margin-left: 0;
    padding-left: 6px;
  }

  /* Slider becomes native horizontal scroll */
  .sn-fWrap{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
  }

  .sn-fTrack{
    width: max-content;
    padding-right: 4px;
  }

  .sn-vCard{
    flex: 0 0 min(78vw, 520px);
    scroll-snap-align: start;
  }

  /* controls less important on touch; keep but compact */
  .sn-fControls{
    justify-content: space-between;
  }
}

/* ---------- <= 520px (mobile) ---------- */
@media (max-width: 520px){
  .sn-fleet .container{
    width: min(1180px, calc(100% - 22px));
  }

  .sn-eyebrow{
    font-size: 12px;
    line-height: 1.35;
  }
  .sn-sep{ display: none; }

  .sn-fleet .sn-h2{
    font-size: 22px;
    line-height: 1.18;
  }

  .sn-fleet .sn-lead{
    font-size: 14px;
  }

  /* mini CTAs stack */
  .sn-miniCtas{
    grid-template-columns: 1fr;
  }

  /* price chips tighter */
  .sn-vMedia{
    min-height: 190px;
  }

  /* CTA stack in vehicle card */
  .sn-vCtas{
    grid-template-columns: 1fr;
  }

  /* make slider dots smaller if needed */
  .sn-fProgress{
    gap: 6px;
  }
}

/* ---------- Optional: reduce motion ---------- */
@media (prefers-reduced-motion: reduce){
  .sn-fleet *{
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}