/* ================= AREAS WE SERVE PAGE ================= */

.suburb-search {
    display: flex;
    margin:0 0 30px 0;
    max-width: 515px;
}

.suburb-search__field {
    flex: 1;
    min-width: 0;
    height: 53px;
    padding: 0 20px;
    background: var(--white);
    border: 1px solid var(--theme);
    border-right: 0;
    border-radius: 4px 0 0 4px;
    font-size: 18px;
    font-family: var(--font-body-family);
    color: var(--text-color);
}

.suburb-search .suburb-search__btn {
    display: flex;
    align-items: center;
    gap:6px;
    padding: 0 36px;
    background: var(--white);
    border: 1px solid var(--theme);
    border-radius: 0 4px 4px 0;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: var(--theme);
    cursor: pointer;
    transition: var(--transition-default);

    & i{
        font-size:18px;
        font-size:600;
    }
}

.suburb-search .suburb-search__btn:hover {
    background: var(--theme);
    color: var(--white);
}

/* ---- areas we serve grid + map ---- */
.sec-areas {
    background-color: var(--cream);
}

.area-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.area-col {
    flex: 1;
    min-width: 280px;
}



.area-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.area-list li:before{
   
    position: absolute;
    content: "";
    background-image: url(../images/icon/footer-icon-location.svg);
    width:18px;
    height: 21px;
    top: 0;
    margin-top: 4px;
    left: 0;

}

.area-list li {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    font-weight: var(--font-weight-bold);
    color: var(--black);
    margin:0;
    position: relative;
    padding-left:32px;
}

.area-list li span {
    display: block;
    font-weight: normal;
    line-height:1.1;
    color: var(--text-color);
}

.area-list a:hover,
.area-list li.active {
    color: var(--theme);
}
.sec-map-area .area-map
{
 height:650px;
}
.area-map {
    border-radius:10px;
   
}

.area-map iframe {
    display: block;
    width: 100%;
    height:100%;
}
.sec-map-area{
    position: relative;
}
.sec-areas + .sec-map-area:before
{
    position:absolute;
    content:"";
    width:100%;
    height:50%;
    top:0;
    left: 0;
    background-color: var(--cream);
    z-index:-1;
}

/* ---- why choose (dark, areas variant) ---- */
.sec-why-choose-areas {
    position: relative;
}

.sec-why-choose-areas .bgimg {
    z-index: -2;
}

.sec-why-choose-areas::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.9);
}

.sec-why-choose-areas .ctent-block ul li {
    color: var(--white);
}

.sec-why-choose-areas .ctent-block ul li a {
    color: var(--white);
    text-decoration: underline;
}



/* ---- faq ---- */
.sec-faq-list .container {
    max-width: 1280px;
}

.sec-faq-list .heading-42 {
    text-align: center;
}


/* ================= AREAS DETAIL (LOCATION + CATEGORY) PAGE ================= */

/* ---- hero ---- */
.hero-detail {
    min-height: 650px;
}

.hero-detail .page-banner__main {
    padding: 0;
    width: 100%;
}

.hero-detail__grid {
    align-items: center;
    gap: 40px;
}

.hero-detail__main {
    flex: 1;
    max-width: 600px;
}

.hero-detail .usps-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 20px;
    row-gap: 40px;
    margin: 30px 0;
}
.hero-detail .usps-list li
{
width:auto;
}
.hero-detail .usps-item {
    gap: 20px;
    position: relative;
    
}
.hero-detail .usps-item>img
{
        width: 44px;
    height: 44px;
    object-fit: contain;
}
.hero-detail .usps-list__text {
    width: calc(100% - (44px + 20px));
}
.hero-detail .usps-list__title,
.hero-detail .usps-list__desc {
    color: var(--white);
}

.hero-detail__divider {
    max-width: 600px;
    height: 1px;
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-detail__breadcrumb {
    padding-top: 30px;
}

.hero-detail__breadcrumb .woo_breadcums {
    padding: 0;
}

/* ---- contact card ---- */
.contact-card {
    width: 525px;
    flex-shrink: 0;
    padding:50px;
    background: rgba(238, 238, 230, 0.95);
    border-radius: 20px;
}

.contact-card .heading-30 {
    color: var(--black);
    margin-bottom: 16px;
}

.contact-card form {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
}

.contact-card .form-control {
    height: 50px;
}

.contact-card textarea.form-control {
    height: 100px;
    min-height: 100px;
    padding: 16px 20px;
}

.contact-card .btnbox {
    margin-bottom: 20px;
}

.contact-card .btnbox .button {
    width: 100%;
    gap: 4px;
}

.contact-card .contact-form-panel__disclaimer {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-color);
}

