/* Fixed Navigation Styles */
.fixed-navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 10px 0;
}

.fixed-navbar .site-navigation {
  padding: 5px 0;
}

.fixed-navbar .logo img {
  height: 45px !important;
}

.fixed-navbar .site-menu > li > a {
  color: rgba(0, 0, 0, 0.9) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.fixed-navbar .site-menu > li > a:hover {
  color: #fd7e14 !important;
}

.fixed-navbar .site-menu > li.active > a {
  color: #fd7e14 !important;
}

.fixed-navbar .call-us {
  color: rgba(0, 0, 0, 0.9) !important;
  font-weight: 500;
}

.fixed-navbar .call-us:hover {
  color: #fd7e14 !important;
}

/* Mobile menu toggle for fixed navbar */
.site-navbar-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1031;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 8px;
  display: none;
}

@media (max-width: 991.98px) {
  .site-navbar-toggle {
    display: block;
  }
  
  .fixed-navbar .site-menu {
    display: none;
  }
}

/* Add padding to body to account for fixed navbar */
body {
  padding-top: 80px;
}

/* Dropdown styles for fixed navbar */
.fixed-navbar .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.fixed-navbar .dropdown-menu a {
  color: rgba(0, 0, 0, 0.9) !important;
}

.fixed-navbar .dropdown-menu a:hover {
  color: #fd7e14 !important;
  background: rgba(253, 126, 20, 0.1);
} 