/* =========================================================
   SUZUKI HABIB MOTORS - CLEAN FINAL CSS (FIXED)
   - Desktop: Suzuki left | menu center | Habib right
   - Mobile: Suzuki hidden | toggler left | Habib right | menu below
   - Topbar mobile: one-line (no wrap)
========================================================= */

/* =========================
   1) GLOBAL RESET
========================= */
*{ margin:0; padding:0; box-sizing:border-box; }

body{
  margin:0;
  padding:0;
  overflow-x:hidden;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

img{ max-width:100%; height:auto; display:block; }

/* =========================
   2) WRAPPER
========================= */
.sz-wrap{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  padding-left:40px;
  padding-right:40px;
}

/* =========================
   3) TOP BAR
========================= */
.sz-topbar{
  width:100%;
  background:#f2f2f2;
  border-bottom:1px solid #e6e6e6;
  font-size:14px;
  position:sticky;
  top:0;
  z-index:1100;
}

/* IMPORTANT: your HTML is <div class="container-fluid sz-wrap"> */
.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 */
.phone-box{
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
}
.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;
}

/* WhatsApp */
.sz-whatsapp{ color:#25D366 !important; font-weight:900; }
.sz-whatsapp:hover{ color:#128C7E !important; }

/* =========================
   4) NAVBAR (STICKY)
========================= */
.sz-navbar{
  width:100%;
  background:#fff;
  border-bottom:1px solid #e8e8e8;
  padding:8px 0 !important;
  margin:0 !important;
  position:sticky;
  top:38px;              /* topbar height */
  z-index:1090;
}

/* Desktop layout: Suzuki | Menu | Habib */
.sz-navbar .container-fluid.sz-wrap{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  column-gap:22px;
}

/* Left Suzuki logo */
.sz-left-logo{
  display:flex;
  align-items:center;
}
.sz-left-logo img{
  height:40px;
  width:auto;
  object-fit:contain;
  display:block;
}

/* Center menu */
#mainNav{ justify-content:center; }

/* Right Habib logo */
.sz-right-logo{
  display:flex;
  align-items:center;
  justify-content:flex-end;
}
.sz-right-logo img{
  height:40px;
  width:auto;
  max-width:200px;
  object-fit:contain;
  display:block;
}

/* Nav Links */
.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;
}

/* =========================
   5) TITLE BARS
========================= */
.bike-hero,
.pp-hero,
.boat-hero{
  background:#0d3f4f;
  text-align:center;
  margin:0;
  padding:30px 0;
}

.bike-hero h2,
.pp-hero h2,
.boat-hero h2{
  color:#fff;
  font-size:40px;
  font-weight:800;
  margin:0;
  letter-spacing:1px;
}

/* =========================
   6) 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) PRODUCTS PRICE PAGE (pp-*)
========================= */
.pp-wrap{
  background:#f3f4f6;
  padding:35px 0;
}
.pp-row{
  max-width:1200px;
  margin:0 auto 22px auto;
  background:#fff;
  display:grid;
  grid-template-columns:260px 1fr 220px;
  gap:18px;
  padding:22px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.pp-left{
  display:flex;
  align-items:center;
  justify-content:center;
}
.pp-left img{
  max-width:240px;
  width:100%;
  object-fit:contain;
}
.pp-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
.pp-table thead th{
  background:#f1f1f1;
  padding:12px;
  text-align:left;
  color:#0b3d4f;
  font-weight:800;
  border-bottom:1px solid #e6e6e6;
}
.pp-table tbody td{
  padding:14px 12px;
  border-bottom:1px solid #efefef;
}
.pp-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:18px;
}
.pp-btn{
  background:#0b3d4f;
  color:#fff;
  text-decoration:none;
  padding:10px 18px;
  border-radius:25px;
  font-weight:700;
  font-size:13px;
}
.pp-btn:hover{ opacity:.9; }
.pp-badge{
  width:140px;
  height:auto;
  object-fit:contain;
}

/* =========================
   1) GLOBAL RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  margin:0;
  padding:0;
  overflow-x:hidden;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* =========================
   2) WRAPPER / CONTAINER
========================= */
.sz-wrap{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  padding-left:40px;
  padding-right:40px;
}

/* =========================
   3) TOP BAR
========================= */
.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{
  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 */
.phone-box{
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
}

.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;
}

/* WhatsApp */
.sz-whatsapp{
  color:#25D366 !important;
  font-weight:900;
}
.sz-whatsapp:hover{
  color:#128C7E !important;
}

/* =========================
   4) NAVBAR (STICKY)
========================= */
.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;
}

