.elementor-16517 .elementor-element.elementor-element-def090d{--display:flex;--margin-top:0px;--margin-bottom:-155px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:100px;--padding-left:0px;--padding-right:0px;}.elementor-16517 .elementor-element.elementor-element-0632bc4{width:100%;max-width:100%;padding:0px 0px 125px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-16517 .elementor-element.elementor-element-def090d{--margin-top:0px;--margin-bottom:-142px;--margin-left:0px;--margin-right:0px;}}/* Start custom CSS for html, class: .elementor-element-0632bc4 *//* Scoped Reset */
.top-header-wrapper * {
  box-sizing: border-box;
}

.top-header-wrapper {
  font-family: "Lato", sans-serif;
  width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Promo Bar Container --- */
.promo-bar-container {
  position: fixed;
  top: -120px;
  left: 0;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease;
  z-index: 2000;
}

.promo-bar-container.visible {
  top: 0;
}

/* ✅ Updated Promo Bar Layout */
.promo-bar {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  gap: 10px;
}

.promo-text {
  display: flex;
  flex-direction: column;
  flex: 1 1 250px;
  min-width: 200px;
}

.promo-title {
  color: #00bcd4;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 5px;
}

.promo-desc {
  font-size: 14px;
  color: #666;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex: 1 1 300px;
  min-width: 200px;
}

.book-btn {
  background-color: #e65c00;
  color: white;
  border-radius: 15px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 22px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  border: 2px solid #e65c00;
}

.book-btn:hover {
  background-color: #39BAD7;
  border: 2px solid #39BAD7;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.phone-btn {
  border: 2px solid #e65c00;
  color: #e65c00;
  background-color: white;
  border-radius: 15px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-btn:hover {
  border: 2px solid #39BAD7;
  background-color: #39BAD7;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn{
    visibility: hidden;
}

.phone-icon {
  width: 16px;
  height: 16px;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  margin-left: 20px;
}

.hamburger-line {
  width: 100%;
  height: 4px;
  background-color: #e65c00;
  border-radius: 5px;
  transition: all 0.3s ease;
}



/* --- Header --- */
.header-container {
  width: 100%;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  z-index: 1000;
  margin: 0 auto;
}

.ms-header {
    display: flex;
  max-width: 1250px;
  width: 100%;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  min-height: 110px;
}

.logo{
    display: flex;
  align-items: center;
}

.logo img {
  height: 135px;
  width: auto;
  object-fit: contain;
  
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
  margin: 0 15px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s;
  display: block;
  padding: 5px 0;
}

.nav-links a:hover {
  color: #39BAD7;
}


.dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
  border-top: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  transition: border-color 0.3s
}

.nav-links li:hover .dropdown-toggle::after{
    border-top-color: #39BAD7;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1;
  border-radius: 4px;
  padding: 0;
  list-style: none;
}

.dropdown-menu li {
  margin: 0;
  width: 100%;
  position: relative;
}

.dropdown-menu a {
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #000;
}

.dropdown-menu a:hover {
  background-color: #e65c00;
  color: white;
}

.nav-links li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.quote-btn {
  background-color: #e65c00;
  color: white;
  border: 2px solid white;
  border-radius: 14px;
  padding: 14px 25px;
  font-weight: 700;
  font-size: 22px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: uppercase;
  align-self: center;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  height: auto;
}

.quote-btn:hover {
  background-color: #39BAD7;
  border: 2px solid white;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* --- Mobile Sticky Header --- */
.mobile-sticky-header {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #334155;
  padding: 10px;
  z-index: 1500;
}

.mobile-sticky-header.visible {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-sticky-actions {
  display: flex;
  gap: 8px;
  flex: 1;
}

.mobile-get-quote,
.mobile-call-btn {
  flex: 1;
  display: block;
  background-color: white;
  border-radius: 8px;
  padding: 12px 0;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}

.mobile-get-quote {
  color: #0891b2;
  border: 2px solid #0891b2;
}

.mobile-call-btn {
  color: #e65c00;
  border: 2px solid #e65c00;
}

.mobile-hamburger-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  line-height: 1;
  padding: 0 10px;
  cursor: pointer;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  /*width: 75%;*/
  max-width: 400px;
  height: 100%;
  background-color: white;
  z-index: 3000;
  display: none;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active {
  display: flex;
  transform: translateX(0);
}

.mobile-menu-header {
  background: linear-gradient(to bottom, #64748b, white);
  padding: 1rem 1rem 2.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-logo {
  /*height: 220px !important;*/
  padding-left: 1rem;

    max-width: 145px !important;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: #000 !important;
}

.mobile-nav-item {
  margin: 0;
  padding: 0;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  width: 100%;
  border: none;
  background: white;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: #000 !important;
}

.mobile-dropdown-toggle:hover, .mobile-dropdown-toggle.active {
  color: white;
  background-color: #e65c00;
}

.dropdown-icon {
  margin-left: 0.5rem;
  font-size: 14px;
}

.mobile-sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  background-color: white;
}

.mobile-sub-menu.active {
  display: block;
}

.mobile-sub-menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.2s, color 0.2s;
}

.mobile-sub-menu a:hover,
.mobile-sub-menu a.active {
  background-color: #e65c00;
  color: white;
}

.mobile-nav-links > li > a {
  display: block;
  padding: 0.6rem 1rem;
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: background-color 0.2s, color 0.2s;
}

.mobile-nav-links > li > a:hover {
  background-color: #e65c00;
  color: white;
}

.mobile-cta-buttons {
  padding: 1.5rem 1rem 1rem 1rem;
}

.mobile-quote-btn {
  display: block;
  width: 100%;
  background-color: #e65c00;
  color: white;
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.mobile-quote-btn:hover {
  background-color: #39BAD7;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color:white;
}

.mobile-phone-btn {
  display: block;
  width: 100%;
  background-color: white;
  color: #e65c00;
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border: 1px solid #e65c00;
  transition: all 0.3s ease;
}

.mobile-phone-btn:hover {
  background-color: #39BAD7;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid white;
}


/* --- Mobile Media Adjustments --- */
@media screen and (max-width: 1024px) {
  .header-container {
    background-color: transparent;
    box-shadow: none;
    border-bottom: none;
  }
  
  .ms-header {
    padding: 10px 15px;
    background-color: transparent;
    justify-content: space-between; /* Changed from flex-end to space-between */
  }
  
  .mobile-menu-btn{
    visibility: visible;
}

.mobile-menu-btn:hover{
   background-color: none !important;
}


  .nav-links {
    display: none;
  }

  .logo {
    display: flex;
    align-items: center;
    margin-right: auto; /* Push everything else to the right */
    margin-left: 0;
    position: relative;
    left: 0;
  }

  .logo img {
    height: 100px;
    width: auto;
  }

  .quote-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
  }

  .mobile-menu-btn span {
    display: block;
    height: 5px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    margin-bottom: 4px;
  }

  .promo-bar-container {
    display: none;
  }

  .hamburger-menu {
    display: none;
  }
}/* End custom CSS */