.contact-card .contact-form-panel__disclaimer a {
    color: var(--text-color);
    text-decoration: underline;
}

.contact-card .contact-form-panel__disclaimer a:hover {
    color: var(--theme);
}

.sec-process .ctent-img {
    position: static;
    top: auto;
}

/* ---- why choose: decorative line-art shape bleeding off the left edge ---- */
.sec-why-choose-areas__shape {
    position: absolute;
    left: -81px;
    top: 212px;
    pointer-events: none;
}

/* ---- shop rendering brands (static 4-logo row, centered) ---- */
.sec-brands-detail .section-head {
    margin-bottom:40px;
    padding-bottom:20px;
    border-bottom:1px solid rgb(0 0 0 / 10%);
}

.sec-brands-detail .brand-grid {
    justify-content: center;
}

.sec-brands-detail .brand-grid li {
    width: 240px;
}

/* ---- areas we serve (detail page): both list groups are one <ul> each, sharing
   identical grid CSS. Items are authored in the HTML in row-major order (col1-item1,
   col2-item1, col3-item1, col1-item2, ...), so the browser's default row-by-row grid
   fill reproduces the same column groupings the old multi-<ul>-per-column markup
   produced — no grid-auto-flow or per-list row count needed. ---- */
.sec-areas__list .area-list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
}

.sec-areas__subheading {
    margin-top: 48px;
    margin-bottom: 30px;
}

/* no background tint on this page's variant, and a left-list/right-map two column split */
.areas-detail-page .sec-areas {
    background-color: transparent;
}

.sec-areas__row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.sec-areas__list {
    flex: 1;
    min-width: 0;
}

.sec-areas__map {
    flex: 0 0 680px;
}

.area-map {
        height: 600px;
        iframe{
            border-radius:10px;
        }
    }
    
.areas-page .area-grid{
        margin-bottom:0px;
    }

.areas-detail-page .sec-feature-product .slick-prev,
.areas-detail-page .sec-feature-product .slick-next
{
    top:0;
    margin-top:-66px;
}
.areas-detail-page .sec-feature-product .slick-prev{
    left: auto;
    right: 0;
    margin-right:60px;
}
.areas-detail-page .sec-feature-product .slick-next{
    right:0;
    margin-right:10px;
}

.areas-detail-page .sec-feature-product ul.products .slick-track{
    display:flex;
}
.areas-detail-page .sec-feature-product ul.products .slick-slide{
 height:auto;
}
.areas-detail-page .sec-feature-product ul.products .slick-slide>div{
    display:flex;
    flex-wrap:wrap;
    height:100%;
}
/* ---- areas detail responsive ---- */


@media (max-width: 1599.98px){
    .hero-detail__main{
        width:calc(100% - (525px + 40px));
    }
    .contact-card{
        width:525px;
    }
    .hero-detail .usps-list{
        column-gap:20px;
        max-width:500px;
    }
    
    .sec-map-area .area-map
    {
        height:500px;
    }
    .area-map {
        height: 500px;
        
    }
}

@media (max-width: 1439.98px) {
    .area-grid {
        gap:20px;
    }
    .area-list{
      column-gap:15px;
      row-gap:20px;
    }
    .area-list li{
        padding-left:28px;
    }
    .hero-detail {
        min-height: 560px;
        padding: 60px 0;
    }

    .contact-card {
        width: 460px;
        padding: 32px 40px;
    }

    .hero-detail .usps-list {
        column-gap: 40px;
    }

    .sec-areas__map {
        flex-basis: 500px;
    }
    .hero-detail__grid{
        gap:20px;
    }
    .hero-detail__main {
        width: calc(100% - (460px + 20px));
    }
        .hero-detail .usps-list {
        column-gap: 15px;
        row-gap:20px;
    }
    .area-list li span{
      font-size:14px;  
    }
    .areas-detail-page .sec-feature-product .slick-prev, .areas-detail-page .sec-feature-product .slick-next{
            margin-top: -50px;
    }
    .hero-detail__divider{
        margin-top:40px;
    }
}

