/* ============================================================
   Area Page Extras — Supplementary styles for sections
   not present in template-location-page.php
   Loaded AFTER location-page-non-unique.css
   ============================================================ */

/* Why Choose List — Text wrapper for proper flex alignment */
.why-choose-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-choose-item-text strong {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin: 0 0 2px 0;
}

.why-choose-item-text span {
    font-size: 16px;
    color: #666;
    display: block;
    line-height: 1.6;
    margin: 0;
}

/* Hero Banner CTA buttons gap */
.inner-location-wrap .banntxt .abtn {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Services Intro (centered subtitle below H2 in key-services-section) */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.services-intro p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

/* Emergency Section — link styling (white text on dark bg) */
.emergency-services-section .emergency-details a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.emergency-services-section .emergency-details a:hover {
    opacity: 0.8;
}

/* CTA Buttons — icon matches text color */
.pricing-ctas a.first .svgnicon img {
    filter: invert(54%) sepia(71%) saturate(2156%) hue-rotate(157deg) brightness(97%) contrast(101%);
}

/* White icon on dark/colored backgrounds */
.emergency-services-section .pricing-ctas a.first .svgnicon img,
.dual-column .pricing-ctas a.first .svgnicon img {
    filter: brightness(0) invert(1);
}


/* Dual Columns Section (Commercial/Strata + Residential) */
.dual-columns-section {
    padding: 80px 0;
    background-color: #fff;
}

.dual-columns-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.dual-column {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    border-top: 4px solid #00B7DF;
}

.dual-column h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.dual-column h2 strong {
    color: #00B7DF;
}

.dual-column p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #444;
}

.dual-column ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.dual-column ul li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #444;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.dual-column ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00B7DF;
    font-weight: bold;
    font-size: 18px;
}

.dual-column .pricing-ctas {
    justify-content: flex-start;
    margin-top: 30px;
}

.dual-column .pricing-ctas a.first {
    background-color: #00B7DF;
    color: #fff;
    border: 2px solid #00B7DF;
}

.dual-column .pricing-ctas a.first:hover {
    background-color: #0090b3;
    border-color: #0090b3;
}

.dual-column .pricing-ctas a:not(.first) {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.dual-column .pricing-ctas a:not(.first):hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* Trust List (bullet list inside trust-section) */
.trust-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 700px;
    text-align: left;
}

.trust-list li {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    padding: 12px 0 12px 32px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.trust-list li:last-child {
    border-bottom: none;
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 22px;
    height: 22px;
    background: #00B7DF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    top: 15px;
}

.trust-list li strong {
    color: #1a1a1a;
}

/* Google Map Embed */
.map-embed-section {
    padding: 0;
    background: #fff;
}

.map-embed-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Suburbs Served (pills/tags layout) */
.suburbs-served-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.suburbs-served-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.suburbs-served-content h2 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.suburbs-served-content h2 strong {
    color: #00B7DF;
}

.suburbs-served-content > p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.suburbs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.suburbs-list li {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .dual-columns-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dual-column h2,
    .suburbs-served-content h2 {
        font-size: 32px;
    }

    .dual-columns-wrapper,
    .suburbs-served-content {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .dual-columns-section,
    .suburbs-served-section {
        padding: 60px 0;
    }

    .dual-column {
        padding: 30px;
    }

    .dual-column h2 {
        font-size: 26px;
    }

    .dual-column p,
    .dual-column ul li {
        font-size: 16px;
    }

    .dual-column .pricing-ctas {
        flex-direction: column;
    }

    .dual-column .pricing-ctas a {
        width: 100%;
        justify-content: center;
    }

    .suburbs-served-content h2 {
        font-size: 28px;
    }

    .suburbs-served-content > p {
        font-size: 17px;
    }

    .suburbs-list li {
        font-size: 14px;
        padding: 10px 20px;
    }

    .map-embed-section iframe {
        height: 300px;
    }

    .dual-columns-wrapper,
    .suburbs-served-content {
        padding: 0 20px;
    }

    .services-intro p {
        font-size: 17px;
    }

    .trust-list li {
        font-size: 16px;
        padding: 10px 0 10px 28px;
    }

    .trust-list li::before {
        width: 20px;
        height: 20px;
        font-size: 11px;
        top: 12px;
    }
}
