/* ===========================
   SINGLE SUBURB – HERO BANNER
   =========================== */

/* Heading + paragraph in the blue banner */
.about-banner h1 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-banner p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

/* Optional extra padding like the About page */
.pt-5,
.py-5 {
    padding-top: 3rem !important;
    padding-right: 30px;
}

/* Blue background and layout */
.image-background-with-elements {
    background-color: #023776;
    position: relative;
    background-repeat: no-repeat;
    overflow: hidden;
    background-position: 100% 50%;
}

/* Top-left circle graphic */
.image-background-with-elements::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 211px;
    height: 159px;
    background: url("../images/banner-top-left.svg");
    background-size: cover;
    z-index: 1;
}

/* Bottom-right semi-circle graphic */
.image-background-with-elements::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(calc(-100% + 50px), 0);
    width: 215px;
    height: 107.5px;
    background: url("../images/banner-bottom-right.svg");
    background-size: cover;
    z-index: 2;
}

/* Make everything inside the banner white (heading, text, etc.) */
.image-background-with-elements * {
    color: #ffffff;
}

/* Right-hand hero image */
.image-background-with-elements img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    width: 50%;
    height: 100%;
    object-fit: cover;
}

/* ===========================
   RESPONSIVE TWEAKS
   =========================== */

@media screen and (max-width: 1399px) {
    .image-background-with-elements::before,
    .image-background-with-elements::after {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .image-background-with-elements img {
        display: none;
    }
}
.whoweare-btn a {
    background: #13A89E;          /* teal background */
    color: #ffffff;              /* white text */
    padding: 14px 40px;
    display: inline-block;
    border-radius: 50px;         /* pill shape */
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.whoweare-btn a:hover {
    background: #0b8279;         /* slightly darker teal on hover */
    color: #ffffff;
    text-decoration: none;
}

/* ===========================
   WHY CHOOSE – SINGLE SUBURB
   =========================== */

.suburb-why-choose {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.suburb-why-choose * {
    color: #ffffff;
    font-family: Montserrat, sans-serif;
}

.suburb-why-choose-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin: 0 0 50px;
}

/* grid / items */
.suburb-why-choose-grid {
    justify-content: center;
}

.suburb-why-choose-item {
    margin-bottom: 30px;
}

.suburb-why-choose-inner {
    padding: 20px 25px;
}

/* icon */
.suburb-why-choose-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
}

.suburb-why-choose-icon img {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* heading + text */
.suburb-why-choose-heading {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin: 0 0 10px;
}

.suburb-why-choose-text {
    font-size: 14px;
    line-height: 24px;
    margin: 0 auto;
    max-width: 320px;
}

/* responsive tweaks */
@media (max-width: 991px) {
    .suburb-why-choose {
        padding: 60px 0;
    }

    .suburb-why-choose-title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .suburb-why-choose {
        padding: 50px 0;
    }

    .suburb-why-choose-inner {
        padding: 15px 10px;
    }

    .suburb-why-choose-title {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 30px;
    }
}

/* ===========================
   FAQ SECTION – SINGLE SUBURB
   =========================== */

.suburb-faq {
    padding: 80px 0;
    background-color: #f5f7fb;
}

.suburb-faq-title {
    font-family: Montserrat, sans-serif;
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
    color: #0b50a1;
    margin: 0 0 40px;
}

.suburb-faq-list {
    margin: 0 auto;
}

/* each item / card */
.suburb-faq-item {
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 12px;
    overflow: hidden;
}

/* question bar */
.suburb-faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 16px 52px 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #303030;
    outline: none;
}

.suburb-faq-question-text {
    display: block;
}

/* right icon container */
.suburb-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.suburb-faq-icon img {
    display: block;
    width: 16px;
    height: 16px;
}

/* default: show down arrow, hide up arrow */
.suburb-faq-icon .icon-up {
    display: none;
}
.suburb-faq-icon .icon-down {
    display: inline-block;
}

/* answer area */
.suburb-faq-answer {
    padding: 16px 24px 20px;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #4a4a4a;
    border-top: 1px solid #e5e7eb;
}

/* active (open) state */
.suburb-faq-item.is-active .suburb-faq-question {
    background-color: #0b50a1;
    color: #ffffff;
}

.suburb-faq-item.is-active .suburb-faq-question-text {
    color: #ffffff;
}

.suburb-faq-item.is-active .suburb-faq-icon .icon-up {
    display: inline-block;
}

.suburb-faq-item.is-active .suburb-faq-icon .icon-down {
    display: none;
}

/* small screens */
@media (max-width: 767px) {
    .suburb-faq {
        padding: 60px 0;
    }

    .suburb-faq-title {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 30px;
    }

    .suburb-faq-question {
        padding: 14px 46px 14px 18px;
        font-size: 14px;
    }

    .suburb-faq-answer {
        padding: 14px 18px 18px;
    }
}
/* Requirements tick list */
.req-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.req-list li {
    position: relative;
    padding-left: 32px; /* space for tick */
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.req-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url('/wp-content/themes/aussiebestcare/images/req-tick.png');
    background-size: contain;
    background-repeat: no-repeat;
}
/* ================================
   Support Text Section (Shared Styling)
   ================================ */

.suburb-support-text {
    padding: 60px 15px;
}

.suburb-support-text h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    color: #0b50a1; /* Your primary heading color */
    margin-bottom: 20px;
}

