   /* ── COMPACT MODERN HERO BANNER V2 ── */

.modern-hero-v2{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  padding:24px;
  background:
    radial-gradient(circle at top right, rgba(230,57,70,.10), transparent 30%),
    radial-gradient(circle at bottom left, rgba(0,119,182,.08), transparent 30%),
    linear-gradient(135deg,#ffffff 0%,#f4f8ff 50%,#eef5ff 100%);
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  border:1px solid rgba(255,255,255,.5);
}

.modern-hero-v2::before{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  background:rgba(230,57,70,.05);
  border-radius:50%;
  top:-120px;
  right:-100px;
}

.modern-hero-v2::after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  background:rgba(29,53,87,.05);
  border-radius:50%;
  bottom:-100px;
  left:-80px;
}

.hero-v2-content{
  position:relative;
  z-index:2;
}

.hero-v2-badge-wrap{
  display:flex;
  gap:8px;
  align-items:center;
  margin-bottom:10px;
  flex-wrap:wrap;
}

.hero-v2-badge{
  background:linear-gradient(135deg,#e63946,#c1121f);
  color:#fff;
  padding:5px 12px;
  border-radius:40px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.4px;
}

.hero-v2-offer{
  background:rgba(45,198,83,.12);
  color:#2dc653;
  padding:5px 10px;
  border-radius:40px;
  font-size:10px;
  font-weight:700;
}

.hero-v2-title{
  font-size:2.2rem;
  line-height:1.08;
  font-weight:900;
  color:#1d3557;
  margin-bottom:10px;
}

.hero-v2-highlight{
  color:#e63946;
}

.hero-v2-desc{
  color:#5f6b7a;
  font-size:14px;
  line-height:1.5;
  max-width:460px;
  margin-bottom:18px;
}

.hero-v2-specs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-bottom:18px;
}

.hero-v2-spec{
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(8px);
  border-radius:14px;
  padding:12px;
  border:1px solid rgba(0,0,0,.05);
  transition:.25s ease;
  text-align:center;
}

.hero-v2-spec:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,.06);
}

.hero-v2-spec i{
  color:#e63946;
  font-size:15px;
  margin-bottom:6px;
}

.hero-v2-spec-value{
  font-size:15px;
  font-weight:800;
  color:#1d3557;
}

.hero-v2-spec-label{
  font-size:10px;
  color:#7b7b7b;
}

