/* ========================
   Top Bar Styles 
======================== */
.top-bar {
  background: #333;
  color: rgba(255,255,255,0.8);
  padding: 10px 0;
  font-size: 0.9rem;
}

.top-bar-content {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.top-bar-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-link:hover {
  color: #9f7e5e;
}

.phone-icon,
.whatsapp-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .top-bar {
      display: none;
  }
}

/* ========================
 Main Header Styles 
======================== */
.main-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar-brand img {
  max-height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.nav-item {
  margin: 0 10px;
  position: relative;
}

.nav-link {
  color: #333 !important;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 10px 15px !important;
}

.nav-link:hover {
  color: #9f7e5e !important;
}

/* ===== Dropdown Styles ===== */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: block;
  visibility: hidden;
  background: #f8f9fa;
  min-width: 220px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-header {
  color: #9f7e5e !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  margin-top: 0.25rem;
  background: rgba(159, 126, 94, 0.05);
}

.dropdown-item {
  transition: all 0.2s ease;
  color: #333 !important;
  padding: 0.5rem 1.5rem;
}

.dropdown-item:hover {
  background: #9f7e5e !important;
  color: #fff !important;
  padding-left: 2rem;
}

.enquiry-btn {
  background: #9f7e5e;
  color: white !important;
  padding: 8px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid #9f7e5e;
}

.enquiry-btn:hover {
  background: #8b6e53;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(159, 126, 94, 0.3);
  border-color: #8b6e53;
}

.offcanvas {
  border-radius: 20px 0 0 20px;
}

.navbar-toggler {
  border: none;
  padding: 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 991px) {
  .main-header {
      padding: 10px 0;
  }
  
  .navbar-brand img {
      height: 45px;
  }

  .enquiry-btn {
      margin-left: 0;
      margin-top: 15px;
      width: 100%;
  }
}