header {
  position: sticky;
  top: 0;
  z-index: 9999; /* stays above all content */
  background: white;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 30px;
}

/* Logo */
.logo img {
  height: 40px;
}

/* Desktop navbar + contact */
.desktop-navbar {
  display: flex;
}

.desktop-navbar ul {
  font-size: large;
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.desktop-navbar li {
  position: relative;
}

.desktop-navbar a {
  text-decoration: none;
  color: var(--text-color);
  padding: 10px 5px;
}

/* Contact */
.desktop-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-btn {
  color: black;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1.1px;
  line-height: 1.8;
  transition: all 0.3s ease; /* smooth hover effect */
  background: white;
  border: 2px solid var(--orange-color);
}

.cta-btn:hover {
  transform: translateY(-2px);
  background-color: var(--orange-color);
  border: 2px solid white;
}

.phone {
  display: flex;
  align-items: center;
  justify-content: center; /* centers horizontally */
  gap: 8px; /* space between icon and number */
}

.phone img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-color);
  min-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  list-style: none;
  z-index: 100;
}

.dropdown .dropdown-menu {
  display: none;
}

.dropdown.open .dropdown-menu {
  display: block;
  margin-top: 20px;
  border-radius: 10px;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  border: 3px white solid;
}

.dropdown-menu li a:hover {
  border: 3px var(--orange-color) solid;
}

.bg-orange {
  background: var(--orange-color);
}

/* Hamburger always top-right */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
}

/* Mobile menu */
.mobile-navbar {
  display: none;
  background: var(--bg-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mobile-navbar ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
  text-align: left;
}

.mobile-navbar li {
  text-decoration: none;
  margin-bottom: 10px;
}

.mobile-navbar li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  border: 3px white solid;
  text-decoration: none;
}

.mobile-navbar li a:hover {
  border: 3px var(--orange-color) solid;
}

.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0px 40px 20px 40px !important;
}

/* Responsive */
@media (max-width: 1300px) {
  .desktop-navbar,
  .desktop-contact {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-navbar.active {
    display: block;
  }

  /* Dropdown menus in mobile */
  .mobile-navbar .dropdown-menu {
    text-align: center;
    position: relative;
    top: 0;
    box-shadow: none;
  }

  .dropdown-menu li a {
    text-align: left;
    display: block;
    padding: 4px 20px;
    color: var(--text-color);
  }

  .phone {
    justify-content: start; /* centers horizontally */
    padding-left: 10px !important;
  }
}

@media (max-width: 500px) {
  /* Logo */
  .logo img {
    height: 30px !important;
  }
}
