*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: "Raleway", Sans-serif;
}
.page-width {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
.site-container {
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    box-shadow: 0 3px 4px 0px rgba(0, 0, 0, 0.1);
    padding: 16px 24px 12px;
}
.site-header {
    position: fixed;
    z-index: 11;
    width: 100%;
}
.site-logo img {
    max-width: 100px;
    display: block;
}
.site-logo a {
    display: block;
}
.site-main-menu >ul {
    padding: 0;
    margin: 0;
    width: 100%;
    gap: 30px;
    display: flex;
    list-style: none;
    justify-content: center;
}
.site-main-menu> ul li a {
    padding: 8px 4px;
    text-decoration: none;
    font-size: 16px;
    color: #000;
    white-space: nowrap;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    gap: 5px;
}

.site-main-menu> ul> li {
    position: relative;
}

.site-main-menu ul ul {
    position: absolute;
    background: #fff;
    padding: 20px;
    list-style: none;
    display: none;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.site-main-menu ul li:hover ul {
    display: block;
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 32px;
    width: 80%;
}
.site-logo {
    width: 20%;
}

.site-main-btn a {
    background: #16293A;
    display: block;
    padding: 10px;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    width: fit-content;
    color: #F5CB87;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a);
}
.site-main-btn a + a {
    background-color: #F5CB87;
    color: #16293A;
}
.site-main-btn a:hover {
    background-color: #bf9455;
    color: #fff;
}
.site-main-btn  {
    display: flex;
    border: 2px solid #F5CB87;
    width: fit-content;
}
.site-main-menu ul li a svg {
    max-width: 10px;
    width: 100%;
}
.site-main-menu {
    width: 100%;
}
ul.dropdown-menu {
    position: absolute;
    width: auto;
    top: 100%;
    list-style: none;
    background: #fff;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 21px 21px;
    transition: all .4s;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
}
ul.dropdown-menu li a {
    padding: 13px 20px;
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 16px;
}
.site-main-menu> ul> li:hover ul.dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.site-main-menu> ul> li:hover a svg {
    transform: rotate(180deg);
}
.site-main-menu > ul li:hover > a {
    border-bottom: 3px solid #bf9455;
}
ul.dropdown-menu li a:hover {
    background-color: #7dcbcd;
    color: #fff;
}
.mobile-toggle-bar ,
.site-main-btn.show-on-mobile{
    display: none;
}
.site-footer {
    background-color: #fff9ef;
    padding: 60px 0 0;
    border-top: 1px solid #16293A;
}
.site-footer-top {
    display: flex;
    margin: auto;
    justify-content: space-evenly;
    width: 100%;
}
.footer-logo {
    width: 40%;
}
.footer-logo img {
    max-width: 100px;
    display: block;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.info-icon {
    background: #EAA6B5;
    padding: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-cont h3 {
    margin: 0 0 7px;
    font-size: 13px;
    color: #EAA6B5;
    text-transform: uppercase;
}
.info-cont p {
    color: #16293A;
    font-size: 16px;
    line-height: normal;
}
.info-cont {
    max-width: 320px;
}
.footer-menu-main {
    display: flex;
    gap: 40px;
}
.footer-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-menu h3 {
    font-size: 18px;
    color: #16293A;
    margin-bottom: 10px;
}
.footer-menu ul li a,
.footer-menu a {
    font-size: 14px;
    color: #16293A;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}
.footer-menu ul svg g {
    fill: #16293A;
}
.footer-menu button {
    background-color: #fff;
    color: #16293a;
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.footer-menu button + ul {
    display: flex;
    gap: 10px;
}
.site-footer-btm {
    padding: 20px 0;
    margin-top: 50px;
    background-color: #16293A;
}
.footer-menu button + ul li+li svg {
    background: #fff;
    padding: 5px;
    border-radius: 3px;
}
.footer-menu button + ul li+li svg path {
    fill: #16293a;
}
.site-footer-btm-container {
    width: 100%;
}
.site-footer-btm-container p {
    color: #fff;
    font-size: 14px;
    text-align: center;
}
.site-footer-btm-container ul {
    display: flex;
    margin: 0;
    gap: 25px;
    list-style: none;
}
.footer--social-icons {
    display: flex;
    gap: 15px;
    margin: 20px 0 0;
}
.kt-inside-inner-col {
    margin-bottom: 40px;
}
.kt-inside-inner-col h2 {
	font-size: 26px;
	margin: 25px 0;
	color: #000;
}
.threecol {
	display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: center;
    row-gap: 0px;
    column-gap: 0px;
	display: grid;
    grid-template-columns: repeat(2, 1fr);
	border: 1px solid #16293A;
}
.threecol_row {
	display: flex;
    flex-direction: column;
	border-bottom: 1px solid #16293A;
	padding-right: 100px;
    position: relative;
    overflow: hidden;
}
.threecol_row:nth-of-type(odd) {
    border-right: 1px solid;
}
.threecol_row_image img {
	width: 100%;
	display: block;
	height: 100%;
	position: relative;
	max-height: 400px;
    object-fit: cover;
}
.threecol_row_image::before {
	content: unset;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000, rgba(0, 0, 0, 0.6));
    opacity: 0.4;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
}
.wp-block-kadence-columm {
	background: #fff9ef;
    padding: 50px 0;
}
.threecol_row-content {
    width: 100%;
    padding: 15px 3%;
    transition: transform 0.3s ease-in-out;
    z-index: 3;
}
.threecol_row-content h3 {
	margin-bottom: 10px;
	font-size: 24px;
	color: #16293A;
	margin-top: 20px;
}
.threecol_row-content h3 a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid #F5CB87;
}
.ccpages_excerpt p {
	color: #fefefe;
    font-size: 16px;
    margin-bottom: 25px;
}
a.ccpages_more {
	color: #fefefe;
    border: 1px solid #fefefe;
    padding: 5px 10px;
    text-decoration: none;
    transition: 0.2s ease-in-out;
	font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
	display: inline-block;
}
.threecol_row:hover .threecol_row-content {
	transform: translateY(0);
}
.threecol_row:hover .threecol_row_image::before {
	opacity: 0.8;
}
.ccpages_more,
.ccpages_more-btn {
	text-align: end;
}
a.ccpages_more:hover {
	background-color: #fefefe;
	color: #000;
}
a.ccpages_more-blue {
	background: #27255f;
    border: 0;
    border-radius: 0;
    color: #fefefe;
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
	text-decoration: none;
	margin-top: 30px;
    letter-spacing: 1.5px;
    padding: 15px 20px;
    text-align: center;
    text-transform: capitalize;
    transition: background .3s;
    vertical-align: middle;
}
a.ccpages_more-blue:hover {
    background-color: #bf9455;
}
.page-top-image {
    background-image: url(https://slgcontracting.ca/wp-content/uploads/2025/03/faq.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
	background: #fff9ef;
}
.opacity-lvl {
    opacity: 1;
    padding: 10% 0 35px;
}
.page-top-image-content h2 {
    margin: 0 0 25px;
    color: #16293A;
    font-style: normal;
    font-weight: bold;
	line-height:60px;
    font-size: 64px;
	max-width: 515px;
}
.page-top-image-content p {
    color: #16293A;
    font-size: 20px;
	max-width: 615px;
	
}
.page-top-image-content {
    padding: 16px 24px 12px;
    width: 100%;
}
.wp-block-kadence-columm .page-width {
	max-width: 1900px;
}
.reno-section {
  background: #16293A; /* dark blue background */
  color: #ffffff;
  padding: 20px;
	height: fit-content;
    max-width: 500px;
	margin-top: 30px;
}

.reno-section h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
}

.reno-section p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 40px;
}

.btn-touch {
  display: inline-block;
  background: #ffffff;
  color: #0C263A;
  padding: 18px 30px;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}

.btn-touch:hover {
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
    .mobile-toggle-bar {
        display: block;
        display: flex;
        align-items: center;
        padding: 5px;
        border-radius: 50%;
    }
    .mobile-toggle-bar svg {
        width: 25px;
        height: 25px;
        fill: #000;
    }
    .site-main-btn {
        display: none;
    }
    .site-main-menu {
        position: absolute;
        left: 0;
        top: 100%;
        background: #fff;
        display: none;
        transition: all .4s;
        height: calc(100vh - 65px);
    }
    .site-main-menu >ul {
        height: 100%;
        align-items: center;
        justify-content: center;
        gap: 25px;
        flex-direction: column;
    }
    .site-main-menu> ul> li> a {
        padding: 10px 12px;
        justify-content: center;
    }
    .site-header {
        position: relative;
        top: 0;
        transform: unset;
        left: 0;
    }
    .site-main-menu> ul li a {
        justify-content: center;
    }
    .site-container {
        border-radius: 0;
    }
    .close-icon,
    .mobile-toggle-bar.active .toggle-icon {
        display: none;
    }
    .mobile-toggle-bar.active .close-icon {
        display: block;
    }
    .site-logo img {
        max-width: 80px;
    }
    .site-main-menu.active,
     .site-main-btn.show-on-mobile { 
        display: block;
    }
    ul.dropdown-menu {
        position: unset;
        border-radius: 0;
        box-shadow: none;
        transition: all .4s;
        max-height: 0;
        overflow: hidden;
    }
    .site-menu {
        padding: 0;
        justify-content: end;
    }
    .site-main-btn.show-on-mobile {
        width: 100%;
    }
    .site-main-btn.show-on-mobile a {
        margin: auto;
        background-color: #16293a;
        color: #fff;
        font-size: 14px;
        min-height: 36px;
    }
    .site-footer-top {
        flex-wrap: wrap;
        justify-content: start;
        gap: 30px;
    }
    .footer-logo {
        width: 100%;
    }
    .site-footer-btm {
        padding: 20px 0; 
        margin-top: 20px;
    }
    .site-main-menu ul ul {
        position: unset;
    }
    .site-main-menu> ul> li.menu-item-has-children> a {
        pointer-events: none;
        display: inline-block;
        position: relative;
    }
    .site-main-menu> ul> li {
        text-align: center;
    }
    .site-main-menu> ul> li.menu-item-has-children> a::after {
        content: '\2192'; /* Right arrow */
        display: block;
        display: inline-block;
        position: absolute;
        top: 10px;
        right: -10px;
    }
     .footer-menu-main {
        flex-direction: column;
        align-items: start;
        text-align: start;
        gap: 20px;
    }
    .site-footer { 
        padding: 32px 24px 0;
    }
    .footer-menu-main {
        width: 100%;
    }  
    .footer-logo img {
        max-width: 80px;
    }
    .threecol_row {
		padding-right: 0;
	}
}
@media screen and (max-width: 550px) {
	.threecol_row {
		width: calc(100% - 0px)
	}
	 .threecol_row-content  {
		transform: translateY(0);
	 }
     .opacity-lvl {
        padding-top: 50px;
    }
	.page-top-image-content h2 {
		line-height: 40px;
    	font-size: 36px;
	}
	.threecol {
		grid-template-columns: repeat(1, 1fr)
	}
	.threecol_row:nth-of-type(odd) {
		border-right: 0;
	}
}

/* Disable text selection */
* {
    -webkit-user-select: none; /* Chrome, Safari, Opera */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
}

/* Allow selection in form fields only */
input, textarea, [contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Disable image dragging */
img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}