@media (max-width: 1199.98px) {
.area-list{
    row-gap:10px;
}
.area-list{
        grid-template-columns: repeat(3, 1fr);
}
    .area-grid {
        flex-direction: column;
    }

    

    .sec-brands-detail .brand-grid li {
        width: 25%;
    }

    .sec-areas__row {
        flex-direction: column;
    }

    .sec-areas__map {
        flex-basis: auto;
        width: 100%;
    }

  
    .suburb-search{
            margin: 0 0 20px 0;
    }
    .areas-detail-page .sec-areas__row .sec-areas__list{
        width:100%;
    }
    .sec-areas__subheading {
       margin:30px 0 20px;
    }
    .contact-card {
        width: 420px;
        padding: 25px;
        border-radius: 10px;
    }
    .hero-detail__main {
        width: calc(100% - (420px + 10px));
    }
    .hero-detail{
        padding:30px 0;
    }
        .hero-detail__grid {
        gap: 10px;
    }
    .hero-detail .usps-item {
        gap: 15px;
        
    }
    .hero-detail .usps-list__text {
    width: calc(100% - (44px + 15px));
}
    .hero-detail .usps-list{
        margin: 0 0 20px 0;
    }
}

@media (max-width: 991.98px) {
    .sec-areas__list .area-list {
        grid-template-columns: repeat(2, 1fr);
    }
        .area-list {
        row-gap:15px;
    }
    .area-map{
        height:550px;
    }
    .sec-map-area .area-map
{
 height:550px;
}
    .areas-detail-page .sec-feature-product .slick-prev, .areas-detail-page .sec-feature-product .slick-next {
        margin-top: 0;
        top: 100%;
        bottom:0;
    }
    .areas-detail-page .sec-feature-product ul.products:has(.slick-arrow){
        padding-bottom:30px;
        margin-bottom: 20px;
    }
    .areas-detail-page .sec-feature-product .slick-next{
        margin-right:0;
    }
    .areas-detail-page .sec-feature-product .slick-prev{
        margin-right:45px;
    }
    
    .hero-detail__main {
        width:100%;
        max-width:100%;
        margin-bottom:20px;
    }
    .hero-detail__grid{
        gap:0;
    }
    .contact-card {
        max-width:100%;
        width:100%;
        padding: 25px;
        border-radius: 10px;
    }
    .hero-detail {
        padding:20px 0 30px 0;
    }
    .hero-detail__divider{
        max-width:100%;
        margin-top:30px;
    }
    .hero-detail__breadcrumb {
        padding-top:20px;
    }
}

@media (max-width: 767.98px) {

    .area-grid {
        gap: 25px;
    }
    

    .hero-detail {
        padding: 32px 0;
    }

    .hero-detail .usps-list {
       
             row-gap: 15px;
        column-gap: 12px;
    }
      .hero-detail .usps-list__text {
    width: calc(100% - (38px + 12px));
}
.hero-detail .usps-item>img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}
    .usps-item img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }
    .hero-detail .usps-item {
        gap: 12px;
        .usps-list__desc,.usps-list__title{
            font-size:14px;
        }
    }
    .contact-card {
        padding: 24px;
    }

    .sec-brands-detail .brand-grid li {
        width: 50%;
    }

    .sec-areas__list .area-list{
        column-gap:15px;
    }
    .suburb-search__field{
        height:50px;
    }
    .suburb-search .suburb-search__btn{
        padding:0 20px;
    }
    .suburb-search{
        max-width:420px;
         margin: 0 0 12px 0;
    }
        .area-list li {
        padding-left: 20px;
    }
    .area-list li:before{
            width: 16px;
    height: 16px;
    top: 0;
    margin-top: 2px;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    }
}

@media (max-width: 575.98px) {
    .areas-detail-page .hero-detail .contact-card{
        display:none;
    }
    .contact-card .form-group50 {
        width: 100%;
    }
        .area-list {
        grid-template-columns: repeat(2, 1fr);
    }
        .area-list li span {
        font-size: 12px;
    }
    .area-list li{
        font-size: 14px;
    line-height: 1.2;
    }
     .area-map{
        height:400px;
    }
    .sec-map-area .area-map
{
 height:400px;
}
    .hero-detail
        {
             min-height:320px;
             padding:20px 0;
        }
        .hero-detail__main{
            margin-bottom:0;
        }
        .hero-detail__divider{
            margin-top:20px;
        }
            .hero-detail__breadcrumb {
        padding-top: 15px;
    }
    .hero-detail .usps-item {
        gap: 10px;
    }
        .hero-detail .usps-item>img {
        width: 34px;
        height: 34px;
    }
        .hero-detail .usps-list__text {
        width: calc(100% - (34px + 10px));
    }
    .hero-detail .usps-item {
        .usps-list__desc, .usps-list__title {
            font-size: 12px;
        }
    }
}

@media(max-width:375.98px){
    .hero-detail .usps-list {
        row-gap: 12px;
        column-gap: 6px;
    }
    .hero-detail .usps-item {
        gap: 5px;
    }
        .hero-detail .usps-item>img {
        width: 24px;
        height: 24px;
    }
        .hero-detail .usps-list__text {
        width: calc(100% - (24px + 5px));
    }
}