/* =========================================================
   Classic Cabs Coorg — Mobile Landing (Bootstrap 5)
   Foundation tokens + base
   ========================================================= */

:root{
  --cc-orange:#F36C0C;
  --cc-forest:#095535;
  --cc-green:#268B49;
  --cc-yellow:#FCCF45;
  --cc-sky:#39C4E9;

  --cc-ink:#111318;
  --cc-muted:#5F6368;

  --cc-bg:#F6F8FB;
  --cc-card:#FFFFFF;
  --cc-line:rgba(60,64,67,.16);

  --cc-r14:14px;
  --cc-r18:18px;
  --cc-pill:999px;

  --cc-e1:0 1px 2px rgba(15,23,42,.08);
  --cc-e2:0 12px 32px rgba(15,23,42,.10);
}
body.cc-body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

html,body{ height:100%; }
body.cc-body{
  margin:0;
  background:var(--cc-bg);
  color:var(--cc-ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cc-shell{
  width:min(560px, 100%);
  margin:0 auto;
  padding: 0 12px;
}

/* Topbar */
/* ===== Google-clean Topbar ===== */
.cc-topbar{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246,248,251,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(60,64,67,.10);
}

.cc-topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 10px 2px;
}

.cc-brand{
  display:flex;
  flex-direction:column;
  gap:2px;
  text-decoration:none;
  color:inherit;
  min-width: 140px;
}

.cc-logo{
 width: 65px;
  display:block;
}

.cc-brandSub{
  font-size: 11.5px;
  color: var(--cc-muted);
  line-height: 1.1;
}

/* chips */
.cc-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.cc-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(60,64,67,.14);
  box-shadow: 0 1px 2px rgba(60,64,67,.10);
  font-size: 12px;
  color: var(--cc-ink);
  white-space: nowrap;
}

.cc-chip i{
  font-size: 13px;
}

.cc-chip--loc i{
  color: var(--cc-forest);
}

.cc-chip--rate i{
  color: var(--cc-yellow);
}

.cc-chip b{
  font-weight: 700;
}

/* micro polish */
@media (max-width: 360px){
  .cc-brandSub{ display:none; }
  .cc-chip{ padding: 0 10px; height: 30px; }
}

/* =========================================================
   SECTION 2 — HERO
   ========================================================= */
.cc-hero{
  padding: 12px 0 8px;
}

.cc-heroCard{
  background: var(--cc-card);
  border: 1px solid rgba(60,64,67,.12);
  border-radius: var(--cc-r18);
  box-shadow: var(--cc-e2);
  padding: 14px;
}

.cc-heroKicker{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--cc-muted);
  font-size: 12px;
  line-height: 1.2;
}

.cc-dot{
  width:10px;
  height:10px;
  border-radius: 50%;
  background: var(--cc-orange);
  box-shadow: 0 0 0 4px rgba(243,108,12,.16);
  flex: 0 0 auto;
}

.cc-h1{
  font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  margin: 10px 0 8px;
  color: var(--cc-ink);
}

.cc-h1Sub{
  display:block;
  font-size: 13px;
  font-weight: 600;
  color: var(--cc-muted);
  margin-top: 6px;
}

.cc-heroLead{
  margin: 0 0 12px;
  color: var(--cc-muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.cc-ctaStack{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top: 8px;
}

.cc-btn{
  min-height: 48px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight: 700;
  letter-spacing: .2px;
  border: 1px solid transparent;
}

.cc-btn i{ font-size: 18px; }

/* WhatsApp primary — Google clean (not neon) */
.cc-btn--wa{
  background: var(--cc-green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(38,139,73,.22);
}

.cc-btn--wa:active{ transform: translateY(1px); }

/* Call secondary */
.cc-btn--call{
  background: #fff;
  color: var(--cc-ink);
  border-color: rgba(60,64,67,.18);
}

/* link button */
.cc-linkBtn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color: var(--cc-forest);
  text-decoration:none;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(9,85,53,.06);
  border: 1px solid rgba(9,85,53,.12);
  min-height: 44px;
}

.cc-linkBtn i{ color: var(--cc-forest); }

/* Trust bullets row */
.cc-trustRow{
  display:grid;
  grid-template-columns: 1fr;
  gap:8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(60,64,67,.10);
}

.cc-trustItem{
  display:flex;
  align-items:center;
  gap:10px;
  background: #fbfcff;
  border: 1px solid rgba(60,64,67,.10);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--cc-ink);
  box-shadow: 0 1px 2px rgba(60,64,67,.08);
}

.cc-trustItem i{
  color: var(--cc-forest);
}
/* =========================================================
   HERO — PRO UPGRADE
   ========================================================= */
.cc-hero{ padding: 12px 0 8px; }

.cc-heroCard--pro{
  overflow:hidden;
  padding: 0;
}

/* media strip */
.cc-heroMedia{
  position: relative;
  height: 118px;
  background: #e9eef6;
}

.cc-heroMedia img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.cc-heroShade{
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.18));
}

