/* ==================================================
   SERVICES PAGE
================================================== */

/* ==================================================
   1. SERVICES HERO
================================================== */

.services-hero {
    position: relative;
    background:
        linear-gradient(
            rgba(20,30,50,.62),
            rgba(20,30,50,.62)
        ),
        url("images/services_hero.jpg");
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
    color: var(--ns-white);

    /* same internal-page hero size */
    min-height: 520px;
    padding: 110px 0;

    display: flex;
    align-items: center;
    text-align: center;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-label {
    display: inline-block;
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 14px;
}

.services-hero h1 {
    font-size: 54px;
    line-height: 1.08;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.services-hero p {
    color: rgba(255,255,255,.92);
    font-size: 19px;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto 34px;
}

.services-hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.services-hero .btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.services-hero .btn-secondary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--ns-blue);
}

/* Responsive */

@media (max-width: 900px) {
    .services-hero {
        min-height: 460px;
        padding: 90px 0;
    }

    .services-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 650px) {
    .services-hero {
        min-height: 430px;
        padding: 80px 0;
    }

    .services-hero h1 {
        font-size: 34px;
    }

    .services-hero p {
        font-size: 16px;
    }

    .services-hero-buttons {
        flex-direction: column;
    }

    .services-hero-buttons a {
        width: 100%;
    }
}

/* ==================================================
   2. SERVICES SUBMENU
================================================== */

.services-nav-section {
    background: #444B57;
    color: var(--ns-white);
}

.services-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 34px;
    padding: 18px 0;
}

.services-nav a {
    position: relative;
    color: var(--ns-white);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color .25s ease;
}

.services-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--ns-red);
    transition: width .25s ease;
}

.services-nav a:hover {
    color: var(--ns-red);
}

.services-nav a:hover::after {
    width: 100%;
}

/* ==================================================
   3. SERVICES INTRO
================================================== */

.services-intro {
    background: var(--ns-white);
    padding: 90px 0 35px;
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.services-intro h2 {
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.services-intro p {
    color: #5f668f;
    font-size: 17px;
    line-height: 1.75;
    max-width: 820px;
    margin: 0 auto 16px;
}

.services-intro p:last-child {
    margin-bottom: 0;
}

/* Responsive */

@media (max-width: 900px) {
    .services-intro {
        padding: 75px 0 25px;
    }

    .services-intro h2 {
        font-size: 36px;
    }
}

@media (max-width: 650px) {
    .services-intro {
        padding: 60px 0 15px;
    }

    .services-intro h2 {
        font-size: 32px;
    }

    .services-intro p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* ==================================================
   4. SERVICE CATEGORY SECTIONS
================================================== */

.services-category {
    background: var(--ns-white);
    padding: 100px 0;
}

.services-category-light {
    background: var(--ns-light);
}

.services-category-header {
    max-width: 820px;
    margin: 0 auto 52px;
    text-align: center;
}

.services-category-header h2 {
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.services-category-header p {
    color: #5f668f;
    font-size: 17px;
    line-height: 1.6;
}

/* ==================================================
   5.ROOFING SERVICES CARDS
================================================== */

.roofing-services-section {
    background: var(--ns-white);
    padding: 100px 0;
}

.roofing-services-header {
    max-width: 820px;
    margin: 0 auto 52px;
    text-align: center;
}

.roofing-services-header h2 {
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 0;
}

.roofing-services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.roofing-service-card {
    grid-column: span 4;
    background: var(--ns-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.13);
    transition: transform .28s ease, box-shadow .28s ease;
}

.roofing-service-card:nth-child(n+4) {
    grid-column: span 3;
}

.roofing-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,.2);
}

.roofing-service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .35s ease;
}

.roofing-service-card:hover img {
    transform: scale(1.05);
}

.roofing-service-content {
    padding: 28px 26px 30px;
}

.roofing-service-content h3 {
    color: var(--ns-blue);
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.roofing-service-content p {
    color: #4f5d8c;
    font-size: 15px;
    line-height: 1.55;
}

/* Responsive */

@media (max-width: 900px) {
    .roofing-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roofing-service-card,
    .roofing-service-card:nth-child(n+4) {
        grid-column: auto;
    }
}

@media (max-width: 650px) {
    .roofing-services-section {
        padding: 70px 0;
    }

    .roofing-services-header h2 {
        font-size: 34px;
    }

    .roofing-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   6.GUTTER SERVICES CARDS
================================================== */

.gutter-services-section {
    background: var(--ns-light);
    padding: 100px 0;
}

.gutter-services-header {
    max-width: 820px;
    margin: 0 auto 52px;
    text-align: center;
}

.gutter-services-header h2 {
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 0;
}

.gutter-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gutter-service-card {
    background: var(--ns-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.13);
    transition: transform .28s ease, box-shadow .28s ease;
}

.gutter-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,.20);
}

.gutter-service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .35s ease;
}

.gutter-service-card:hover img {
    transform: scale(1.05);
}

.gutter-service-content {
    padding: 28px 26px 30px;
}

.gutter-service-content h3 {
    color: var(--ns-blue);
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.gutter-service-content p {
    color: #4f5d8c;
    font-size: 15px;
    line-height: 1.55;
}

/* Responsive */

@media (max-width: 1100px) {
    .gutter-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {

    .gutter-services-section {
        padding: 70px 0;
    }

    .gutter-services-header h2 {
        font-size: 34px;
    }

    .gutter-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   7.ASBESTOS SERVICES
================================================== */

.asbestos-services-section {
    background: var(--ns-white);
    padding: 100px 0;
}

.asbestos-services-header {
    max-width: 820px;
    margin: 0 auto 52px;
    text-align: center;
}

.asbestos-services-header h2 {
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 0;
}

.asbestos-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.asbestos-service-card {
    background: var(--ns-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.13);
    transition: transform .28s ease, box-shadow .28s ease;
}

.asbestos-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,.20);
}

.asbestos-service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .35s ease;
}

