/* =========================================================
   SUZUKI HABIB MOTORS - MOTORCYCLE CSS (FINAL FIXED)
   Desktop: Suzuki left | menu center | Habib right
   Mobile : Suzuki hidden | toggler left | Habib right | menu below
========================================================= */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* WRAP */
.sz-wrap {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* TOPBAR */
.sz-topbar {
  width: 100%;
  background: #f2f2f2;
  border-bottom: 1px solid #e6e6e6;
  font-size: 14px;
  position: sticky;
  top: 0;
  z-index: 1100;
}

.sz-topbar .container-fluid.sz-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 38px;
}

.sz-top-left,
.sz-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sz-topbar a {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: .25s ease;
}

.sz-topbar a:hover {
  color: #0b63a8;
}

.sz-top-sep {
  width: 1px;
  height: 16px;
  background: #cfcfcf;
  display: inline-block;
}

.phone-box {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 0;
}

.phone-number {
  display: none;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 4px 10px;
  border-radius: 9px;
  line-height: 1;
}

.sz-whatsapp {
  color: #25D366 !important;
  font-weight: 900;
}

.sz-whatsapp:hover {
  color: #128C7E !important;
}

/* NAVBAR */
.sz-navbar {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 8px 0 !important;
  margin: 0 !important;
  position: sticky;
  top: 38px;
  z-index: 1090;
}

/* Desktop layout */
.sz-navbar .container-fluid.sz-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 40px;
}

/* logos */
.sz-left-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.sz-left-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
}

.sz-right-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sz-right-logo img {
  height: 45px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

/* menu */
#mainNav {
  justify-content: center;
}

.sz-nav .nav-link {
  color: #0f172a !important;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 10px 16px !important;
  letter-spacing: .3px;
  transition: .25s ease;
}

.sz-nav .nav-link:hover {
  color: #0b63a8 !important;
}

.sz-active {
  color: #0b63a8 !important;
  font-weight: 900 !important;
}

/* dropdown */
.sz-navbar .dropdown-menu {
  border-radius: 10px;
  border: 1px solid #eee;
  padding: 10px;
  min-width: 240px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.sz-navbar .dropdown-item {
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 14px;
}

.sz-navbar .dropdown-item:hover {
  background: #f3f7ff;
  color: #0b63a8;
}

/* TITLE BAR */
.bike-hero {
  background: #0d3f4f;
  text-align: center;
  margin: 0;
  padding: 30px 0;
}

.bike-hero h2 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  margin: 0;
  letter-spacing: 1px;
}

/* BIKE CARDS */
.bike-card {
  background: #f2f2f2;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 90px 22px 22px;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}

.bike-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bike-price {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 1px;
  padding: 22px 0;
  background: linear-gradient(180deg, #0b63a8 0%, #084b7a 100%);
}

.bike-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 10px 0;
}

.bike-img img {
  max-height: 220px;
  width: 100%;
  object-fit: contain;
}

.bike-logo {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 18px;
}

.bike-logo img {
  max-height: 65px;
  max-width: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.10));
}

.bike-btns {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 15px;
}

.bike-btns .btn {
  padding: 5px 18px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 500;
}

.bike-btns .btn-outline-primary {
  border-width: 2px;
}

/* =========================
   7) FOOTER + MAP
========================= */
.sz-footer{
  margin-top:40px;
  background:#083a55;
  color:#eaf2f7;
}

.sz-footer-top{
  padding:55px 0 40px;
}

.sz-footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:30px;
  align-items:start;
  margin-bottom:30px;
}

.sz-f-logo{
  height:50px;
  width:auto;
  object-fit:contain;
  display:block;
  margin-bottom:12px;
}

.sz-f-text{
  margin:0 0 18px;
  font-size:14px;
  color:#cfe3ee;
  line-height:1.6;
}

.sz-f-title{
  font-size:18px;
  font-weight:500;
  margin:0 0 14px;
  color:#fff;
  position:relative;
  padding-bottom:10px;
}

.sz-f-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:55px;
  height:3px;
  background:#0b63a8;
  border-radius:10px;
}

.sz-f-links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.sz-f-links a{
  color:#cfe3ee;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
  transition:.25s ease;
}

.sz-f-links a i{
  color:#7fd4ff;
  font-size:13px;
}

.sz-f-links a:hover{
  color:#fff;
  transform:translateX(4px);
}