.cc-heroBadgeRow{
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:space-between;
}

.cc-hBadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 1px 2px rgba(0,0,0,.10);
  font-size: 12px;
  color: var(--cc-ink);
  white-space: nowrap;
}

.cc-hBadge i{ color: var(--cc-forest); }
.cc-hBadge--rate i{ color: var(--cc-yellow); }

/* body */
.cc-heroBody{ padding: 14px; }

.cc-h1--pro{
  font-size: 22px;
  margin: 10px 0 6px;
  letter-spacing: -.2px;
}

.cc-h1Sub{
  display:block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cc-muted);
}

.cc-heroLead--pro{
  font-size: 13.3px;
  margin: 0 0 12px;
}

/* primary WA CTA */
.cc-heroWa{
  border-radius: 16px;
  min-height: 54px;
  font-size: 15px;
}

/* fast line */
.cc-fastLine{
  margin-top: 8px;

  align-items:center;
  gap:10px;
  font-size: 12.5px;
  color: var(--cc-muted);
  background: rgba(57,196,233,.08);
  border: 1px solid rgba(57,196,233,.16);
  border-radius: 14px;
  padding: 10px 12px;
}

.cc-fastLine i{ color: var(--cc-orange); }

/* split secondary buttons */
.cc-heroSplit{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top: 10px;
}

.cc-sBtn{
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(60,64,67,.16);
  background: #fff;
  box-shadow: 0 1px 2px rgba(60,64,67,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight: 900;
  color: var(--cc-ink);
}

.cc-sBtn i{ color: var(--cc-forest); }

.cc-sBtn--soft{
  background: rgba(243,108,12,.10);
  border-color: rgba(243,108,12,.25);
}
.cc-sBtn--soft i{ color: var(--cc-orange); }

/* trust chips (compact) */
.cc-trustChips{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;   /* center horizontally */
  align-items:center;
  text-align:center;
}

.cc-chip2{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(60,64,67,.12);
  box-shadow:0 1px 2px rgba(60,64,67,.06);
  font-size:12.5px;
  color:var(--cc-ink);
  white-space:nowrap;
}

.cc-chip2 i{ color: var(--cc-forest); }

@media (max-width: 360px){
  .cc-heroMedia{ height: 106px; }
  .cc-heroSplit{ grid-template-columns: 1fr; }
}
/* =========================================================
   SECTION 3 — PRICING (PRO)
   ========================================================= */

.cc-pricing{ padding: 10px 0 8px; }

.cc-surface{
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(60,64,67,.12);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(15,23,42,.10);
  padding: 14px;
}

.cc-secHead{ padding: 4px 2px 10px; }

.cc-kicker{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  color: var(--cc-muted);
}

.cc-kicon{
  width:28px;
  height:28px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(243,108,12,.10);
  border:1px solid rgba(243,108,12,.25);

  color: var(--cc-orange);
  font-size:13px;
}

.cc-ktext b{
  color: var(--cc-ink);
}

.cc-kdot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: var(--cc-orange);
  box-shadow: 0 0 0 4px rgba(243,108,12,.16);
}

.cc-h2{
  font-family: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.2px;
  line-height: 1.2;
  margin: 8px 0 6px;
  color: var(--cc-ink);
}

.cc-secLead{
  margin: 0;
  font-size: 12.8px;
  line-height: 1.55;
  color: var(--cc-muted);
}

/* Tabs — client understandable */
.cc-tabs{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:10px;
  margin: 12px 0 12px;
}

