  .service-area-page-intro-section {
        background: #ffffff;
        padding: 7rem 2.5rem;
        box-sizing: border-box;
    }

    .service-area-page-intro-section *,
    .service-area-page-intro-section *::before,
    .service-area-page-intro-section *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .service-area-page-intro-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* ── Two column layout ── */
    .service-area-page-intro-top-row {
        display: grid;
        grid-template-columns: 1fr 560px;
        gap: 4rem;
        align-items: center;
    }

    /* ── Left: text ── */
    .service-area-page-intro-text-col {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-area-page-intro-eyebrow {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: linear-gradient(135deg, #192969, #248BC6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .service-area-page-intro-heading {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(2rem, 3.2vw, 2.85rem);
        font-weight: 400;
        color: #0f1f5c;
        line-height: 1.15;
        letter-spacing: -0.025em;
    }

    .service-area-page-intro-divider {
        width: 40px;
        height: 2px;
        background: linear-gradient(135deg, #192969, #248BC6);
        border-radius: 2px;
        flex-shrink: 0;
    }

    .service-area-page-intro-body {
        font-size: clamp(1.0625rem, 1.5vw, 1.175rem);
        color: #4a5a78;
        line-height: 1.85;
        font-weight: 400;
    }

    /* ── CTA ── */
    .service-area-page-intro-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.9rem 1.75rem;
        background: linear-gradient(135deg, #192969, #248BC6);
        color: #ffffff;
        font-size: 0.9375rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 14px rgba(25, 41, 105, 0.25);
        width: fit-content;
    }

    .service-area-page-intro-cta svg {
        width: 16px;
        height: 16px;
        stroke: #ffffff;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.25s ease;
    }

    .service-area-page-intro-cta:hover {
        background: linear-gradient(135deg, #248BC6, #192969);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(25, 41, 105, 0.35);
    }

    .service-area-page-intro-cta:hover svg {
        transform: translateX(3px);
    }

    /* ── Right: image ── */
    .service-area-page-intro-image-col {
        position: sticky;
        top: 4rem;
        padding-top: 5rem;
    }

/* ── Image Slideshow Enhancement ── */
.service-area-page-intro-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 31, 92, 0.13);
    aspect-ratio: 560 / 390;
    background: linear-gradient(145deg, #e8f0fb, #d0e8f5);
    max-width: 560px;
    width: 100%;
}

.service-area-page-intro-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-area-page-intro-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.service-area-page-intro-slide.is-active {
    opacity: 1;
    position: relative;
}

.service-area-page-intro-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-area-page-intro-image-wrap:hover .service-area-page-intro-slide img {
    transform: scale(1.03);
}

/* ── Slideshow Dots ── */
.service-area-page-intro-slideshow-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.service-area-page-intro-slideshow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.service-area-page-intro-slideshow-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.service-area-page-intro-slideshow-dot.is-active {
    background: #ffffff;
    width: 24px;
    border-radius: 4px;
}

/* Update the column width to match */
.service-area-page-intro-top-row {
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 4rem;
    align-items: center;
}

/* ── Tablet ── */
@media (max-width: 1100px) {
    .service-area-page-intro-top-row {
        grid-template-columns: 1fr 420px;
        gap: 3rem;
    }
    
    .service-area-page-intro-image-wrap {
        max-width: 420px;
    }
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .service-area-page-intro-image-wrap {
        max-width: 100%;
    }
}
    /* ── Mobile ── */
    @media (max-width: 768px) {
        .service-area-page-intro-section { padding: 4.5rem 1.5rem; }

        .service-area-page-intro-top-row {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .service-area-page-intro-image-col {
            order: -1;
            position: static;
            padding-top: 0;
        }

        .service-area-page-intro-cta {
            width: 100%;
            justify-content: center;
        }
    }

 .service-area-page-services-section {
        background: #F9FAFB;
        padding: 7rem 2.5rem;
        box-sizing: border-box;
    }

    .service-area-page-services-section *,
    .service-area-page-services-section *::before,
    .service-area-page-services-section *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .service-area-page-services-container {
        max-width: 1060px;
        margin: 0 auto;
    }

    /* ── Section header ── */
    .service-area-page-services-header {
        text-align: center;
        margin-bottom: 5rem;
    }

    .service-area-page-services-eyebrow {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: linear-gradient(135deg, #192969, #248BC6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

    .service-area-page-services-heading {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(2rem, 4vw, 2.85rem);
        font-weight: 400;
        color: #0f1f5c;
        line-height: 1.15;
        letter-spacing: -0.025em;
    }

    /* ── Service block ── */
    .service-area-page-services-block {
        display: grid;
        grid-template-columns: 1fr 420px;
        gap: 4.5rem;
        align-items: center;
        padding: 4.5rem 0;
        border-top: 1px solid rgba(25, 41, 105, 0.08);
    }

    .service-area-page-services-block:first-of-type {
        border-top: none;
        padding-top: 0;
    }

    .service-area-page-services-block:last-of-type {
        padding-bottom: 0;
    }

    /* Flip: image left, text right */
    .service-area-page-services-block.is-flipped {
        grid-template-columns: 420px 1fr;
    }

    .service-area-page-services-block.is-flipped .service-area-page-services-image-col {
        order: -1;
    }

    /* ── Text column ── */
    .service-area-page-services-text-col {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .service-area-page-services-service-eyebrow {
        display: inline-block;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        background: linear-gradient(135deg, #192969, #248BC6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .service-area-page-services-service-heading {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        font-weight: 400;
        color: #0f1f5c;
        line-height: 1.15;
        letter-spacing: -0.02em;
    }

    .service-area-page-services-divider {
        width: 36px;
        height: 2px;
        background: linear-gradient(135deg, #192969, #248BC6);
        border-radius: 2px;
        flex-shrink: 0;
    }

    .service-area-page-services-body {
        font-size: clamp(1rem, 1.5vw, 1.0625rem);
        color: #4a5a78;
        line-height: 1.85;
    }

    .service-area-page-services-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.875rem 1.75rem;
        background: linear-gradient(135deg, #192969, #248BC6);
        color: #ffffff;
        font-size: 0.9375rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 14px rgba(25, 41, 105, 0.25);
        width: fit-content;
        margin-top: 0.5rem;
    }

    .service-area-page-services-cta svg {
        width: 15px;
        height: 15px;
        stroke: #ffffff;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.25s ease;
        flex-shrink: 0;
    }

    .service-area-page-services-cta:hover {
        background: linear-gradient(135deg, #248BC6, #192969);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(25, 41, 105, 0.35);
        cursor:pointer;
    }

    .service-area-page-services-cta:hover svg {
        transform: translateX(3px);
    }

    /* ── Image column ── */
    .service-area-page-services-image-col {
        position: sticky;
        top: 4rem;
    }

    .service-area-page-services-image-wrap {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 24px 60px rgba(15, 31, 92, 0.13);
        aspect-ratio: 1 / 1;
        background: linear-gradient(145deg, #e8f0fb, #d0e8f5);
    }

    .service-area-page-services-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    .service-area-page-services-image-wrap:hover img {
        transform: scale(1.03);
    }

    /* ── Scroll animation ── */
    .service-area-page-services-animate {
        opacity: 1;
        transform: translateY(0);
    }

    .service-area-page-services-js-ready .service-area-page-services-animate {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .service-area-page-services-js-ready .service-area-page-services-animate.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ── Tablet ── */
    @media (max-width: 900px) {
        .service-area-page-services-block,
        .service-area-page-services-block.is-flipped {
            grid-template-columns: 1fr 320px;
            gap: 3rem;
        }

        .service-area-page-services-block.is-flipped .service-area-page-services-image-col {
            order: -1;
        }
    }

    /* ── Mobile ── */
    @media (max-width: 700px) {
        .service-area-page-services-section { padding: 4.5rem 1.5rem; }
        .service-area-page-services-header { margin-bottom: 3rem; }

        .service-area-page-services-block,
        .service-area-page-services-block.is-flipped {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 3rem 0;
        }

        /* Image always on top on mobile */
        .service-area-page-services-image-col,
        .service-area-page-services-block.is-flipped .service-area-page-services-image-col {
            order: -1;
            position: static;
        }

        .service-area-page-services-image-wrap {
            aspect-ratio: 4 / 3;
        }

        .service-area-page-services-cta {
            width: 100%;
            justify-content: center;
        }
    }
.service-area-page-why-section {
    
        padding: 7rem 2.5rem;
        box-sizing: border-box;
    }

    .service-area-page-why-section *,
    .service-area-page-why-section *::before,
    .service-area-page-why-section *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .service-area-page-why-container {
        max-width: 1060px;
        margin: 0 auto;
    }

    /* ── Header ── */
    .service-area-page-why-header {
        max-width: 720px;
        margin: 0 auto 4rem;
        text-align: center;
    }

    .service-area-page-why-eyebrow {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: linear-gradient(135deg, #192969, #248BC6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

    .service-area-page-why-heading {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(2rem, 4vw, 2.85rem);
        font-weight: 400;
        color: #0f1f5c;
        line-height: 1.15;
        letter-spacing: -0.025em;
    }

    /* ── Grid ── */
    .service-area-page-why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    /* ── Card ── */
    .service-area-page-why-card {
        background: #F9FAFB;
        border: 1px solid rgba(25, 41, 105, 0.08);
        border-radius: 18px;
        padding: 2rem 1.75rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    }

    .service-area-page-why-card:hover {
        box-shadow: 0 12px 36px rgba(15, 31, 92, 0.09);
        border-color: rgba(36, 139, 198, 0.22);
        transform: translateY(-3px);
    }

    .service-area-page-why-card-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: linear-gradient(135deg, #192969, #248BC6);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .service-area-page-why-card-icon svg {
        width: 22px;
        height: 22px;
        stroke: #ffffff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .service-area-page-why-card-title {
        font-size: 1rem;
        font-weight: 700;
        color: #0f1f5c;
        line-height: 1.3;
    }

    .service-area-page-why-card-body {
        font-size: 0.9375rem;
        color: #4a5a78;
        line-height: 1.75;
        flex: 1;
    }

    /* ── Scroll animation ── */
    .service-area-page-why-animate {
        opacity: 1;
        transform: translateY(0);
    }

    .service-area-page-why-js-ready .service-area-page-why-animate {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .service-area-page-why-js-ready .service-area-page-why-animate.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ── Tablet ── */
    @media (max-width: 900px) {
        .service-area-page-why-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* ── Mobile ── */
    @media (max-width: 560px) {
        .service-area-page-why-section { padding: 4.5rem 1.5rem; }
        .service-area-page-why-grid { grid-template-columns: 1fr; }
    }
 .solar-and-battery-package-cta-section {
        position: relative;
        padding: 7rem 2.5rem;
        font-family: 'DM Sans', sans-serif;
        box-sizing: border-box;
        background-image: url('https://energysolutioncentre.com.au/wp-content/uploads/2026/09/energy-solution-centre-team-photo.webp');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .solar-and-battery-package-cta-section *,
    .solar-and-battery-package-cta-section *::before,
    .solar-and-battery-package-cta-section *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    /* ── Overlay — dark navy tint so white text + buttons read cleanly ── */
    .solar-and-battery-package-cta-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            135deg,
            rgba(10, 16, 56, 0.82) 0%,
            rgba(12, 40, 80, 0.75) 100%
        );
        z-index: 1;
    }

    /* ── Content sits above bg + overlay ── */
    .solar-and-battery-package-cta-container {
        position: relative;
        z-index: 2;
        max-width: 1060px;
        margin: 0 auto;
    }

    .solar-and-battery-package-cta-inner {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .solar-and-battery-package-cta-heading {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
        font-weight: 400;
        color: #ffffff;
        line-height: 1.15;
        letter-spacing: -0.025em;
        margin-bottom: 1.25rem;
    }

    .solar-and-battery-package-cta-body {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.82);
        line-height: 1.8;
        font-weight: 400;
        margin-bottom: 2rem;
    }

    /* Location link */
    .solar-and-battery-package-cta-location {
        display: inline-flex;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9375rem;
        font-weight: 600;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 2.5rem;
        position: relative;
        transition: gap 0.25s ease, color 0.25s ease;
    }

    .solar-and-battery-package-cta-location::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 1.5px;
        background: rgba(255, 255, 255, 0.5);
        transition: width 0.3s ease;
    }

    .solar-and-battery-package-cta-location:hover::after { width: 100%; }
    .solar-and-battery-package-cta-location:hover {
        gap: 0.75rem;
        color: #ffffff;
    }

    .solar-and-battery-package-cta-location svg {
        flex-shrink: 0;
        width: 16px;
        height: 16px;
        stroke: rgba(255, 255, 255, 0.75);
        transition: stroke 0.25s ease;
    }

    .solar-and-battery-package-cta-location:hover svg {
        stroke: #ffffff;
    }

    /* Buttons row */
    .solar-and-battery-package-cta-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .solar-and-battery-package-cta-btn-primary {
        display: inline-block;
        padding: 1rem 2.25rem;
        background: linear-gradient(135deg, #192969, #248BC6);
        color: #ffffff;
        font-family: 'DM Sans', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        white-space: nowrap;
    }

    .solar-and-battery-package-cta-btn-primary:hover {
        background: linear-gradient(135deg, #248BC6, #192969);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }

    .solar-and-battery-package-cta-btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2.25rem;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        font-family: 'DM Sans', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 10px;
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
        white-space: nowrap;
        backdrop-filter: blur(4px);
    }

    .solar-and-battery-package-cta-btn-secondary:hover {
        border-color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.18);
        transform: translateY(-2px);
    }

    .solar-and-battery-package-cta-btn-secondary svg {
        flex-shrink: 0;
        opacity: 0.85;
    }

    /* Scroll animation */
    .solar-and-battery-package-cta-animate {
        opacity: 1;
        transform: translateY(0);
    }

    .solar-and-battery-package-cta-js-ready .solar-and-battery-package-cta-animate {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .solar-and-battery-package-cta-js-ready .solar-and-battery-package-cta-animate.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    @media (max-width: 600px) {
        .solar-and-battery-package-cta-section {
            padding: 4.5rem 1.5rem;
            background-attachment: scroll; /* fixed causes glitches on iOS */
        }
        .solar-and-battery-package-cta-buttons { flex-direction: column; align-items: center; }
        .solar-and-battery-package-cta-btn-primary,
        .solar-and-battery-package-cta-btn-secondary { width: 100%; text-align: center; justify-content: center; }
    }

    /* Reduce parallax motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        .solar-and-battery-package-cta-section {
            background-attachment: scroll;
        }
    }
 .service-area-page-faq-section {
        background: #F9FAFB;
        padding: 7rem 2.5rem;
        box-sizing: border-box;
    }

    .service-area-page-faq-section *,
    .service-area-page-faq-section *::before,
    .service-area-page-faq-section *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .service-area-page-faq-container {
        max-width: 860px;
        margin: 0 auto;
    }

    /* ── Header ── */
    .service-area-page-faq-header {
        margin-bottom: 4rem;
        text-align: center;
    }

    .service-area-page-faq-eyebrow {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: linear-gradient(135deg, #192969, #248BC6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

    .service-area-page-faq-heading {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 400;
        color: #0f1f5c;
        line-height: 1.15;
        letter-spacing: -0.025em;
    }

    /* ── FAQ List ── */
    .service-area-page-faq-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* ── Item ── */
    .service-area-page-faq-item {
        border-bottom: 1px solid rgba(25, 41, 105, 0.09);
    }

    .service-area-page-faq-item:first-child {
        border-top: 1px solid rgba(25, 41, 105, 0.09);
    }

    /* ── Trigger ── */
    .service-area-page-faq-trigger {
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        padding: 1.75rem 0;
        text-align: left;
        transition: opacity 0.2s ease;
    }

    .service-area-page-faq-trigger:hover {
        opacity: 0.75;
    }

    .service-area-page-faq-question {
        font-size: 1.125rem;
        font-weight: 600;
        color: #0f1f5c;
        line-height: 1.4;
        flex: 1;
    }

    /* ── Icon ── */
    .service-area-page-faq-icon {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: linear-gradient(135deg, #192969, #248BC6);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.35s ease;
    }

    .service-area-page-faq-icon svg {
        width: 14px;
        height: 14px;
        stroke: #ffffff;
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .service-area-page-faq-item.is-open .service-area-page-faq-icon {
        transform: rotate(180deg);
    }

    /* ── Answer panel ── */
    .service-area-page-faq-answer {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease;
    }

    .service-area-page-faq-item.is-open .service-area-page-faq-answer {
        max-height: 600px;
    }

    .service-area-page-faq-answer-inner {
        padding-bottom: 1.75rem;
    }

    .service-area-page-faq-answer-inner p {
        font-size: 1rem;
        color: #4a5a78;
        line-height: 1.85;
        font-weight: 400;
    }

    /* ── Scroll animation ── */
    .service-area-page-faq-animate {
        opacity: 1;
        transform: translateY(0);
    }

    .service-area-page-faq-js-ready .service-area-page-faq-animate {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .service-area-page-faq-js-ready .service-area-page-faq-animate.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    @media (max-width: 680px) {
        .service-area-page-faq-section { padding: 4.5rem 1.5rem; }
        .service-area-page-faq-question { font-size: 1rem; }
        .service-area-page-faq-trigger { padding: 1.5rem 0; }
    }
    /* ── Image Slideshow Enhancement ── */
.service-area-page-intro-image-wrap {
    position: relative;
    cursor: pointer;
}

.service-area-page-intro-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-area-page-intro-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.service-area-page-intro-slide.is-active {
    opacity: 1;
    position: relative;
}

.service-area-page-intro-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Slideshow Controls ── */
.service-area-page-intro-slideshow-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.service-area-page-intro-slideshow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.service-area-page-intro-slideshow-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.service-area-page-intro-slideshow-dot.is-active {
    background: #ffffff;
    width: 24px;
    border-radius: 4px;
}

/* ── Lightbox Modal ── */
.service-area-page-intro-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-area-page-intro-lightbox.is-open {
    display: flex;
    opacity: 1;
}

.service-area-page-intro-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-area-page-intro-lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-area-page-intro-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.service-area-page-intro-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: rotate(90deg);
}

.service-area-page-intro-lightbox-close svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Navigation Arrows ── */
.service-area-page-intro-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.service-area-page-intro-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.service-area-page-intro-lightbox-nav.prev {
    left: 20px;
}

.service-area-page-intro-lightbox-nav.next {
    right: 20px;
}

.service-area-page-intro-lightbox-nav svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 768px) {
    .service-area-page-intro-lightbox-close {
        top: 20px;
        right: 20px;
    }
    
    .service-area-page-intro-lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .service-area-page-intro-lightbox-nav.prev {
        left: 10px;
    }
    
    .service-area-page-intro-lightbox-nav.next {
        right: 10px;
    }
}
/* ============================================================
   CANUNGRA SHOWROOM VIDEO SECTION
   Add to: style.css
   ============================================================ */

#canungra-showroom-video-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.canungra-showroom-video-background-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.canungra-showroom-video-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: canungra-video-float-orb 20s infinite ease-in-out;
}

.canungra-showroom-video-orb-1 {
    width: 30rem;
    height: 30rem;
    background: linear-gradient(135deg, #192969, #248BC6);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.canungra-showroom-video-orb-2 {
    width: 25rem;
    height: 25rem;
    background: linear-gradient(135deg, #248BC6, #192969);
    bottom: -10%;
    right: -5%;
    animation-delay: 3s;
}

.canungra-showroom-video-orb-3 {
    width: 20rem;
    height: 20rem;
    background: linear-gradient(135deg, #192969, #248BC6);
    top: 50%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes canungra-video-float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(50px, -50px) scale(1.1); }
    66%       { transform: translate(-30px, 30px) scale(0.9); }
}

.canungra-showroom-video-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.canungra-showroom-video-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.canungra-showroom-video-header.canungra-showroom-video-visible {
    opacity: 1;
    transform: translateY(0);
}

.canungra-showroom-video-heading {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    color: #0f1f5c;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
}

.canungra-showroom-video-heading-highlight {
    background: linear-gradient(135deg, #192969, #248BC6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.canungra-showroom-video-subtext {
    font-size: 1.0625rem;
    color: #4a5a78;
    line-height: 1.85;
    max-width: 48rem;
    margin: 0 auto;
}

/* ── Video player ── */
.canungra-showroom-video-player-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2rem 4rem rgba(25, 41, 105, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.canungra-showroom-video-player-wrapper.canungra-showroom-video-visible {
    opacity: 1;
    transform: translateY(0);
}

.canungra-showroom-video-player {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    background: #000;
}

.canungra-showroom-video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
}

.canungra-showroom-video-play-button {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #192969, #248BC6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 1rem 3rem rgba(25, 41, 105, 0.4);
    position: relative;
}

.canungra-showroom-video-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 1.5rem 4rem rgba(25, 41, 105, 0.5);
}

.canungra-showroom-video-play-button::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    border-radius: 50%;
    border: 2px solid rgba(25, 41, 105, 0.3);
    animation: canungra-video-pulse 2s infinite;
}

@keyframes canungra-video-pulse {
    0%   { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.canungra-showroom-video-play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 35px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 8px;
}

/* ── Info row below video ── */
.canungra-showroom-video-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 0.5rem;
}

.canungra-showroom-video-features-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    background: linear-gradient(135deg, #192969, #248BC6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
}

.canungra-showroom-video-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.canungra-showroom-video-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0f1f5c;
    line-height: 1.5;
}

.canungra-showroom-video-feature-item svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    margin-top: 2px;
    background: linear-gradient(135deg, rgba(25,41,105,0.08), rgba(36,139,198,0.08));
    border-radius: 50%;
    padding: 3px;
}

.canungra-showroom-video-walkin {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #4a5a78;
    font-style: italic;
}

/* Location column */
.canungra-showroom-video-location {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.canungra-showroom-video-location-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #4a5a78;
    line-height: 1.6;
}

.canungra-showroom-video-location-detail svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.canungra-showroom-video-location-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.canungra-showroom-video-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #192969, #248BC6);
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(25, 41, 105, 0.25);
    text-align: center;
}

.canungra-showroom-video-btn-primary:hover {
    background: linear-gradient(135deg, #248BC6, #192969);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(25, 41, 105, 0.35);
}

.canungra-showroom-video-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: #0f1f5c;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    border: 1.5px solid rgba(25, 41, 105, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.canungra-showroom-video-btn-secondary:hover {
    border-color: rgba(25, 41, 105, 0.4);
    background: rgba(25, 41, 105, 0.03);
    transform: translateY(-2px);
}

/* ── Fullscreen overlay ── */
.canungra-showroom-video-fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 100px 2rem 2rem;
}

.canungra-showroom-video-fullscreen-overlay.canungra-active {
    display: flex;
    opacity: 1;
}

.canungra-showroom-video-fullscreen-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.canungra-showroom-video-fullscreen-overlay.canungra-active .canungra-showroom-video-fullscreen-container {
    transform: scale(1);
}

.canungra-showroom-video-fullscreen-player {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.6);
}

.canungra-showroom-video-close-button {
    position: absolute;
    top: -70px;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #192969, #248BC6);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0.5rem 1.5rem rgba(25, 41, 105, 0.4);
    z-index: 10;
}

.canungra-showroom-video-close-button:hover {
    transform: scale(1.1) rotate(90deg);
}

.canungra-showroom-video-close-icon {
    color: white;
    font-size: 24px;
    font-weight: 300;
}

.canungra-showroom-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.canungra-showroom-video-fullscreen-container:hover .canungra-showroom-video-controls {
    opacity: 1;
    pointer-events: all;
}

.canungra-showroom-video-progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.canungra-showroom-video-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #192969, #248BC6);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
    position: relative;
}

.canungra-showroom-video-progress-bar::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.canungra-showroom-video-controls-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.canungra-showroom-video-control-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.canungra-showroom-video-control-button:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.1);
}

.canungra-showroom-video-control-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.canungra-showroom-video-time {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.canungra-showroom-video-volume-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.canungra-showroom-video-volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
}

.canungra-showroom-video-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.canungra-showroom-video-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    #canungra-showroom-video-section {
        padding: 4rem 1.5rem;
        min-height: auto;
        display: block;
    }

    .canungra-showroom-video-header { margin-bottom: 2rem; }

    .canungra-showroom-video-player-wrapper {
        max-width: 95%;
        margin-bottom: 2.5rem;
    }

    .canungra-showroom-video-play-button { width: 90px; height: 90px; }
    .canungra-showroom-video-play-icon { border-width: 15px 0 15px 26px; }

    .canungra-showroom-video-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .canungra-showroom-video-fullscreen-container { width: 95%; max-width: 500px; }
    .canungra-showroom-video-close-button { top: -60px; width: 45px; height: 45px; }
    .canungra-showroom-video-controls { padding: 1.5rem 1rem 1rem; }
    .canungra-showroom-video-volume-container { display: none; }

    .canungra-showroom-video-orb-1,
    .canungra-showroom-video-orb-2,
    .canungra-showroom-video-orb-3 { width: 15rem; height: 15rem; }
}
/* ── Better paragraph spacing in service body ── */
.service-area-page-services-body p {
    margin-bottom: 1.25rem;
}

.service-area-page-services-body p:last-child {
    margin-bottom: 0;
}
/* ── Fix service images to cover entire frame ── */
.service-area-page-services-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 31, 92, 0.13);
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, #e8f0fb, #d0e8f5);
    width: 100%;
    height: 100%;
}

.service-area-page-services-image-wrap img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.service-area-page-services-image-wrap:hover img {
    transform: scale(1.03);
}
/* ============================================================
   CANUNGRA — WHY CHOOSE ESC SECTION
   Add to: style.css
   ============================================================ */

.canungra-why-section {
    position: relative;
    padding: 7rem 2.5rem;
    box-sizing: border-box;
    overflow: hidden;

    /* Desktop background image */
    background-image: url('https://energysolutioncentre.com.au/wp-content/uploads/2026/09/energy-solution-centre-team-photo.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.canungra-why-section *,
.canungra-why-section *::before,
.canungra-why-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Dark overlay */
.canungra-why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 16, 56, 0.88) 0%, rgba(12, 40, 80, 0.82) 100%);
    z-index: 0;
}

.canungra-why-container {
    position: relative;
    z-index: 1;
    max-width: 1060px;
    margin: 0 auto;
}

/* ── Header ── */
.canungra-why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.canungra-why-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #6fa8dc, #248BC6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.canungra-why-heading {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

/* ── 2-column icon grid ── */
.canungra-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* ── Card ── */
.canungra-why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    backdrop-filter: blur(6px);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.canungra-why-card:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(36, 139, 198, 0.45);
    transform: translateY(-3px);
}

.canungra-why-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #192969, #248BC6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(25, 41, 105, 0.4);
}

.canungra-why-card-icon svg {
    width: 21px;
    height: 21px;
}

.canungra-why-card-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0.4rem;
}

.canungra-why-card-body {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
}

/* ── Scroll animation ── */
.canungra-why-animate {
    opacity: 1;
    transform: translateY(0);
}

.canungra-why-js-ready .canungra-why-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.canungra-why-js-ready .canungra-why-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Mobile — swap to mobile background image, single column ── */
@media (max-width: 768px) {
    .canungra-why-section {
        padding: 4.5rem 1.5rem;
        background-image: url('https://energysolutioncentre.com.au/wp-content/uploads/2026/09/energy-solution-centre-team-photo.webp');
        background-attachment: scroll;
    }

    .canungra-why-grid {
        grid-template-columns: 1fr;
    }

    .canungra-why-card {
        padding: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .canungra-why-section { background-attachment: scroll; }
}
/* ============================================================
   CANUNGRA — BATTERY REBATE SECTION
   Add to: style.css
   ============================================================ */

.canungra-rebate-section {
    background: #ffffff;
    padding: 7rem 2.5rem;
    box-sizing: border-box;
}

.canungra-rebate-section *,
.canungra-rebate-section *::before,
.canungra-rebate-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.canungra-rebate-container {
    max-width: 1060px;
    margin: 0 auto;
}

/* ── Two column grid ── */
.canungra-rebate-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 5rem;
    align-items: start;
}

/* ── Left: text ── */
.canungra-rebate-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.canungra-rebate-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #192969, #248BC6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Heading with highlight ── */
.canungra-rebate-heading {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.85rem, 3vw, 2.6rem);
    font-weight: 400;
    color: #0f1f5c;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.canungra-rebate-heading-highlight {
    display: inline;
    position: relative;
    background: linear-gradient(135deg, #192969, #248BC6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated underline sweep on the highlight */
.canungra-rebate-heading-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #192969, #248BC6);
    border-radius: 2px;
    opacity: 0.4;
}


/* ── Stat row ── */
.canungra-rebate-stat-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.canungra-rebate-stat {
    background: linear-gradient(135deg, rgba(25,41,105,0.05), rgba(36,139,198,0.05));
    border: 1px solid rgba(36,139,198,0.18);
    border-radius: 14px;
    padding: 1.1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 140px;
}

.canungra-rebate-stat-value {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    background: linear-gradient(135deg, #192969, #248BC6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.canungra-rebate-stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7a99;
    line-height: 1.3;
}

/* ── Body ── */
.canungra-rebate-body {
    font-size: clamp(1rem, 1.5vw, 1.0625rem);
    color: #4a5a78;
    line-height: 1.85;
}

/* ── Deadline callout ── */
.canungra-rebate-deadline {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(25,41,105,0.05), rgba(36,139,198,0.05));
    border-radius: 0 10px 10px 0;
    padding: 0.875rem 1.1rem;
    font-size: 0.9375rem;
    color: #4a5a78;
    line-height: 1.65;
}

.canungra-rebate-deadline svg {
    width: 18px;
    height: 18px;
    stroke: #248BC6;
    flex-shrink: 0;
    margin-top: 2px;
}

.canungra-rebate-deadline strong {
    color: #0f1f5c;
}

/* ── Buttons ── */
.canungra-rebate-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.canungra-rebate-btn-primary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #192969, #248BC6);
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(25, 41, 105, 0.25);
    white-space: nowrap;
}

.canungra-rebate-btn-primary:hover {
    background: linear-gradient(135deg, #248BC6, #192969);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(25, 41, 105, 0.35);
}

.canungra-rebate-btn-secondary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: #0f1f5c;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    border: 1.5px solid rgba(25, 41, 105, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.canungra-rebate-btn-secondary:hover {
    border-color: rgba(25, 41, 105, 0.4);
    background: rgba(25, 41, 105, 0.03);
    transform: translateY(-2px);
}

/* ── Right: image ── */
.canungra-rebate-image-col {
    position: sticky;
    top: 4rem;
    padding-top: 5rem;
}

.canungra-rebate-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 31, 92, 0.13);
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, #e8f0fb, #d0e8f5);
}

