* { box-sizing: border-box; }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 3px solid #4CAF50;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-logo img {
  height: 80px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #0F4C81;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #4CAF50;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.get-btn {
  background: linear-gradient(135deg, #2E7D32, #8BC34A);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #0F4C81;
  background: none;
  border: none;
}

.get-btn.tablet-btn {
  display: none;
}

.mobile-only {
  display: none;
}

@media (max-width: 900px) {
  .get-btn.desktop-btn { display: none; }
  .get-btn.tablet-btn { display: block; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .get-btn.tablet-btn { display: none; }
  .hamburger { display: block; }
  .mobile-only { display: inline-block; }
}

/* ==============================
   DROPDOWN MENU
   ============================== */
#mobileMenu {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 1100;
  text-align: center;
}

#mobileMenu a {
  display: block;
  padding: 10px;
  color: #0F4C81;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

#mobileMenu a:hover { color: #4CAF50; }

#mobileMenu .menu-get-btn {
  display: inline-block;
  margin-top: 15px;
  background: linear-gradient(135deg, #2E7D32, #8BC34A);
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

#mobileMenu.show-menu {
  display: block !important;
}