.cc-tabs .nav-item{ width:100%; }
.cc-tabs .nav-link{
  width:100%;
  border-radius: 14px;
  padding: 10px 10px;
  font-weight: 900;
  font-size: 12.3px;
  line-height: 1.15;
  color: var(--cc-ink);
  background: #fff;
  border: 1px solid rgba(60,64,67,.14);
  box-shadow: 0 1px 2px rgba(60,64,67,.08);
  text-align:center;
  min-height: 46px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.cc-tabs .nav-link.active{
  color:#000;
  background: rgba(243,108,12,.12);
  border-color: rgba(243,108,12,.30);
}

@media (max-width: 360px){
  .cc-tabs{ gap:8px; }
  .cc-tabs .nav-link{ font-size: 11.8px; padding: 9px 8px; }
}

.cc-tabContent{ padding-bottom: 2px; }

/* Cards */
.cc-cardGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}

.cc-priceCard{
  background: #fff;
  border: 1px solid rgba(60,64,67,.12);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(60,64,67,.08);
}

/* Media layout */
.cc-priceCard--media{
  display:grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 12px;
}

.cc-cardMedia{
  width: 96px;
  height: 96px;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(60,64,67,.12);
  background: #fbfcff;
  box-shadow: 0 1px 2px rgba(60,64,67,.08);
}

.cc-cardMedia img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.cc-cardBody{ min-width:0; }

.cc-cardTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.cc-cardTitle{
  font-weight: 900;
  font-size: 14px;
  letter-spacing: -.1px;
  color: var(--cc-ink);
}

.cc-cardMeta{
  font-size: 12px;
  color: var(--cc-muted);
  margin-top: 2px;
}

/* Premium price badge */
.cc-priceTag{
  background: rgba(9,85,53,.06);
  border: 1px solid rgba(9,85,53,.16);
  color: var(--cc-forest);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  display:flex;
  align-items:baseline;
  gap:2px;
  white-space: nowrap;
}

.cc-priceCur{
  font-size: 12px;
  opacity: .92;
}

/* Place list */
.cc-placeList{
  list-style:none;
  padding:0;
  margin: 0 0 10px;
  display:grid;
  gap: 6px;
}

.cc-placeList li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: var(--cc-ink);
  font-size: 12.8px;
  line-height: 1.35;
}

.cc-placeList i{
  color: var(--cc-green);
  margin-top: 2px;
}

/* Route card */
.cc-routeCard{
  background: #fff;
  border: 1px solid rgba(60,64,67,.12);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(60,64,67,.08);
  padding: 14px;
}

.cc-routeHead{ margin-bottom: 10px; }

.cc-chipGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.cc-routeChip{
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(60,64,67,.14);
  background: #fff;
  box-shadow: 0 1px 2px rgba(60,64,67,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight: 900;
  font-size: 13px;
  color: var(--cc-ink);
  padding: 10px 12px;
}

.cc-routeChip i{
  color: var(--cc-green);
  font-size: 18px;
}

.cc-routeNote{
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--cc-muted);

  align-items:flex-start;
  gap:10px;
  background: rgba(57,196,233,.08);
  border: 1px solid rgba(57,196,233,.18);
  border-radius: 14px;
  padding: 10px 12px;
}

.cc-routeNote i{ color: var(--cc-sky); margin-top:2px; }

@media (max-width: 360px){
  .cc-priceCard--media{ grid-template-columns: 86px 1fr; }
  .cc-cardMedia{ width: 86px; height: 86px; }
  .cc-tabs .nav-link{ font-size: 12.2px; padding: 9px 10px; }
}

/* Section meta pills (Google business style) */
.cc-secMeta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top: 10px;
}

.cc-secPill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(60,64,67,.12);
  box-shadow: 0 1px 2px rgba(60,64,67,.06);
  font-size: 12px;
  color: var(--cc-ink);
}

.cc-secPill i{
  color: var(--cc-forest);
}

/* Divider */
.cc-divider{
  height: 1px;
  background: rgba(60,64,67,.10);
  margin: 12px 0 10px;
}

/* Premium surface effect for pricing cards */
.cc-priceCard{
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.cc-priceCard:active{
  transform: translateY(1px);
  box-shadow: 0 10px 22px rgba(15,23,42,.10);
  border-color: rgba(60,64,67,.16);
}

/* Slightly stronger button rounding */
.cc-btn{
  border-radius: 16px;
}
.cc-miniBadge{
  display:inline-flex;
  align-items:center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(252,207,69,.20);
  border: 1px solid rgba(252,207,69,.40);
  color: #6a4b00;
  font-size: 11.5px;
  font-weight: 800;
  margin-top: 6px;
}
.cc-miniBadge{
  display:inline-flex;
  align-items:center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(252,207,69,.20);
  border: 1px solid rgba(252,207,69,.40);
  color: #6a4b00;
  font-size: 11.5px;
  font-weight: 800;
  margin-top: 6px;
}

/* =========================================================
   SECTION 4 — VEHICLE UPGRADE TABLE
   ========================================================= */
.cc-vehicle{ padding: 10px 0 8px; }

/* Vehicle grid */
.cc-vehGrid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:10px;
  margin-top: 10px;
}

