/* input your custom styles or overwrite css */
.nav-wrapper {
  width: 100%;
  background: #fff;
  font-size: 22px;
}

.top-bar {
  background: #162c59;
  color: #fff;
  padding: 8px 16px;
  font-size: 22px;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.top-contact {
  font-style: italic;
}

.top-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.top-menu .location-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.top-menu .fa {
  margin-right: 5px;
}

.top-menu .nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.main-header {
  padding: 15px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 35px;
  position: relative;
}

.logo {
  height: 200px;
  transform: translateY(-50px);
  margin: 0 -55px;
}

.nav-link {
  color: #162c59;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}

.nav-link:hover {
  color: #6B2D2D;
}

.quote-btn {
  background: #162c59;
  color: #fff;
  padding: 10px 10px;
  border-radius: 9px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}

.phone-number {
  font-size: .9em;
  letter-spacing: 0.5px;
}

.call-text {
  padding: 5px 0px;
  font-size: 0.7em;
  font-weight: bold;
}

.quote-btn:hover {
  background: #6B2D2D;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 280px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1000;
  border-radius: 4px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 0;
  margin-top: 10px;
}

.dropdown-content::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.dropdown-content a {
  color: #162c59;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.9em;
  transition: background-color 0.2s;
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
  color: #6B2D2D;
}

.dropdown:hover .dropdown-content {
  display: block;
}
