/* =========================
   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;
  background:transparent;
  border:none;
  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;
}

/* WhatsApp */
.sz-whatsapp{
  color:#25D366 !important;
  font-weight:900;
}

.sz-whatsapp:hover{
  color:#128C7E !important;
}

/* =========================
   4) 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;
}

.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{
  display:flex;
  align-items:center;
}

/* NAV ITEM (IMPORTANT FOR DIVIDER) */
.sz-nav .nav-item{
  position:relative;
}

/* DIVIDER LINE */
.sz-nav .nav-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:22px;
  background:linear-gradient(to bottom, transparent, #d1d5db, transparent);
}

/* NAV LINKS STYLE */
.sz-nav .nav-link{
  color:#0f172a !important;
  font-weight:800;
  font-size:15px;
  text-transform:uppercase;
  white-space:nowrap;
  padding:10px 20px !important;
  letter-spacing:.3px;
  transition:.25s ease;
  text-decoration:none !important;
}

.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) RESPONSIVE
========================= */
@media (max-width:1200px){
  .sz-wrap{
    padding-left:25px;
    padding-right:25px;
  }
}

@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;
  }

  /* REMOVE DIVIDER ON MOBILE */
  .sz-nav .nav-item::after{
    display:none;
  }
}

/* =========================
   6) MOBILE FIX
========================= */
@media (max-width:600px){
  .sz-wrap{
    padding-left:14px;
    padding-right:14px;
  }

  .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;
  }

  .sz-top-left{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }

  .sz-top-left::-webkit-scrollbar{
    display:none;
  }

  .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;
  }

  .sz-left-logo{
    display:none !important;
  }

  .sz-navbar{
    top:36px !important;
  }

  .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;
  }

  .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;
  }

  .navbar-collapse{
    order:3 !important;
    width:100% !important;
    flex-basis:100% !important;
  }
}