/* ===== NAVBAR CLEAN ===== */

.navbar{
  background:#ffffff;
  box-shadow:0 4px 15px rgba(0,0,0,0.08);
  position:sticky;
  top:0;
  z-index:999;
}

.nav-container{
  max-width:1200px;
  margin:auto;
  height:70px;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.nav-logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.nav-logo img{
  height:40px;
  width:auto;
}

.brand-text{
  display:flex;
  flex-direction:column;
}

.brand-text .main{
  font-size:18px;
  font-weight:700;
  color:#1e3a8a;
}

.brand-text .sub{
  font-size:12px;
  color:#e11d48;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:20px;
}

.nav-menu a{
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  color:#1e3a8a;
  padding:8px 12px;
  border-radius:6px;
  transition:0.2s;
}

.nav-menu a:hover{
  background:#eff6ff;
  color:#2563eb;
}

.btn-book{
  background:#e11d48;
  color:#fff !important;
  padding:8px 16px;
  border-radius:8px;
}

.btn-book:hover{
  background:#be123c;
}

.track-link{
  color:#16a34a !important;
  font-weight:700;
}

.call-btn{
  padding:8px 14px;
  background:#16a34a;
  color:#fff;
  border-radius:20px;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
}