/* ==========================================================
   SERVICE HERO
========================================================== */

.service-hero{
    background:#fff;
    padding:52px 0 90px;
}

.service-hero-container{
    max-width:1140px;
    width:calc(100% - 48px);
    margin:0 auto;

    display:grid;
    grid-template-columns:540px 520px;
    column-gap:80px;
    justify-content:space-between;
    align-items:start;
}

/* ==========================================================
   LEFT
========================================================== */

.service-hero-content{
    max-width:540px;
}

.service-label{
    margin:0 0 10px;

    color:#F58220;

    font-family:Poppins,sans-serif;
    font-size:12px;
    font-weight:700;

    letter-spacing:.08em;
    text-transform:uppercase;
}

.service-title{
    margin:0 0 22px;

    color:#202F78;

    font-family:Poppins,sans-serif;
    font-size:58px;
    font-weight:700;

    line-height:1.02;
    letter-spacing:-2px;
}

.service-description{
    margin:0 0 28px;

    color:#55597A;

    font-size:18px;
    line-height:1.6;
    max-width:535px;
}

/* ==========================================================
   SUBURB PILLS
========================================================== */

.service-suburbs{
    display:grid;
    grid-template-columns:repeat(4, max-content);
    gap:12px;
    justify-content:start;
}

.service-pill{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 16px;

    background:#fff;

    border:1px solid #E6E6E0;
    border-radius:999px;

    color:#202F78;
    text-decoration:none;
    cursor:pointer;

    font-size:14px;
    font-weight:600;

    box-shadow:
        0 2px 8px rgba(15,23,42,.04),
        0 8px 18px rgba(15,23,42,.04);

    transition:.25s ease;
}

.service-pill:hover,
.service-pill:focus{
    border-color:#F58220;
    color:#202F78;
    text-decoration:none;
    transform:translateY(-2px);
}

.service-pill:visited{
    color:#202F78;
}

/* ==========================================================
   PILL ICON
========================================================== */

.service-pill-icon{
    width:18px;
    height:18px;

    flex:0 0 18px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.service-pill-icon svg{
    width:18px;
    height:18px;
    display:block;
}

/* ==========================================================
   MAP
========================================================== */

.service-map-wrap{
    display:flex;
    justify-content:flex-start;
    margin-top:18px;
    margin-left:40px;
    padding-left:0;
}

.service-map-card{
    width:520px;

    background:#fff;

    border:1px solid #E6E6E0;
    border-radius:24px;

    overflow:hidden;

    box-shadow:
        0 8px 28px rgba(15,23,42,.08);
}

.service-map-card iframe{
    display:block;
    width:100%;
    height:300px;
    border:0;
    border-radius:24px;
}

/* ==========================================================
   ANCHOR OFFSET
========================================================== */

#wavell,
#chermside,
#everton,
#windsor,
#nundah,
#northgate,
#clayfield,
#kedron{
    scroll-margin-top:110px;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:1024px){

    .service-hero-container{
        grid-template-columns:1fr;
        gap:48px;
        align-items:center;
        justify-content:center;
    }

    .service-hero-content{
        max-width:100%;
    }

    .service-map-wrap{
        justify-content:center;
        margin-top:0;
        margin-left:0;
        padding-left:0;
    }

    .service-map-card{
        width:100%;
        max-width:100%;
    }

    .service-map-card iframe{
        height:320px;
    }

    .service-title{
        font-size:46px;
    }

}

@media (max-width:768px){

    .service-hero{
        padding:48px 0 72px;
    }

    .service-hero-container{
        width:calc(100% - 32px);
    }

    .service-title{
        font-size:36px;
        letter-spacing:-1px;
    }

    .service-description{
        font-size:16px;
        margin-bottom:26px;
        max-width:100%;
    }

    .service-suburbs{
        grid-template-columns:repeat(2, max-content);
        gap:10px;
    }

    .service-pill{
        font-size:13px;
        padding:9px 14px;
    }

    .service-pill-icon{
        width:16px;
        height:16px;
        flex:0 0 16px;
    }

    .service-pill-icon svg{
        width:16px;
        height:16px;
    }

    .service-map-card iframe{
        height:300px;
    }

}

@media (max-width:480px){

    .service-title{
        font-size:32px;
    }

    .service-suburbs{
        grid-template-columns:1fr;
    }

    .service-pill{
        width:100%;
        justify-content:center;
    }

    .service-map-card iframe{
        height:280px;
    }

}

/* ==========================================================
   SERVICE AREA INTRO
========================================================== */