.suburb-support-text p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 20px;
}


/* ===============================
   SUBURB SERVICES SECTION
   =============================== */

.suburb-services-section {
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

/* FULL-WIDTH BLUE BACKGROUND */
.suburb-services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: url('/wp-content/themes/aussiebestcare/images/suburb-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 90px 0 0 90px;
    z-index: -1;
}

/* INNER CONTENT LAYOUT */
.suburb-services-inner {
    position: relative;
    z-index: 2;
}

/* LEFT IMAGE */
.suburb-services-hero img {
    width: 100%;
    max-width: 430px;
    display: block;
    margin: 0 auto;
}

/* CARD AREA (RIGHT SIDE) */
.suburb-services-card {
    padding: 40px 30px;
    color: #fff;
}

.suburb-services-heading {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

/* SERVICE LIST */
.suburb-services-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.suburb-service-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.suburb-service-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.suburb-service-title {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* BUTTON */
.suburb-services-btn-wrap {
    margin-top: 20px;
}

.suburb-services-btn {
    display: inline-block;
    background: #fff;
    color: #0A4FA3;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.suburb-services-btn:hover {
    background: #0A4FA3;
    color: #fff;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 991px) {
    .suburb-services-bg {
        border-radius: 0;
        background-position: right;
        height: 100%;
    }

    .suburb-services-card {
        text-align: left;
    }

    .suburb-service-item {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .suburb-services-section {
        padding: 60px 0;
    }

    .suburb-services-heading {
        font-size: 26px;
    }

    .suburb-service-title {
        font-size: 15px;
    }
}
/* ===============================
   SINGLE SUBURB – CTA SECTION
   =============================== */

.suburb-cta-section {
    background-color: #0B50A1; /* same blue as design */
    padding: 80px 0;
    color: #ffffff;
}

.suburb-cta-inner {
    max-width: 760px;
    margin: 0 auto;
}

.suburb-cta-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.suburb-cta-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: #ffffff;
    margin: 0 auto 32px;
}

/* button – 14px as requested */
.suburb-cta-button-wrap {
    margin-top: 10px;
}

.suburb-cta-button {
    display: inline-block;
    min-width: 190px;
    padding: 12px 40px;
    border-radius: 999px;
    background-color: #13A89E;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;         /* ✅ 14px text */
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.suburb-cta-button:hover {
    background-color: #0B50A1;
    color: #ffffff;
    border: 1px solid #ffffff;
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .suburb-cta-section {
        padding: 60px 20px;
    }

    .suburb-cta-heading {
        font-size: 26px;
    }

    .suburb-cta-description {
        font-size: 15px;
    }
}
