/* Hello overrides */


@media (min-width: 768px){
	.header-left{
		width: 15%;
	}

	.header-left .site-logo,
	.header-left .custom-logo-link,
	.header-left .custom-logo-link img{
		width: 100%;;
	}

	.header-left .custom-logo-link img{
		height: auto;
	}

}

@media (max-width: 768px){
	.header-left{
		max-width: 45%;
	}

	.site-header .header-inner{
		padding-right: 0 !important;
	}

	.header-right,
	.header-cta,
	.header-cta .btn-primary{
		height: 100%;;
	}
}

.site-main .page-content a{
    text-decoration: none;
}

.site-main .page-content p a,
.site-main .page-content ul li a{
    color: #1780c3;
}


:root {
  --site-header-height: 80px;
}


html {
  scroll-padding-top: var(--site-header-height);
}

body {
  padding-top: 0;
}

#site-header + * {
  margin-top: var(--site-header-height);
}

header#site-header,
header#site-header .header-inner {
  width: 100%;
  max-width: 100%;
}

header#site-header {
  width: 100%;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  z-index: 1000;
}

.header-inner {
  width: 100%;
  min-height: 80px;
  padding: 0 28px;
  display: flex;
  align-items: center;
}

/* Desktop layout */
.header-left {
  flex: 0 0 auto;
}

.header-center {
  display: none;
}

.main-navigation {
  margin-left: auto;
  flex: 0 0 auto;
}

.header-right {
  margin-left: 28px;
  flex: 0 0 auto;
}

/* Logo */
.site-logo,
.site-logo a,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo img,
.custom-logo {
  display: block;
  width: auto;
}

/* CTA */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: 0 28px;
  background: #ff8a26;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 0;
}

/* Menu reset */
.menu,
.menu ul,
.menu li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.menu::before,
.menu::after,
.menu li::before,
.menu li::after,
.menu ul::before,
.menu ul::after {
  content: none !important;
}

/* Desktop menu */
.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 80px;
  color: #555555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.menu > li > a:hover {
  color: #222222;
}

/* Caret for items with children */
.menu li.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu li.has-submenu > a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  flex: 0 0 auto;
}

/* Desktop dropdown */
.menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff !important;
  padding: 10px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  z-index: 9999;
}

.menu li:hover > ul {
  display: block;
}

.menu li ul li {
  width: 100%;
}

.menu li ul a {
  display: block;
  padding: 10px 18px;
  background: #ffffff !important;
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
}

.menu li ul a:hover {
  background: #f5f5f5 !important;
}

/* Burger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
   background: #ff8a26;
}

/* Close button */
.menu-close {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 32px;
  line-height: 1;
  background: none;
  border: 0;
  cursor: pointer;
  color: #222222;
}

/* Overlay */
#menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

#menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile */
@media (max-width: 1024px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 80px;
  }

  .header-left {
    justify-self: start;
  }

  .header-center {
    display: flex;
    justify-self: center;
  }

  .header-right {
    margin-left: 0;
    justify-self: end;
  }

  .menu-toggle {
    display: flex;
  }

  .btn-primary {
    min-height: auto;
    padding: 12px 16px;
    font-size: 13px;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    margin-left: 0;
    padding: 70px 20px 24px;
    background: #ffffff;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 1001;
  }

  .main-navigation.active {
    right: 0;
  }

  .menu-close {
    display: block;
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .menu > li {
    border-bottom: 1px solid #eeeeee;
    position: relative;
  }

  .menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
    padding: 14px 0;
    white-space: normal;
    width: 100%;
  }

  .menu li.has-submenu > a::after {
    margin-left: 12px;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .menu li.open > a::after {
    transform: rotate(225deg);
  }

  .menu li ul {
    display: none;
    position: static;
    min-width: 100%;
    padding: 0 0 10px 14px;
    box-shadow: none;
    background: #ffffff !important;
  }

  .menu li.open > ul {
    display: block;
  }

  .menu li ul a {
    padding: 10px 0;
    white-space: normal;
  }
}


/* =========================
   FOOTER BASE
========================= */

.sc-footer{
    padding: 50px 30px;
    background-color: #58585a;
}

.sc-footer ul{
    list-style-type: none;
}

.sc-footer ul{
    padding: 0;
    margin: 0;
}

.sc-footer a,
.sc-footer h3,
.sc-footer ul li a,
.sc-footer ul li p,
.sc-footer ul li span{
    margin-bottom: 10px;
    color: #FFFFFF;
}

.sc-footer ul li h4,
.sc-footer ul li a,
.sc-footer ul li p,
.sc-footer ul li span{
    font-size: 16px;
}

.sc-footer-main{
    width: 80%;
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.sc-footer-site-logo{

}

.sc-footer-main h3{
    font-size: 18px;
    font-weight: 900;
    position: relative;
    display: inline-block; /* ensures the bar matches text width */
    padding-bottom: 10px;  /* space between text and bar */
    margin-bottom: 25px;
}

.sc-footer-main h3::after{
    content: "";
    width: 60%;
    height: 1px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    position: absolute;
    left: 0;
    top: 25px;
    z-index: 10;
    border-top-color: #1780c3;
    border-top-width: 4px;
}

.footer-contact-info-list li{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

a.sc-footer-free-quote-btn{

    display: inline-block;
    color: #ff872b;
    border: 2px solid #ff872b;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0);

}

a.sc-footer-free-quote-btn:hover{
    background-color: #ff872b;
    color: #ffffff;
}

.sc-footer ul li h4{
    margin: 0;
    padding: 0;
    font-weight: 700;
}

.footer-popular-links-list li{
    margin-bottom: 10px;
}

.footer-popular-links-list li a:hover{
    color: #ff872b;
}

.footer-recent-post-link:hover{
    color: #ff872b;
}

.footer-social-list li{
    display: inline-block;
    position: relative;
    margin-right: 5px;
}

.footer-social-list li a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #ff872b;
    border-radius: 5px;
    margin-bottom: 0;
}

.footer-social-list li a span{
    margin-bottom: 0;
}

.footer-social-list li a:hover{
    background-color: #1780c3;
}

.footer-social-list li a{
    font-family: 'Muli', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    text-align: left;
}

.footer-newsletter-signup form button{
    border: 1px solid #ff872b;
    background-color: transparent;
    color: #ff872b;
}


.footer-newsletter-signup form button:hover{
    background-color: #ff872b;
    color: #ffffff;
}


.sc-footer-bottom{
    text-align: center;
    padding: 25px 0;
    color: #FFFFFF;
}

    @media (min-width: 769px) {
        .sc-footer-main{
          flex-wrap: nowrap;
        }
        .sc-footer-col{
          width: 20%;
        }
    }