.hero-v2-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.hero-v2-btn-primary{
  border:none;
  background:linear-gradient(135deg,#e63946,#c1121f);
  color:#fff;
  padding:11px 22px;
  border-radius:50px;
  font-size:12px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(230,57,70,.18);
}

.hero-v2-btn-secondary{
  border:1px solid #d9dfe7;
  background:#fff;
  color:#1d3557;
  padding:11px 20px;
  border-radius:50px;
  font-size:12px;
  font-weight:700;
}

.hero-v2-image-wrap{
  position:relative;
  z-index:2;
}

.hero-v2-bike{
  width:100%;
  max-height:250px;
  object-fit:contain;
  filter:drop-shadow(0 15px 25px rgba(0,0,0,.16));
}

.hero-v2-floating{
  position:absolute;
  background:#fff;
  border-radius:14px;
  padding:8px 12px;
  box-shadow:0 10px 20px rgba(0,0,0,.08);
  font-size:11px;
  font-weight:700;
}

.hero-v2-floating-top{
  top:10px;
  right:0;
}

.hero-v2-floating-bottom{
  bottom:0;
  left:0;
}

.hero-v2-sidecard{
  position:relative;
  z-index:2;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  border-radius:20px;
  padding:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.hero-v2-sidebadge{
  display:inline-block;
  background:#1d3557;
  color:#fff;
  padding:5px 10px;
  border-radius:40px;
  font-size:9px;
  font-weight:700;
}

.hero-v2-car-title{
  font-size:18px;
  font-weight:800;
  color:#1d3557;
  margin:10px 0 8px;
}

.hero-v2-range{
  font-size:12px;
  color:#666;
}

.hero-v2-price{
  font-size:18px;
  font-weight:900;
  margin:10px 0 12px;
  color:#111;
}

.hero-v2-carimg{
  width:100%;
  border-radius:14px;
}

.hero-v2-viewbtn{
  width:100%;
  border:none;
  background:#1d3557;
  color:#fff;
  border-radius:12px;
  padding:10px;
  font-size:12px;
  font-weight:700;
  margin-top:12px;
}

.hero-v2-mini{
  display:flex;
  justify-content:space-between;
  margin-top:14px;
  padding-top:12px;
  border-top:1px dashed rgba(0,0,0,.12);
}

.hero-v2-mini strong{
  display:block;
  color:#1d3557;
  font-size:13px;
}

.hero-v2-mini span{
  font-size:9px;
  color:#777;
}

@media(max-width:991px){

  .hero-v2-title{
    font-size:1.9rem;
  }

  .hero-v2-specs{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-v2-sidecard{
    margin-top:16px;
  }
}

@media(max-width:767px){

  .modern-hero-v2{
    padding:18px;
  }

  .hero-v2-title{
    font-size:1.6rem;
  }

  .hero-v2-specs{
    grid-template-columns:1fr;
  }

  .hero-v2-actions{
    flex-direction:column;
  }

  .hero-v2-btn-primary,
  .hero-v2-btn-secondary{
    width:100%;
  }

  .hero-v2-floating{
    display:none;
  }

  .hero-v2-bike{
    max-height:200px;
  }
}


/* ── SIDEBAR VEHICLE STACK ── */

.sidebar-vehicle-stack{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-top:18px;
}

.sidebar-vehicle-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  transition:.25s ease;
  border:1px solid rgba(0,0,0,.04);
}

.sidebar-vehicle-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(0,0,0,.10);
}

.sidebar-vehicle-img{
  width:100%;
  height:140px;
  object-fit:cover;
  background:#f5f7fb;
}

.sidebar-vehicle-content{
  padding:14px;
}

.sidebar-vehicle-name{
  font-size:15px;
  font-weight:800;
  color:#1d3557;
  margin-bottom:4px;
}

.sidebar-vehicle-price{
  font-size:13px;
  font-weight:700;
  color:#e63946;
}

/* ─────────────────────────────
   RESPONSIVE SIDEBAR FIX
───────────────────────────── */

@media(max-width:991px){

  .sidebar-vehicle-stack{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:24px;
  }

  .sidebar-vehicle-card{
    height:100%;
  }

  .sidebar-vehicle-img{
    height:180px;
  }

}

@media(max-width:767px){

  .sidebar-vehicle-stack{
    grid-template-columns:1fr;
    gap:16px;
  }

  .sidebar-vehicle-img{
    height:220px;
  }

  .sidebar-vehicle-content{
    padding:16px;
  }

  .sidebar-vehicle-name{
    font-size:16px;
  }

  .sidebar-vehicle-price{
    font-size:14px;
  }

}

.sidebar-ad-image{
  width:100%;
  height:90px;
  object-fit:cover;
  border-radius:10px;
  margin:10px 0;
  display:block;
}

@media(max-width:480px){

  .sidebar-vehicle-img{
    height:180px;
  }

}

.ad-card{
  width:100%;
  max-width:340px;
  border-radius:14px;
  padding:16px;
  overflow:hidden;
}

/* Image wrapper */
.ad-image-wrapper{
  position:relative;
  width:100%;
  margin:8px 0;
}

/* Responsive image */
.ad-image{
  width:100%;
  height:auto;
  max-height:65px;
  object-fit:contain;
  border-radius:6px;
  opacity:.9;
  display:block;
}

/* AD badge */
.ad-badge{
  position:absolute;
  top:6px;
  right:6px;

  background:rgba(0,0,0,.75);
  color:#fff;

  font-size:10px;
  font-weight:700;

  padding:4px 7px;
  border-radius:4px;

  line-height:1;
  z-index:2;

  backdrop-filter:blur(4px);
}

/* Button */
.btn-quote{
  width:100%;
  border:none;
  border-radius:8px;
  padding:10px 14px;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
}

/* Tablet */
@media (max-width:768px){

  .ad-card{
    max-width:100%;
    padding:14px;
  }

  .ad-image{
    max-height:60px;
  }

  .ad-badge{
    font-size:9px;
    padding:3px 6px;
  }

  .btn-quote{
    font-size:13px;
    padding:9px 12px;
  }
}

/* Mobile */
@media (max-width:480px){

  .ad-card{
    padding:12px;
    border-radius:12px;
  }

  .ad-image{
    max-height:52px;
  }

  .ad-badge{
    top:5px;
    right:5px;
    font-size:8px;
    padding:3px 5px;
  }

  .btn-quote{
    font-size:12px;
    padding:8px 10px;
  }

  .ad-card h6{
    font-size:14px;
    line-height:1.4;
  }
}







/* =========================================
HERO SLIDER
========================================= */

.main-hero-banner{
    position:relative;
}

.hero-slide{
    position:relative;
    overflow:hidden;
    border-radius:24px;
}

.hero-banner-img{
    width:100%;
    height:520px;
    object-fit:cover;
    display:block;
}

/* OVERLAY */

.hero-overlay-content{
    position:absolute;
    top:50%;
    left:60px;

    transform:translateY(-50%);

    max-width:500px;

    z-index:5;
}

.hero-overlay-content h2{
    font-size:4rem;
    font-weight:900;
    line-height:1.05;

    color:#fff;

    margin-bottom:18px;
}

.hero-overlay-content h2 span{
    color:#ff2e43;
}

.hero-overlay-content p{
    color:rgba(255,255,255,0.92);

    font-size:18px;
    line-height:1.7;

    margin-bottom:28px;
}

.hero-badge{
    display:inline-block;

    background:linear-gradient(
        90deg,
        #7b2ff7,
        #f107a3
    );

    color:#fff;

    padding:10px 18px;

    border-radius:40px;

    font-size:12px;
    font-weight:700;

    margin-bottom:20px;
}

.btn-hero-banner{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#ff2e43;
    color:#fff;

    padding:14px 26px;

    border-radius:14px;

    text-decoration:none;

    font-size:14px;
    font-weight:700;

    transition:0.3s;
}

.btn-hero-banner:hover{
    background:#d90429;
    color:#fff;

    transform:translateY(-2px);
}

/* CONTROLS */

.custom-control{
    width:50px;
    height:50px;

    background:rgba(0,0,0,0.45);

    border-radius:50%;

    top:50%;
    transform:translateY(-50%);

    opacity:1;
}

.carousel-control-prev{
    left:20px;
}

.carousel-control-next{
    right:20px;
}

.custom-control i{
    font-size:18px;
    color:#fff;
}

/* INDICATORS */

.custom-indicators{
    bottom:18px;
}

.custom-indicators button{
    width:10px !important;
    height:10px !important;

    border-radius:50%;

    background:#fff !important;

    opacity:0.5;
}

.custom-indicators .active{
    opacity:1;
    width:30px !important;
    border-radius:20px;
}

/* DARK OVERLAY */

.hero-slide::before{
    content:'';

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.05) 100%
    );

    z-index:1;
}