.sz-navbar .container-fluid.sz-wrap{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  column-gap:22px;
}

.sz-left-logo img,
.sz-right-logo img{
  height:40px;
  width:auto;
  object-fit:contain;
  display:block;
}

.sz-right-logo img{
  max-width:200px;
}

/* Nav Links */
.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;
}
/* <!-- ================= PRODECTS CARD ================= --> */
/* ===== TITLE BAR ===== */
/* Title bar */
.pp-hero{
  background:#0b3d4f;
  padding:40px 0;
  text-align:center;
}
.pp-hero h2{
  color:#fff;
  margin:0;
  font-weight:800;
  letter-spacing:.4px;
}

/* page background */
.pp-wrap{
  background:#f3f4f6;
  padding:35px 0;
}

/* one product row */
.pp-row{
  max-width:1200px;
  margin:0 auto 22px auto;
  background:#fff;
  display:grid;
  grid-template-columns: 260px 1fr 220px;
  gap:18px;
  padding:22px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}

/* left car */
.pp-left{
  display:flex;
  align-items:center;
  justify-content:center;
}
.pp-left img{
  max-width:220px;
  width:100%;
  height:auto;
  object-fit:contain;
}
.pp-left img{
  max-width:240px;
}

/* center table */
.pp-table{
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
.pp-table thead th{
  background:#f1f1f1;
  padding:12px;
  text-align:left;
  color:#0b3d4f;
  font-weight:800;
  border-bottom:1px solid #e6e6e6;
}
.pp-table tbody td{
  padding:14px 12px;
  border-bottom:1px solid #efefef;
}

/* note */
.pp-note{
  margin-top:10px;
  font-size:12px;
  color:#111;
}
.pp-note .red{ color:#d10000; }

/* right side */
.pp-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:18px;
}

/* button */
.pp-btn{
  background:#0b3d4f;
  color:#fff;
  text-decoration:none;
  padding:10px 18px;
  border-radius:25px;
  font-weight:700;
  font-size:13px;
}
.pp-btn:hover{ opacity:.9; }

/* warranty logo */
.pp-badge{
  width:140px;
  height:auto;
  object-fit:contain;
}


/* <!-- ================= PRODECTS CARD END================= --> */

/* =========================
   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; /* topbar height increases in mobile */
  }
  .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 too many */
  .sz-top-left{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  .sz-top-left::-webkit-scrollbar{ display:none; }

  /* keep separators ON */
  .sz-top-sep{
    display:inline-block !important;
    width:1px !important;
    height:14px !important;
    background:#cfcfcf !important;
  }

  /* hide phone number */
  .phone-number{ display:none !important; }

  .sz-topbar a{ font-size:13px !important; }

  /* ===== NAVBAR FIX ===== */
  .sz-left-logo{ display:none !important; } /* Suzuki hide */

  .sz-navbar{
    top:36px !important; /* because topbar is now one line */
  }

  .sz-navbar .container-fluid.sz-wrap{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:10px !important;
    flex-wrap:wrap !important;
  }

  /* toggler LEFT */
  .navbar-toggler{
    order:1 !important;
    margin:0 !important;
  }

  /* Habib RIGHT */
  .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;
  }

  .sz-cards-grid{ grid-template-columns:1fr; }
  .sz-footer-grid{ grid-template-columns:1fr; }
  .sz-f-bottom-wrap{ justify-content:center; text-align:center; }
}

/* responsive */
@media (max-width: 992px){
  .pp-row{
    grid-template-columns: 1fr;
    text-align:left;
  }
  .pp-right{
    align-items:flex-start;
  }
}