.cc-vehCard{
  position: relative;
  background: #fff;
  border: 1px solid rgba(60,64,67,.12);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(60,64,67,.08);
  padding: 10px;
  text-align:center;
}

.cc-vehCard--mid{
  border-color: rgba(243,108,12,.28);
  box-shadow: 0 12px 26px rgba(243,108,12,.12);
}

.cc-vehImg{
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(60,64,67,.10);
  background: #fbfcff;
}

.cc-vehImg img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.cc-vehName{
  margin-top: 8px;
  font-weight: 900;
  font-size: 12.8px;
  color: var(--cc-ink);
  line-height: 1.1;
}

.cc-vehMeta{
  margin-top: 4px;
  font-size: 11.5px;
  color: var(--cc-muted);
}

.cc-vehBadge{
  position:absolute;
  top: 8px;
  right: 8px;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(252,207,69,.22);
  border: 1px solid rgba(252,207,69,.40);
  color: #6a4b00;
  font-size: 11px;
  font-weight: 900;
  display:flex;
  align-items:center;
}

/* Table card */
.cc-tableCard{
  margin-top: 12px;
  background: #fff;
  border: 1px solid rgba(60,64,67,.12);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(60,64,67,.08);
  padding: 12px;
}

.cc-tableTop{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 8px;
}

.cc-tableTitle{
  font-weight: 900;
  font-size: 14px;
  color: var(--cc-ink);
}

.cc-tableHint{
  font-size: 12px;
  color: var(--cc-muted);
}

/* table styling */
.cc-tableWrap{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(60,64,67,.10);
}

.cc-table thead th{
  background: rgba(9,85,53,.06);
  color: var(--cc-forest);
  font-weight: 900;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(60,64,67,.10);
  white-space: nowrap;
}

.cc-table tbody th{
  font-weight: 900;
  font-size: 12.5px;
  color: var(--cc-ink);
  white-space: nowrap;
}

.cc-table td{
  font-weight: 800;
  font-size: 12.5px;
  color: var(--cc-ink);
  white-space: nowrap;
}

/* honest note */
.cc-honestNote{
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--cc-muted);
  display:flex;
  align-items:flex-start;
  gap:10px;
  background: rgba(57,196,233,.08);
  border: 1px solid rgba(57,196,233,.18);
  border-radius: 14px;
  padding: 10px 12px;
}

.cc-honestNote i{ color: var(--cc-sky); margin-top:2px; }

/* responsive */
@media (max-width: 380px){
  .cc-vehGrid{ gap:8px; }
  .cc-vehCard{ padding: 8px; }
  .cc-vehName{ font-size: 12.2px; }
}

/* =========================================================
   SECTION 5 — MINI FORM
   ========================================================= */
.cc-details{ padding: 10px 0 90px; } /* extra bottom padding for sticky bar */

.cc-form{
  margin-top: 10px;
  display:grid;
  gap: 10px;
}

.cc-field{ display:grid; gap: 6px; }

.cc-label{
  font-size: 12.5px;
  font-weight: 800;
  color: var(--cc-ink);
}

.cc-input{
  border-radius: 14px !important;
  border: 1px solid rgba(60,64,67,.16) !important;
  min-height: 48px;
  box-shadow: 0 1px 2px rgba(60,64,67,.06);
}

.cc-input:focus{
  border-color: rgba(243,108,12,.40) !important;
  box-shadow: 0 0 0 4px rgba(243,108,12,.12) !important;
}

.cc-help{
  font-size: 12px;
  color: var(--cc-muted);
}

.cc-formNote{
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--cc-muted);
  display:flex;
  align-items:flex-start;
  gap:10px;
  background: rgba(57,196,233,.08);
  border: 1px solid rgba(57,196,233,.18);
  border-radius: 14px;
  padding: 10px 12px;
}

.cc-formNote i{ color: var(--cc-sky); margin-top:2px; }