.sz-f-social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.sz-f-social a{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.12);
  color:#fff;
  text-decoration:none;
  transition:.25s ease;
}
.sz-f-social a:hover{
  background:#0b63a8;
  transform:translateY(-2px);
}

.sz-f-cta{
  margin-top:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.sz-f-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  height:40px;
  padding:0 14px;
  border-radius:10px;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  transition:.25s ease;
}
.sz-f-btn:hover{ filter:brightness(0.95); }

.sz-f-btn-outline{
  background:transparent;
  border:2px solid rgba(255,255,255,0.35);
}
.sz-f-btn-outline:hover{ border-color:#fff; }

/* Map */
.sz-f-map{
  margin-top:10px;
}
.sz-map-wrapper{
  width:100%;
  height:260px;
  border-radius:14px;
  overflow:hidden;
  border:2px solid rgba(255,255,255,0.15);
}
.sz-map-wrapper iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* Bottom */
.sz-footer-bottom{
  border-top:1px solid rgba(255,255,255,0.12);
  padding:14px 0;
  background:#062c41;
}

.sz-f-bottom-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  flex-wrap:wrap;
}

.sz-f-copy{
  margin:0;
  font-size:13px;
  color:#cfe3ee;
}

.sz-f-mini-links{
  display:flex;
  align-items:center;
  gap:10px;
}
.sz-f-mini-links a{
  color:#cfe3ee;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
}
.sz-f-mini-links a:hover{ color:#fff; }

.sz-f-dot{ color:#87a9bc; }

/* =========================
   RESPONSIVE (UPDATED)
========================= */
@media (max-width:1200px){
  .sz-wrap{ padding-left:25px; padding-right:25px; }
  .sz-cards-grid{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width:991px){
  .sz-topbar .container-fluid{
    flex-direction:column;
    gap:6px;
    padding:6px 0;
  }
  .sz-top-left, .sz-top-right{ justify-content:center; }
  .sz-top-sep{ display:none; }

  .sz-navbar{
    top:76px;
  }
  .sz-navbar .container-fluid.sz-wrap{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    row-gap:8px;
  }

  #carouselExampleDark .carousel-item{ height:190px; }

  .sz-footer-grid{ grid-template-columns:1fr 1fr; }
}

/* ✅ MOBILE FIX: topbar one-line + toggler left + habib right */
@media (max-width:600px){

  .sz-wrap{ padding-left:14px; padding-right:14px; }

  /* ===== TOPBAR ONE LINE ===== */
  .sz-topbar .container-fluid{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:space-between !important;
    flex-wrap:nowrap !important;
    gap:10px !important;
    padding:8px 12px !important;
    min-height:36px !important;
  }

  .sz-top-left,
  .sz-top-right{
    display:flex !important;
    align-items:center !important;
    flex-wrap:nowrap !important;
    white-space:nowrap !important;
    gap:10px !important;
  }

  /* left icons scroll if extra */
  .sz-top-left{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  .sz-top-left::-webkit-scrollbar{ display:none; }

  /* separators visible */
  .sz-top-sep{
    display:inline-block !important;
    width:1px !important;
    height:14px !important;
    background:#cfcfcf !important;
  }

  .phone-number{ display:none !important; }
  .sz-topbar a{ font-size:13px !important; }

  /* ===== NAVBAR LAYOUT ===== */
  .sz-navbar{ top:36px; } /* because topbar becomes one line */

  /* Hide Suzuki logo on mobile */
  .sz-left-logo{ display:none !important; }

  /* Toggler LEFT + Habib RIGHT */
  .sz-navbar .container-fluid.sz-wrap{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    flex-wrap:wrap !important;
    gap:10px !important;
  }

  .navbar-toggler{
    order:1 !important;
    margin:0 !important;
  }

  .sz-right-logo{
    order:2 !important;
    margin-left:auto !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
  }
  .sz-right-logo img{
    height:32px !important;
    max-width:140px !important;
  }

  /* menu below full width */
  .navbar-collapse{
    order:3 !important;
    width:100% !important;
    flex-basis:100% !important;
  }

  /* your existing mobile layout */
  .sz-cards-grid{ grid-template-columns:1fr; }
  .sz-footer-grid{ grid-template-columns:1fr; }
  .sz-f-bottom-wrap{ justify-content:center; text-align:center; }
}