/***TOP BANNER***/
.top-banner.section {
    padding-top:clamp(52px, 11%, 200px);
    padding-bottom:clamp(80px, 11%, 200px);
    background-image:url(/wp-content/uploads/2026/01/top-banner.jpg);
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
}
.top-banner .title-col{
    border-left:4px solid var(--secondary)
}
.top-banner .form-col{
    background-color:rgb(255 255 255 / 90%);
}
.top-banner .maintitle{
    background: linear-gradient(90deg, rgba(55, 115, 56, 0.85) 10%, rgb(55 115 56 / 2%) 100%);
    color:var(--white);
}
.top-banner .subtitle{
    color:var(--secondary);
}
.top-banner .btn{
    margin-bottom:20px;
    max-width:590px;
    font-size:var(--font-size--h4)
}
.top-banner .title{
    color:var(--primary);
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom:20px
}
.top-banner .square{
    background-color:var(--primary);
    width:16px;
    height:16px;
    z-index:9;
}
.top-banner .title::after{
    content:"";
    background-color:var(--secondary);
    flex-grow:1;
    min-width:20px;
    display:block;
    height:4px;
    margin-left:-32px;
    margin-right:-100%
}
@media(min-width:801px){
    .top-banner .title-col{
        width:55%;
    }
    .top-banner .form-col{
        width: 42%;
        padding: 52px;
        margin-left: auto;
    }
    .top-banner.section{
        clip-path: polygon(100% 0, 100% 100%, 31% 82%, 0 100%, 0 0);
    }
	.top-banner .section-wrap {
		align-items: center;
	}
}
@media(max-width:800px){
    .top-banner .title-col{
        width:100%;
        max-width:400px
    }
    .top-banner .form-col{
        width: 100%;
        padding: 32px 20px;
        margin-top:20px
    }
}
@media(min-width:501px){
    .top-banner .maintitle{
        padding:20px
    }
    .top-banner .subtitle{
        padding-left:32px
    }
    .top-banner .btn{
        margin-left:32px;
        width: calc(100% - 32px);
    }
}
@media(max-width:800px) and (min-width:501px){
    .top-banner.section{
        clip-path: polygon(100% 0, 100% 100%, 31% 89%, 0 100%, 0 0);
    }
    .top-banner .form-col{
        margin-bottom:32px
    }
}
@media(max-width:500px){
    .top-banner.section{
        clip-path: polygon(100% 0, 100% 100%, 31% 96%, 0 100%, 0 0);
    }
    .top-banner .maintitle{
        padding:10px
    }
    .top-banner .subtitle{
        padding-left:10px
    }
    .top-banner .btn{
        margin-left:10px;
        width: calc(100% - 10px);
    }
}
/***INFO***/
.info-sctn.section {
    padding-top:32px;
    padding-bottom:clamp(32px, 4%, 80px)
}
.info-sctn .maintitle{
    color:var(--primary);
    margin-bottom:8px
}
.info-sctn .text-col hr{
    position:relative;
    overflow:visible;
    margin-bottom:32px;
}
.info-sctn .text-col hr::before{
    content:"";
    background-color: var(--primary);
    width: 16px;
    height: 16px;
    z-index: 9;
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    margin:auto
}
@media(min-width:1601px){
    .info-sctn .img-col{
        width:80%;
        margin-right:-30%;
    }
}
@media(min-width:801px){
    .info-sctn .text-col{
        width:50%;
        padding-right:5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .info-sctn .img-col{
        display: flex;
        align-items: center;
    }
    .info-sctn .img-col img{
        width:100%
    }
    .info-sctn .text-col hr{
        width:140%;
        margin-right:-40%
    }
    .info-sctn .text-col p:last-child{
        margin:0
    }
}
@media(max-width:1600px) and (min-width:801px){
    .info-sctn .img-col{
        width:60%;
        margin-right:-10%;
    }
}
@media(max-width:800px){
    .info-sctn .text-col{
        width:100%;
        text-align:center
    }
    .info-sctn .img-col{
        width:100%
    }
}
/***SERVICES***/
.services-sctn.section {
    background-color:var(--primary);
    color:var(--white);
    padding-top:clamp(32px, 6%, 100px);
    padding-bottom: clamp(80px, 11%, 200px);
    text-align:center;
	z-index: 9;
}
.services-sctn .title-col{
    width:100%;
}
.services-sctn .maintitle{
    margin-bottom:12px
}
.services-sctn .title-col hr{
    position: relative;
    overflow: visible;
    margin-bottom: 32px;
}
.services-sctn .title-col hr::before {
    content: "";
    background-color: var(--white);
    width: 16px;
    height: 16px;
    z-index: 9;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.services-sctn .service-col img{
    max-height:238px;
    object-fit:cover;
    width:90%;
    max-width:290px;
    aspect-ratio: 3 / 2;
}
.services-sctn .subtitle{
    margin-bottom:10px;
    margin-top:20px
}
.services-sctn details[open] summary{
    margin-top:8px
}
.services-sctn details summary::after {
    content: " More +";
}
.services-sctn details[open] summary::after {
    content: " Less -";
}
.services-sctn details[open] {
    display: flex;
    flex-direction: column-reverse;
}
.services-sctn:has(details[open]) p{
    margin:0
}
@media(min-width:801px){
    .services-sctn{
        clip-path: polygon(100% 0, 100% 90%, 48% 100%, 0 90%, 0 0);
    }
    .services-sctn .title-col{
        margin-bottom:calc(2% + 20px)
    }
    .services-sctn .service-col {
        width:33%;
        padding:40px 32px
    }
    .services-sctn .service-1,
    .services-sctn .service-2,
    .services-sctn .service-3{
        border-bottom:3px solid var(--secondary)
    }
    .services-sctn .service-1,
    .services-sctn .service-2,
    .services-sctn .service-4,
    .services-sctn .service-5{
        border-right:3px solid var(--secondary)
    }
    .services-sctn .title-col hr{
        margin-left:-40%;
        width:100%
    }
}
@media(max-width:800px) and (min-width:501px){
    .services-sctn{
        clip-path: polygon(100% 0, 100% 95%, 48% 100%, 0 95%, 0 0);
    }
    .services-sctn .service-col {
        width:50%;
        padding:20px 20px
    }
    .services-sctn .service-1,
    .services-sctn .service-2,
    .services-sctn .service-3,
    .services-sctn .service-4{
        border-bottom:3px solid var(--secondary)
    }
    .services-sctn .service-1,
    .services-sctn .service-3,
    .services-sctn .service-5{
        border-right:3px solid var(--secondary)
    }
}
@media(max-width:500px){
    .services-sctn{
        clip-path: polygon(100% 0, 100% 98%, 48% 100%, 0 98%, 0 0);
    }
    .services-sctn .service-col{
        width:100%;
        padding-top:20px;
        padding-bottom:20px
    }
    .services-sctn .service-col:not(.service-6){
        border-bottom:1px solid var(--secondary)
    }
}
/***CTA BANNER***/
.cta-banner.section {
    background-color:Var(--secondary);
    color:var(--white);
    padding-bottom:32px;
    padding-top: calc(25% + 32px);
    margin-top: -25%;
}
.cta-banner .maintitle{
    margin:0
}
.cta-banner .btn-col .btn{
    font-size:clamp(20px, 2.8vw, 35px);
    border-radius:8px;
    width:100%
}
.cta-banner .text-col{
    flex-grow:1;
    display:flex;
    align-items: center;
}
.cta-banner .btn-col{
    flex-grow:1;
    display:flex;
    align-items: center;
}
@media(min-width:801px){
    .cta-banner .btn-col{
        justify-content: flex-end;
    }
}
@media(max-width:800px) and (min-width:501px){
    .cta-banner .btn-col{
        justify-content: flex-end;
    }
    .cta-banner .text-col{
        width:70%
    }
    .cta-banner .btn-col{
        width:30%
    }
}
@media(max-width:500px){
    .cta-banner .text-col{
        text-align:center;
        margin-bottom:12px
    }
}
/*Terstimonials Section*/
.reviews-sctn {background: #f7f7f7;padding-top: 80px;padding-bottom: calc(3% + 32px);}
.section.about-sctn {background: white;}
.reviews-sctn .title-col {width: 100%;text-align: center;}
.reviews-sctn .spt-bar.spt-alt:after {left: 0;}
.reviews-sctn .title-col .maintitle {margin: 0;color: var(--primary);}
.reviews-sctn .title-col .subtitle {margin-bottom: 12px;}
.review-col {border: 2px solid var(--secondary);border-radius: 20px;padding: 20px 40px;display: flex;flex-direction: column;text-align: center;margin-bottom: 26px;}
.review-col .name {margin: 0;font-weight: 900;}
.review-col .name .stars {color: #fac917;font-size: 26px;}
.review-col>p {margin-bottom: 0;}
/*About Cactus*/
.about-sctn .img-col {position: relative;width: 50%;text-align: right;display: flex;justify-content: flex-end;}
.section.about-sctn {padding-right: 0;mask-image: url(/wp-content/uploads/2026/01/svg-mas.svg);mask-size: cover; mask-position: center;}
.about-sctn .text-col {right: -11%;width: 50%;padding: 45px 2%;position: relative;z-index: 1;display: flex;flex-direction: column;justify-content: center;}
.about-sctn .section-wrap {max-width: none;justify-content: space-between;}
.about-sctn .img-col:after {content: '';flex-grow: 1;height: 100%;background: red;position: absolute;left: 0;width: 364px;background: #ffffff;background: linear-gradient(90deg, rgba(255, 255, 255, 1) 39%, rgba(255, 255, 255, 0) 100%);}
.about-sctn .text-col .maintitle {color: var(--primary);margin: 0;}
.about-sctn .spt-bar.spt-alt {right: unset;margin-left: -33%;width: 130%;}
.about-sctn .spt-bar.spt-alt:after {right: 0;}
.about-sctn .text-col .subtitle {margin-bottom: 10px;}
@media (max-width: 1200px) {
.about-sctn .text-col {right: 0;}
}
@media (max-width: 1024px) {
.about-sctn .text-col {width: 100%;text-align: center;padding-bottom: 0;}
.about-sctn .img-col {width: 100%;justify-content: center;}
.about-sctn .img-col:after {display: none;}
.section.about-sctn {padding-left: 0;}
}
/*Why Choose Section*/
.section.whyus-sctn {padding: 0;}
.whyus-sctn .section-wrap {max-width: none;}
.whyus-sctn .img-col {width: 50%;position: relative;display: flex;}
.whyus-sctn .img-col:after {content: '';flex-grow: 1;height: 100%;position: relative;margin-left: -32%;background: #ffffff;background: linear-gradient(272deg, rgba(255, 255, 255, 1) 51%, rgba(255, 255, 255, 0) 100%);}
.whyus-sctn .img-col-alt {position: absolute;top: calc(50% - 125px);left: 25%;}
.whyus-sctn .text-col {width: 50%;display: flex;flex-wrap: wrap;align-items: center;padding: 3%;}
.whyus-sctn .img-col-alt svg {fill: var(--primary);}
.whyus-sctn .text-col .maintitle {margin: 0;color: var(--primary);}
.whyus-sctn .text-col>div {max-width: 660px;}
.whyus-sctn .spt-bar.spt-alt {right: -37%;margin-top: 13px;margin-left: -37%;width: auto;}
.whyus-sctn .text-col ul {margin: 0;padding: 0;list-style: none;}
.whyus-sctn .text-col ul svg {fill: var(--secondary);}
.whyus-sctn .text-col ul li {display: flex;align-items: center;gap: 4px;color: var(--primary);font-size: 17px;margin-bottom: 8px;}
@media (max-width: 1024px) {
.whyus-sctn .img-col {width: 100%;order: 2;justify-content: center;}
.whyus-sctn .img-col:after {display: none;}
.whyus-sctn .img-col-alt {position: relative;left: unset;top: unset;}
.whyus-sctn .text-col {width: 100%;justify-content: center;text-align: center;padding: 50px 24px 0;}
.whyus-sctn .img-col-alt {order: 1;}
.whyus-sctn .img-col-alt svg {max-width: 200px;height: 200px;}
.whyus-sctn .spt-bar.spt-alt {right: unset;margin-left: unset;}
.whyus-sctn .text-col ul {max-width: 333px;margin: 0 auto;}
}
@media (max-width: 500px) {
.whyus-sctn .text-col ul li {text-align: left;font-size: 15px;}
}
/*Map Section*/
.map-sctn .section-wrap {max-width: none;}
.map-sctn.section {padding: 0;}
.map-sctn .info-col {width: 50%;background: var(--primary);display: flex;align-items: center;justify-content: center;padding: 40px;}
.map-sctn .map-col {width: 50%;}
.map-sctn .info-col .maintitle {margin: 0;color: white;max-width: 500px;}
.map-sctn .info-col .hr-secondary {margin-left: -47%;}
.map-sctn .info-col ul {margin: 0;list-style: none;color: white;}
.map-sctn .info-col ul a {color: white}
.map-sctn .info-col ul svg {fill: white;}
.map-sctn .info-col ul li {display: flex;align-items: center;}
.map-sctn .info-col ul .text {padding: 6px 0 6px 10px;border-left: 1px solid white;margin-left: 10px;font-family: var(--font-family--h1);font-size: 19px;}
@media (max-width: 800px) {
.map-sctn .map-col {width: 100%;}
.map-sctn .info-col {width: 100%;}
.map-sctn .info-col>div {max-width: 332px;}
.map-sctn .info-col .hr-secondary {margin-left: 0;}
.map-sctn .info-col .maintitle {text-align: center;}
}
@media (max-width: 500px) {
.map-sctn .map-col iframe {height: 380px;}
.map-sctn .info-col ul .text {font-size: 16px;}
.map-sctn .info-col {padding: 40px 20px;}
}
/*FAQ section*/
.faq-sctn {padding-top: 60px;padding-bottom: 60px;}
.faq-col {width: calc(50% - 20px);}
.faq-sctn .section-wrap {gap: 20px;}
.faq-sctn .maintitle {margin: 0;color: var(--primary);width: 100%;text-align: center;}
.faq-sctn .faq-col h4 {margin: 0;font-size: 16px;}
.faq-sctn .faq-col details {border-color: var(--secondary);}
.spt-bar.spt-alt {right: -27%;}
.spt-bar.spt-alt:after {right: unset;}
@media (max-width: 800px) {
.faq-col {width: 100%;}
.faq-sctn .section-wrap {gap: 0;}
.spt-bar.spt-alt {margin-top: 20px;}
}
/*Contact Form*/
@media (min-width:801px) {
.ctc-sctn {background-image: url(/wp-content/uploads/2026/01/Form-background.jpg);background-position: bottom;}
}
.section.ctc-sctn {padding-top: 100px;padding-bottom: 100px;background-color: var(--primary);padding-right: 0;}
.ctc-sctn .on-col {background: white;padding: 5% 8%;width: 100%;max-width: 1700px;}
.ctc-sctn .section-wrap {max-width: none;justify-content: flex-end;}
.ctc-sctn .maintitle span {display: block;font-size: 0.8em;}
.ctc-sctn .maintitle {color: var(--primary);font-size: clamp(32px, 3vw, 50px);}
.spt-bar {width: 100%;height: 4px;background: var(--secondary);position: relative;margin-bottom: 28px;}
.spt-bar:after {content: '';height: 18px;width: 18px;background: var(--primary);position: absolute;right: -1px;top: -8px;}
.ctc-sctn .cva-form {max-width: none;}
@media (max-width: 1100px) {
section.ctc-sctn.section {padding-left: 0;}
.ctc-sctn .on-col {padding: 35px;}
}