/* ---------------------------------- */
/* Site header — professional redesign
------------------------------------- */
#header {
  padding: 0;
  background: #fff;
  box-shadow: 0 2px 20px rgba(20, 20, 40, 0.08);
}

.head-tr.bottom {
  background: #fff !important;
}

.container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.container-header .left-side {
  width: auto;
  float: none;
  display: flex;
  align-items: center;
}

.container-header .right-side.nav-cta {
  width: auto;
  float: none;
  margin-left: 0;
}

#logo {
  margin-top: 0;
  margin-right: 32px;
}

#logo img {
  width: 130px;
}

/* Nav links */
#navigation.style-1 ul a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #33303f;
  padding: 8px 4px;
}

#navigation.style-1.head-tr ul li a {
  color: #33303f;
}

#navigation.style-1 ul li {
  margin: 0 10px;
  border-radius: 0;
  position: relative;
}

#navigation.style-1 ul li:hover {
  background: transparent;
}

#navigation.style-1 ul li:hover a {
  color: #d63031;
}

#navigation.style-1 ul li a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(135deg, #e8483b, #d63031);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

#navigation.style-1 ul li:hover a::after {
  transform: scaleX(1);
}

#navigation.style-1 .current,
#navigation.style-1 .current a {
  color: #d63031 !important;
  background: transparent;
}

#navigation.style-1 .current a::after {
  transform: scaleX(1);
}

/* Sticky / cloned header keeps the same look */
#header.cloned {
  background-color: #fff;
}

#header.cloned.sticky ul li a {
  color: #33303f;
}

#header.cloned.sticky ul li:hover {
  background: transparent !important;
  color: #d63031 !important;
}

#header.cloned.sticky ul li:hover a {
  color: #d63031 !important;
}

#header.cloned.sticky .current {
  color: #d63031;
  background: transparent;
}

/* Right-side quick contact */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #33303f;
  white-space: nowrap;
}

.nav-cta-phone i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(214, 48, 49, 0.1);
  color: #d63031;
  font-size: 14px;
}

.nav-cta-phone:hover {
  color: #d63031;
}

.nav-cta-btn {
  display: inline-block;
  padding: 11px 24px;
  background: linear-gradient(135deg, #e8483b, #d63031);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 22px rgba(214, 48, 49, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(214, 48, 49, 0.38);
}

@media (max-width: 1024px) {
  .container-header {
    min-height: 64px;
  }
}

@media (max-width: 1499px) {
  .nav-cta {
    display: none;
  }
}