.asbestos-service-card:hover img {
    transform: scale(1.05);
}

.asbestos-service-content {
    padding: 28px 26px 30px;
}

.asbestos-service-content h3 {
    color: var(--ns-blue);
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.asbestos-service-content p {
    color: #4f5d8c;
    font-size: 15px;
    line-height: 1.55;
}

/* Responsive */

@media (max-width: 900px) {
    .asbestos-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .asbestos-services-section {
        padding: 70px 0;
    }

    .asbestos-services-header h2 {
        font-size: 34px;
    }

    .asbestos-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   8.ADDITIONAL ROOFING SERVICES
================================================== */

.additional-services-section {
    background: var(--ns-light);
    padding: 100px 0;
}

.additional-services-header {
    max-width: 820px;
    margin: 0 auto 52px;
    text-align: center;
}

.additional-services-header h2 {
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 0;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.additional-service-card {
    background: var(--ns-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.13);
    transition: transform .28s ease, box-shadow .28s ease;
}

.additional-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,.20);
}

.additional-service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .35s ease;
}

.additional-service-card:hover img {
    transform: scale(1.05);
}

.additional-service-content {
    padding: 28px 26px 30px;
}

.additional-service-content h3 {
    color: var(--ns-blue);
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.additional-service-content p {
    color: #4f5d8c;
    font-size: 15px;
    line-height: 1.55;
}

/* Responsive */

@media (max-width:1100px){
    .additional-services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width: 900px) {
    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:700px){
    .additional-services-grid{
        grid-template-columns:1fr;
    }
}

@media (max-width: 650px) {

    .additional-services-section {
        padding: 70px 0;
    }

    .additional-services-header h2 {
        font-size: 34px;
    }

    .additional-services-grid {
        grid-template-columns: 1fr;
    }

}

/* ==================================================
   9.AREAS WE SERVICE
================================================== */

.services-areas-section {
    background: var(--ns-white);
    padding: 100px 0;
}

.services-areas-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.services-areas-content h2 {
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 22px;
}

.services-areas-content p {
    color: var(--ns-blue);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.services-area-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ns-red);
    color: var(--ns-white);
    padding: 15px 26px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    transition: .25s ease;
}

.services-area-button:hover {
    background: var(--ns-red-dark);
    transform: translateY(-2px);
}

.services-areas-image {
    margin-top: 36px;
}

.services-areas-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--ns-shadow);
}

.services-suburb-panel {
    background: var(--ns-light);
    border-left: 5px solid var(--ns-red);
    border-radius: 12px;
    padding: 38px;
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
}

.services-suburb-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 22px;
}

.services-suburb-list span {
    position: relative;
    padding-left: 22px;
    color: var(--ns-blue);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
}

.services-suburb-list span::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ns-red);
    font-weight: 900;
}

.services-areas-note {
    margin: 0 0 28px;
    padding-left: 18px;
    border-left: 4px solid var(--ns-red);
    color: #5f668f;
    font-size: 16px;
    line-height: 1.7;
}

.services-areas-note strong {
    color: var(--ns-blue);
}

/* Service Links */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--ns-red);
    font-size: 15px;
    font-weight: 700;
    transition: .25s ease;
}

.service-link:hover {
    color: var(--ns-red-dark);
    gap: 10px;
}

/* Responsive */

@media (max-width: 1000px) {
    .services-areas-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .services-areas-image img {
        height: 320px;
    }
}

@media (max-width: 700px) {
    .services-areas-section {
        padding: 70px 0;
    }

    .services-areas-content h2 {
        font-size: 34px;
    }

    .services-suburb-panel {
        padding: 28px 22px;
    }

    .services-suburb-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 13px 18px;
    }
}

@media (max-width: 430px) {
    .services-suburb-list {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   10. FINAL CTA
================================================== */

.services-cta {
    background:
        linear-gradient(
            rgba(255,255,255,.35),
            rgba(255,255,255,.35)
        ),
        url("images/cta_background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 110px 0 90px;
    text-align: center;
}

.services-cta-content {
    max-width: 900px;
    margin: 0 auto;

    /* Lift everything off the roof ridge */
    transform: translateY(-25px);
}

.services-cta h2 {
    color: var(--ns-blue);
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.services-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.services-cta-buttons .btn,
.services-cta-buttons .btn-secondary {
    min-width: 220px;
}

.services-cta-text{
    font-size:18px;
    font-weight:700;
    color:var(--ns-blue);
    line-height:1.7;
    max-width:780px;
    margin:0 auto 35px;
}

/* ==================================================
   11. RESPONSIVE
================================================== */

@media (max-width: 1100px) {
    .services-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .services-hero h1,
    .services-intro h2,
    .services-category-header h2,
    .services-areas h2,
    .services-cta h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .services-hero {
        padding: 90px 0;
    }

    .services-hero h1 {
        font-size: 34px;
    }

    .services-hero p {
        font-size: 16px;
    }

    .services-intro,
    .services-category,
    .services-areas {
        padding: 70px 0;
    }

    .services-grid,
    .services-grid-four {
        grid-template-columns: 1fr;
    }

    .services-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .services-cta {
        padding: 70px 0;
    }

    .services-cta-buttons,
    .services-hero-buttons {
        flex-direction: column;
    }

    .services-cta-buttons a,
    .services-hero-buttons a {
        width: 100%;
    }
}