/* MOBILE */

@media(max-width:991px){

    .hero-banner-img{
        height:420px;
    }

    .hero-overlay-content{
        left:35px;
        max-width:420px;
    }

    .hero-overlay-content h2{
        font-size:3rem;
    }
}

@media(max-width:767px){

    .hero-slide{
        border-radius:18px;
    }

    .hero-banner-img{
        height:500px;
        object-fit:cover;
    }

    .hero-overlay-content{
        left:20px;
        right:20px;

        max-width:100%;
    }

    .hero-overlay-content h2{
        font-size:2rem;
    }

    .hero-overlay-content p{
        font-size:14px;
    }

    .btn-hero-banner{
        width:100%;
        justify-content:center;
    }

    .custom-control{
        display:none;
    }
}

/* =========================================
SLIDER NAVIGATION
========================================= */

.custom-control{
    width:34px !important;
    height:34px !important;

    background:rgba(0,0,0,0.38) !important;

    border-radius:50% !important;

    top:50% !important;
    transform:translateY(-50%) !important;

    opacity:1 !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
}

.custom-control i{
    font-size:12px !important;
    color:#fff !important;
}

.carousel-control-prev.custom-control{
    left:12px !important;
}

.carousel-control-next.custom-control{
    right:12px !important;
}

/* =========================================
DOTS
========================================= */

.custom-indicators button{
    width:8px !important;
    height:8px !important;

    border-radius:50% !important;

    margin:0 4px !important;

    background:#fff !important;

    opacity:0.5 !important;

    border:none !important;
}

.custom-indicators .active{
    width:20px !important;
    height:8px !important;

    border-radius:20px !important;

    opacity:1 !important;
}

/* =========================================
MOBILE
========================================= */

@media(max-width:767px){

    .custom-control{
        width:28px !important;
        height:28px !important;
    }

    .custom-control i{
        font-size:10px !important;
    }

    .carousel-control-prev.custom-control{
        left:6px !important;
    }

    .carousel-control-next.custom-control{
        right:6px !important;
    }

    .custom-indicators button{
        width:6px !important;
        height:6px !important;
    }

    .custom-indicators .active{
        width:16px !important;
        height:6px !important;
    }
}