.canungra-rebate-image-wrap img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.canungra-rebate-image-wrap:hover img {
    transform: scale(1.03);
}

/* ── Scroll animation ── */
.canungra-rebate-animate {
    opacity: 1;
    transform: translateY(0);
}

.canungra-rebate-js-ready .canungra-rebate-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.canungra-rebate-js-ready .canungra-rebate-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Tablet ── */
@media (max-width: 900px) {
    .canungra-rebate-grid {
        grid-template-columns: 1fr 300px;
        gap: 3rem;
    }
}

/* ── Mobile ── */
@media (max-width: 700px) {
    .canungra-rebate-section { padding: 4.5rem 1.5rem; }

    .canungra-rebate-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .canungra-rebate-image-col {
        position: static;
        padding-top: 0;
        order: -1;
    }

    .canungra-rebate-image-wrap { aspect-ratio: 4 / 3; }

    .canungra-rebate-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .canungra-rebate-btn-primary,
    .canungra-rebate-btn-secondary {
        width: 100%;
        text-align: center;
    }
}
    .service-area-page-process-section {
        position: relative;
        padding: 7rem 2.5rem;
        box-sizing: border-box;
        overflow: hidden;
        background-image: url('https://energysolutioncentre.com.au/wp-content/uploads/2024/12/sigengy-solar-battery-charger-ev-inverter-gold-coast-installer-1.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .service-area-page-process-section *,
    .service-area-page-process-section *::before,
    .service-area-page-process-section *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    /* Overlay */
    .service-area-page-process-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            135deg,
            rgba(10, 16, 56, 0.88) 0%,
            rgba(12, 40, 80, 0.80) 100%
        );
        z-index: 0;
    }

    .service-area-page-process-container {
        position: relative;
        z-index: 1;
        max-width: 1100px;
        margin: 0 auto;
    }

    /* ── Header ── */
    .service-area-page-process-header {
        max-width: 700px;
        margin: 0 auto 4.5rem;
        text-align: center;
    }

    .service-area-page-process-eyebrow {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        background: linear-gradient(135deg, #6fa8dc, #248BC6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.25rem;
    }

    .service-area-page-process-heading {
        font-family: 'DM Serif Display', serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 400;
        color: #ffffff;
        line-height: 1.15;
        letter-spacing: -0.025em;
        margin-bottom: 1.25rem;
    }

    .service-area-page-process-subheading {
        font-size: clamp(1rem, 1.8vw, 1.125rem);
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.75;
        font-weight: 400;
    }

    /* ── Steps grid ── */
.service-area-page-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
    /* Connecting hairline */
    .service-area-page-process-steps::before {
        content: '';
        position: absolute;
        top: 44px;
        left: calc(10% + 20px);
        right: calc(10% + 20px);
        height: 1px;
        background: linear-gradient(90deg,
            transparent,
            rgba(255,255,255,0.15) 10%,
            rgba(255,255,255,0.15) 90%,
            transparent
        );
        z-index: 0;
        pointer-events: none;
    }

    /* ── Individual step card ── */
    .service-area-page-process-step {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
        padding: 2.5rem 1.75rem 2.25rem;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        backdrop-filter: blur(6px);
        transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-area-page-process-step:hover {
        background: rgba(255, 255, 255, 0.11);
        border-color: rgba(36, 139, 198, 0.45);
        transform: translateY(-5px);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
    }

    /* Step number badge */
    .service-area-page-process-step-number {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.6875rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        color: #ffffff;
        background: linear-gradient(135deg, #192969, #248BC6);
        border-radius: 20px;
        padding: 0.2rem 0.75rem;
        white-space: nowrap;
    }

    /* Icon circle */
    .service-area-page-process-icon-wrap {
          width: 72px;
    height: 72px;
        border-radius: 50%;
        background: linear-gradient(135deg, #192969 0%, #248BC6 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 8px 24px rgba(25, 41, 105, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-area-page-process-step:hover .service-area-page-process-icon-wrap {
        transform: scale(1.1);
        box-shadow: 0 12px 32px rgba(25, 41, 105, 0.55);
    }

    .service-area-page-process-icon-wrap svg {
    width: 32px;
    height: 32px;
        stroke: #ffffff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .service-area-page-process-step-title {
    font-size: 0.95rem;
    line-height: 1.3;
        color: #ffffff;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

    .service-area-page-process-step-body {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.68);
        line-height: 1.8;
        font-weight: 400;
    }

    /* ── Scroll animation ── */
    .service-area-page-process-animate {
        opacity: 1;
        transform: translateY(0);
    }

    .service-area-page-process-js-ready .service-area-page-process-animate {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .service-area-page-process-js-ready .service-area-page-process-animate.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* ── Tablet ── */
    @media (max-width: 1024px) {
        .service-area-page-process-steps {
              grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
            gap: 1.25rem;
        }
        .service-area-page-process-steps::before { display: none; }
    }

    @media (max-width: 700px) {
        .service-area-page-process-steps {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .service-area-page-process-section {
            padding: 2rem 1.25rem;
            background-attachment: scroll;
        }
        .service-area-page-process-steps { grid-template-columns: 1fr; }
        .service-area-page-process-header { margin-bottom: 3rem; }
    }

    @media (prefers-reduced-motion: reduce) {
        .service-area-page-process-section { background-attachment: scroll; }
    }