.service-area-intro{
    background:#F5F5F3;
    padding:96px 0;
}

.service-area-intro-container{
    max-width:1140px;
    width:calc(100% - 48px);
    margin:0 auto;
}

.service-area-label{
    margin:0 0 12px;

    color:#F58220;

    font-family:Poppins,sans-serif;
    font-size:12px;
    font-weight:700;

    letter-spacing:.08em;
    text-transform:uppercase;
}

.service-area-title{
    margin:0 0 22px;

    color:#202F78;

    font-family:Poppins,sans-serif;
    font-size:40px;
    font-weight:700;

    line-height:1.08;
    letter-spacing:-2px;
}

.service-area-description{
    max-width:760px;
    margin:0 0 22px;

    color:#55597A;

    font-size:18px;
    line-height:1.7;
}

.service-area-description:last-of-type{
    margin-bottom:36px;
}

/* ==========================================================
   SERVICE AREA BUTTON
========================================================== */

.service-area-button .wp-block-button__link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:10px 20px !important;

    background:#F58220 !important;
    color:#202F78 !important;

    border:none !important;
    border-radius:999px !important;

    font-family:Poppins,sans-serif;
    font-size:14px;
    font-weight:600;
    line-height:1;

    text-decoration:none !important;

    box-shadow:
        0 6px 24px -8px rgba(0,7,98,.12),
        0 2px 6px -2px rgba(0,7,98,.08);

    transition:
        background-color .2s ease,
        transform .2s ease,
        filter .2s ease;
}

/* Remove Gutenberg bold */
.service-area-button .wp-block-button__link strong{
    font-weight:600;
    color:inherit;
}

/* Arrow */
.service-area-button .wp-block-button__link::after{
    content:"→";
    font-size:16px;
    font-weight:500;
    margin-left:2px;
}

/* Hover */
.service-area-button .wp-block-button__link:hover,
.service-area-button .wp-block-button__link:focus{
    background:#E97814 !important;
    color:#202F78 !important;
    text-decoration:none !important;
    transform:translateY(-1px);
}

/* Active */
.service-area-button .wp-block-button__link:active{
    transform:translateY(0);
    background:#D86D10 !important;
}

/* Prevent Astra from turning links blue */
.service-area-button a,
.service-area-button a:hover,
.service-area-button a:visited,
.service-area-button a:focus{
    color:#202F78 !important;
}

/* ==========================================================
   SERVICE FAQ
========================================================== */

.service-faq{
    background:#fff;
    padding:96px 0;
}

.service-faq-container{
    max-width:1140px;
    width:calc(100% - 48px);
    margin:0 auto;

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px !important;
}

.service-faq-label{
    width:100%;
    margin:0 0 12px;

    color:#F58220;

    font-family:Poppins,sans-serif;
    font-size:12px;
    font-weight:700;

    letter-spacing:.08em;
    text-transform:uppercase;
    text-align:center;
}

.service-faq-title{
    width:100%;
    margin:0;

    color:#202F78;

    font-family:Poppins,sans-serif;
    font-size:40px;
    font-weight:700;

    line-height:1.08;
    letter-spacing:-2px;
    text-align:center;
}

.service-faq-list{
    width:100%;

    display:flex;
    flex-direction:column;
    gap:18px;

    margin-top:28px !important;
    padding:0;

    list-style:none;
}

.service-faq-list li{
    margin:0;
    padding:0;
}

.service-faq-item{
    background:#fff;

    border:1px solid #E6E6E0;
    border-radius:22px;

    padding:22px 20px;

    gap:6px !important;

    box-shadow:
        0 6px 20px rgba(15,23,42,.05);

    transition:.2s ease;
}

.service-faq-item:hover{
    transform:translateY(-2px);

    box-shadow:
        0 10px 28px rgba(15,23,42,.08);
}

.service-faq-question{
    margin:0;

    color:#202F78;

    font-family:Poppins,sans-serif;
    font-size:18px;
    font-weight:700;
    line-height:1.25;
}

.service-faq-answer{
    margin:0;

    color:#55597A;

    font-size:15px;
    line-height:1.7;
}

@media (max-width:768px){

    .service-faq{
        padding:72px 0;
    }

    .service-faq-container{
        width:calc(100% - 32px);
    }

    .service-faq-title{
        font-size:34px;
        margin-bottom:36px;
    }

    .service-faq-item{
        padding:22px 18px;
        border-radius:18px;
    }

    .service-faq-question{
        font-size:17px;
    }

    .service-faq-answer{
        font-size:14px;
    }

}
