/* HEADER TOPBAR CSS STARTED */
.topbar {
    background-color: #e57200;
    color: #fff;
    font-size: 14px;
}

.topbar-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.topbar a:hover {
  opacity: 0.85;
}
.topbar-inner > div, .topbar-inner > div > a {
  font-size: 14px;
}

.login-menu {
  position: relative;
  display: inline-block;
}

.login-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Dropdown */
.login-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 1000;
}

/* Arrow */
.login-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 24px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
}

/* Invisible bridge to cover the gap between trigger and dropdown */
.login-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 14px;
  display: none;
}

.login-menu:hover::after {
  display: block;
}

/* Show on hover or keyboard focus-within */
.login-menu:hover .login-dropdown,
.login-menu:focus-within .login-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Header */
.login-header {
  padding: 14px 16px;
  font-weight: 600;
  color: #111;
  border-bottom: 1px solid #eee;
}

/* Links */
.login-dropdown a {
  display: block;
  padding: 12px 16px;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  margin: 0px;
}

.login-dropdown a:hover {
  background: #f5f6f7;
  color: #000;
}


/* Responsive topbar */
@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 8px 12px;
  }

  .topbar-inner > div:last-child {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .topbar a {
    margin-left: 12px;
    font-size: 13px;
  }

  .topbar-inner > div:first-child {
    font-size: 13px;
  }

  .login-dropdown {
    right: -10px;
  }
}

@media (max-width: 480px) {
  .topbar-inner > div:first-child {
    font-size: 12px;
  }

  .topbar a {
    margin-left: 10px;
    font-size: 12px;
  }
}

/* HEADER TOPBAR CSS END */

header{
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

header .dn-logo-container {
  max-width: 240px;
}

header #main_nav {
  text-align: left;
  padding-left: 24px;
}

header .dn-nav-search {
  display: inline-block;
  padding-left: 20px;
  transform: translateY(5px);
}

body header nav.dn-other-nav > div:hover a {
  color: #e57200;
}

/* ContactBar CSS STARTED */
.contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
}

/* Wrapper */
.contact-call .call-button {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Avatar */
.contact-call .call-icon {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* Status dot */
.contact-call .call-icon::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #babcc0;
  border: 2px solid #fff;
}

/* Online state */
.active-hours .contact-call .call-icon::before {
  background: #20c84f;
}

/* Avatar image */
.contact-call .photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #d6d7da;
}

.contact-call .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.contact-call .text {
  font-weight: 500;
}

.contact-call .title {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  color: #000000;
  text-decoration: none;
  margin-bottom: 2px;
  text-align:left;
}

.contact-call .text p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #232528;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .contact-call .call-icon {
    width: 36px;
    height: 36px;
    margin-right: 8px;
  }

  .contact-call .title {
    color: #cde0ff;
  }

  .contact-call .text p {
    font-size: 13px;
    color: #fff;
  }
}

.contact-bar .quote-btn {
  padding: 7px 40px;
  border: 2px solid #e57200;
  border-radius: 999px;
  color: #e57200;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-size: 16px;
}

.contact-bar .quote-btn:hover {
  background: #e57200;
  color: #fff;
}

/* ContactBar CSS END */