/* =========================================================
   SECTION 6 — STICKY CTA BAR
   ========================================================= */
.cc-sticky{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(246,248,251,.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(60,64,67,.10);
}

.cc-stickyInner{
  width: min(560px, 100%);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.cc-stBtn{
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(60,64,67,.14);
  background: #fff;
  box-shadow: 0 1px 2px rgba(60,64,67,.08);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  text-decoration:none;
  color: var(--cc-ink);
  font-weight: 900;
  font-size: 12px;
}

.cc-stBtn i{ font-size: 18px; }

.cc-stBtn--wa{
  background: var(--cc-green);
  color: #fff;
  border-color: rgba(38,139,73,.30);
  box-shadow: 0 12px 22px rgba(38,139,73,.20);
}

.cc-stBtn--wa i{ color:#fff; }

.cc-stBtn--call i{ color: var(--cc-forest); }

.cc-stBtn--form{
  background: rgba(243,108,12,.10);
  border-color: rgba(243,108,12,.25);
}

.cc-stBtn--form i{ color: var(--cc-orange); }

.cc-stBtn:active{ transform: translateY(1px); }

/* =========================================================
   SECTION 7 — FOOTER
   ========================================================= */

.cc-footer{
  margin-top: 20px;
  padding: 24px 0 110px;
  border-top: 1px solid rgba(60,64,67,.10);
  background: rgba(246,248,251,.95);
}

.cc-footLogo{
  height: 100px;
  margin-bottom: 10px;
}

.cc-dotLogo{
     height: 40px;
}

.cc-footText{
  font-size: 13px;
  line-height: 1.55;
  max-width: 420px;
  margin: 0 auto;
}

.cc-footLinks{
  margin-top: 10px;
}

.cc-copy{
  margin-top: 6px;
}

.cc-footerInner{
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 0 2px;
  display:grid;
  gap: 16px;
}

/* brand block */

.cc-footBrand{
  text-align:center;
}

.cc-footLogo{
  height: 100px;
  margin-bottom: 8px;
}

.cc-footText{
  font-size: 12.5px;
  color: var(--cc-muted);
  line-height: 1.5;
}

/* links */

.cc-footLinks{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
}

.cc-footLink{
  display:flex;
  align-items:center;
  gap:8px;
  font-size: 13px;
  color: var(--cc-ink);
  text-decoration:none;
  font-weight:600;
}

.cc-footLink i{
  color: var(--cc-forest);
}

/* dotxpertise logo */

.cc-dotLogo{
  height:40px;
}

/* copyright */

.cc-copy{
  text-align:center;
  font-size: 12px;
  color: var(--cc-muted);
}

/* =========================================================
   REVIEWS SLIDER (MOBILE)
   ========================================================= */
.cc-reviews{ padding: 10px 0; }

.cc-reviewSummary{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:8px;
}

.cc-reviewScore{
  font-size:34px;
  font-weight:900;
  color:var(--cc-ink);
  line-height:1;
}

.cc-reviewMeta{ color:var(--cc-muted); font-size:12px; }
.cc-stars{ color:#fbbc05; letter-spacing:2px; font-size:14px; }

/* Slider container */
.cc-slider{
  margin-top: 12px;
}

.cc-track{
  display:flex;
  gap: 12px;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}

.cc-track::-webkit-scrollbar{ height: 6px; }
.cc-track::-webkit-scrollbar-thumb{
  background: rgba(60,64,67,.18);
  border-radius: 999px;
}

/* each slide */
.cc-slide{
  flex: 0 0 88%;
  scroll-snap-align: start;
}

.cc-rCard{
  background:#fff;
  border:1px solid rgba(60,64,67,.12);
  border-radius:18px;
  box-shadow:0 1px 2px rgba(60,64,67,.08);
  padding: 12px;
  min-height: 130px;
}

.cc-rTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 8px;
}

.cc-avatar{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#fff;
  background: var(--cc-forest);
  flex: 0 0 auto;
}

.cc-rWho{
  min-width:0;
  flex: 1 1 auto;
}

.cc-rName{
  font-weight: 900;
  font-size: 13px;
  color: var(--cc-ink);
  line-height:1.1;
}

.cc-rSub{
  font-size: 12px;
  color: var(--cc-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.cc-rText{
  margin:0;
  font-size: 12.8px;
  line-height: 1.5;
  color: var(--cc-muted);
}

/* Dots */
.cc-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top: 10px;
}

.cc-dot{
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(60,64,67,.18);
}

.cc-dot.is-active{
  width: 18px;
  background: rgba(243,108,12,.85);
}

/* ========================================
   PREMIUM STICKY CTA BAR
======================================== */

.cc-sticky{
position:fixed;
left:0;
right:0;
bottom:0;
z-index:100;

padding:12px;

background:rgba(246,248,251,.92);
backdrop-filter:blur(12px);

border-top:1px solid rgba(60,64,67,.10);
}

.cc-stickyInner{
max-width:560px;
margin:auto;

display:grid;
grid-template-columns:1fr 1.2fr 1fr;
gap:10px;
}

/* Base button */

.cc-stBtn{
min-height:54px;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:4px;

border-radius:18px;

font-weight:800;
font-size:12.5px;

text-decoration:none;

border:1px solid rgba(60,64,67,.12);
background:#fff;

box-shadow:
0 4px 14px rgba(15,23,42,.08),
0 1px 2px rgba(60,64,67,.10);

transition:all .15s ease;
}

.cc-stBtn i{
font-size:18px;
}

/* Call */

.cc-stBtn--call i{
color:var(--cc-forest);
}

/* WhatsApp (Primary CTA) */

.cc-stBtn--wa{
background:#2b8a4b;
color:#fff;

border-color:#2b8a4b;

box-shadow:
0 10px 24px rgba(38,139,73,.30),
0 1px 2px rgba(0,0,0,.08);
}

.cc-stBtn--wa i{
color:#fff;
}

/* Send details */

.cc-stBtn--form{
background:rgba(243,108,12,.10);
border-color:rgba(243,108,12,.28);
color:var(--cc-ink);
}

.cc-stBtn--form i{
color:var(--cc-orange);
}

/* Tap animation */

.cc-stBtn:active{
transform:scale(.97);
}

/* small phones */

@media (max-width:360px){

.cc-stBtn{
font-size:11.5px;
}

.cc-stBtn i{
font-size:16px;
}

}



/* ===== Responsive FIX: Vehicle cards become swipe slider on mobile ===== */
@media (max-width: 420px){
  .cc-vehGrid{
    display:flex;
    gap:12px;
    overflow-x:auto;
    padding-bottom:6px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }
  .cc-vehGrid::-webkit-scrollbar{ height:6px; }
  .cc-vehGrid::-webkit-scrollbar-thumb{
    background: rgba(60,64,67,.18);
    border-radius:999px;
  }

  .cc-vehCard{
    flex: 0 0 150px;     /* important */
    scroll-snap-align:start;
  }
}

/* ===== Responsive FIX: Table never cuts last column ===== */
.cc-tableWrap{
  overflow-x:auto;                 /* force */
  -webkit-overflow-scrolling:touch;
}

.cc-table{
  min-width: 560px;                /* important so 4H doesn't disappear */
}
@media (max-width: 420px){
  .cc-table thead th,
  .cc-table tbody th,
  .cc-table td{
    padding: 10px 10px;
    font-size: 12.3px;
  }
}

/* ===== Responsive FIX: Sticky bar safe spacing ===== */
:root{
  --cc-sticky-h: 86px; /* approximate sticky height */
}

body{
  padding-bottom: calc(var(--cc-sticky-h) + env(safe-area-inset-bottom));
}

/* If you already added padding in sections, keep it smaller to avoid double spacing */
.cc-details{ padding-bottom: 24px; }  /* remove big padding here */
.cc-footer{ padding-bottom: 24px; }   /* remove big padding here */


/* ===== Sticky compact mode ===== */
@media (max-width: 360px){
  .cc-sticky{ padding:10px; }
  .cc-stickyInner{ gap:8px; }
  .cc-stBtn{
    min-height: 52px;
    border-radius: 16px;
    font-size: 11.8px;
  }
  
  
  /* ===== Sticky compact mode ===== */
@media (max-width: 360px){
  .cc-sticky{ padding:10px; }
  .cc-stickyInner{ gap:8px; }
  .cc-stBtn{
    min-height: 52px;
    border-radius: 16px;
    font-size: 11.8px;
  }
}
}

/* FIX: FastLine alignment on mobile */



/* icon bubble */



/* keep bold readable and aligned */
.cc-fastLine b{
  color:#111318;
  font-weight:700;
}