/* Service intro */
.service-intro {
    background: var(--color-white);
}

.service-intro__grid {
    display: grid;
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 72px;
}

.service-intro__image img {
    width: 100%;
    min-height: 580px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 24px 58px rgba(15, 45, 82, 0.12);
}

.service-intro__content p,
.service-benefits__content p,
.section-heading p,
.services-hub-card__content p {
    margin-bottom: 22px;
}

/* Services included */
.service-included {
    background: #f7fbff;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-feature-card {
    display: flex;
    flex-direction: column;
    min-height: 230px;
    padding: 32px;
    border: 1px solid rgba(15, 45, 82, 0.08);
    border-radius: 24px;
    background: var(--color-white);
    box-shadow: 0 14px 34px rgba(15, 45, 82, 0.05);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.service-feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(98, 184, 50, 0.22);
    box-shadow: 0 20px 40px rgba(15, 45, 82, 0.08);
}

.service-feature-card h3 {
    margin: 0 0 14px;
    color: var(--color-navy);
    font-size: 1.15rem;
    line-height: 1.28;
}

.service-feature-card p {
    font-size: 0.96rem;
    line-height: 1.72;
}

/* Benefits */
.service-benefits {
    background: #ffffff;
}

.service-benefits__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    align-items: center;
    gap: 72px;
}

.service-benefits__card {
    padding: 42px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(98, 184, 50, 0.16), transparent 34%),
        linear-gradient(135deg, #0f2d52 0%, #123b69 100%);
    color: var(--color-white);
    box-shadow: 0 24px 58px rgba(15, 45, 82, 0.16);
}

.service-benefits__card h3 {
    margin: 0 0 16px;
    color: var(--color-white);
    font-size: clamp(1.4rem, 1.2727rem + 0.6061vw, 2rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.service-benefits__card p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
}

/* FAQ */
.service-faq {
    background: #f7fbff;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.faq-item {
    padding: 30px 32px;
    border: 1px solid rgba(15, 45, 82, 0.08);
    border-radius: 22px;
    background: var(--color-white);
    box-shadow: 0 12px 28px rgba(15, 45, 82, 0.04);
}

.faq-item h3 {
    margin: 0 0 10px;
    color: var(--color-navy);
    font-size: 1.08rem;
    line-height: 1.35;
}

.faq-item p {
    font-size: 0.98rem;
    margin-left: 0px;
}

.service-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg,
            #f9fcff 0%,
            #f4f8fc 100%);
}

.service-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(98, 184, 50, .05);
}

.service-hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(31, 159, 229, .04);
}

/* Page hero buttons */
.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* Shared service pills/lists */
.industries-list,
.areas-list {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.industries-list span,
.areas-list a {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--color-white);
    border: 1px solid rgba(15, 45, 82, 0.08);
    color: var(--color-navy);
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 45, 82, 0.04);
}

.areas-list a:hover {
    color: var(--color-green);
    border-color: rgba(98, 184, 50, 0.28);
    background: rgba(98, 184, 50, 0.06);
}

.check-list {
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.75;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
}

/*  SERVICES HUB */
.services-hub {
    background: #ffffff;
}

.services-hub__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.services-hub-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(15, 45, 82, 0.08);
    background: var(--color-white);
    box-shadow: 0 16px 40px rgba(15, 45, 82, 0.06);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.services-hub-card:hover {
    transform: translateY(-4px);
    border-color: rgba(98, 184, 50, 0.25);
    box-shadow: 0 24px 54px rgba(15, 45, 82, 0.10);
}

.services-hub-card__image {
    overflow: hidden;
}

.services-hub-card__image img {
    width: 100%;
    height: 300px;
    /* aspect-ratio: 16 / 9; */
    object-fit: cover;
    transition: transform .4s ease;
}

.services-hub-card:hover .services-hub-card__image img {
    transform: scale(1.04);
}

.services-hub-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 32px;
}

.services-hub-card__content h3 {
    margin: 0 0 14px;
    color: var(--color-navy);
    font-size: clamp(1.3rem, 1.215rem + .40vw, 1.7rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.services-hub-card__content ul {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.services-hub-card__content li {
    position: relative;
    padding-left: 22px;
    color: var(--color-text);
    line-height: 1.7;
}

.services-hub-card__content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-green);
}

.services-hub-card__content a {
    margin-top: auto;
    font-weight: 700;
    color: var(--color-green);
}

.services-hub-card__content a:hover {
    color: var(--color-navy);
}

/* SECONDARY SERVICE */
.secondary-service {
    background: #f7fbff;
}

.secondary-service__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.secondary-service__content p {
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* PAGE SERVICE-AREAS */
.service-areas-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 760px;
    background-image: url("../images/service-areas/nj-service-map.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.service-areas-hero .page-hero__content {
    max-width: 640px;
}

.service-areas-hero .page-hero__content h1 {
    font-size: clamp(2rem, 1.7348rem + 1.2626vw, 3.25rem);
    line-height: 1.12;
    margin-bottom: 0;
}

.service-areas-hero .page-hero__content h1+span {
    position: relative;
    display: block;
    color: var(--color-navy);
    font-weight: 700;
    font-size: clamp(1.25rem, 1.1439rem + 0.5051vw, 1.75rem);
    margin-bottom: 38px;
    line-height: 1.5;
}

.service-areas-hero .page-hero__content h1+span::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 56px;
    height: 3px;
    background: var(--color-green);
    left: 0;
    bottom: -10px;
}

.service-areas-hero .service-intro__image {
    display: none;
}

.service-areas-hero .page-hero__content p {
    font-size: clamp(1.05rem, 1.0341rem + 0.0758vw, 1.125rem);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 32px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 220px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 45, 82, 0.06);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 45, 82, 0.08);
    backdrop-filter: blur(10px);
}

.hero-stat__icon {
    display: grid;
    place-items: center;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green), #4f9f2d);
    color: #fff;
}

.hero-stat__icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-stat__text {
    display: flex;
    flex-direction: column;
    color: var(--color-navy);
    line-height: 1.1;
}

.hero-stat__text strong {
    /* font-family: var(--font-heading); */
    font-size: 1.28rem;
    font-weight: 800;
}

.hero-stat__text small {
    margin-top: 3px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-navy);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.area-card {
    position: relative;
    overflow: hidden;
    min-height: 112px;
    padding: 24px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(98, 184, 50, 0.12), transparent 36%),
        var(--color-white);
    border: 1px solid rgba(15, 45, 82, 0.08);
    box-shadow: 0 14px 34px rgba(15, 45, 82, 0.05);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.area-card:hover {
    transform: translateY(-3px);
    border-color: rgba(98, 184, 50, 0.24);
    box-shadow: 0 22px 48px rgba(15, 45, 82, 0.09);
}

.area-card span {
    display: block;
    color: var(--color-navy);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
}

.area-card small {
    display: block;
    margin-top: 8px;
    color: var(--color-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.map-section {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.map-section__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.service-map iframe {
    width: 100%;
    min-height: 420px;
    border: none;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.local-benefits .service-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 980px;
    margin-inline: auto;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .page-hero__actions {
        justify-content: center;
    }

    .service-hero::before {
        width: 240px;
        height: 240px;
        top: -90px;
        right: -90px;
    }

    .service-hero::after {
        width: 180px;
        height: 180px;
        bottom: -70px;
        left: -70px;
    }

    .service-areas-hero {
        background-image: none;
        background:
            radial-gradient(circle at top left,
                rgba(98, 184, 50, 0.12),
                transparent 32%),
            radial-gradient(circle at top right,
                rgba(31, 159, 229, 0.08),
                transparent 28%),
            linear-gradient(135deg,
                #f8fbff 0%,
                #ffffff 50%,
                #f5faf2 100%);
        min-height: auto;
        padding: 64px 0;
    }

    .service-areas-hero .service-intro__image {
        display: block;
        margin-bottom: 32px;
    }

    .service-areas-hero .page-hero__content {
        max-width: 100%;
    }

    .service-areas-hero .page-hero__content h1+span::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .service-areas-hero::after {
        content: "";
        position: absolute;
        top: -140px;
        right: -140px;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: rgba(31, 159, 229, 0.05);
        pointer-events: none;
    }

    .hero-stats {
        justify-content: center;
    }

    .service-intro__grid,
    .service-benefits__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .service-intro__image img {
        min-height: 420px;
    }

    .service-intro__content {
        text-align: center;
    }

    .service-intro__content p,
    .service-benefits__content p {
        margin-inline: auto;
    }

    .services-hub-card__content p,
    .service-benefits__card p {
        margin-left: 0;
    }

    .service-feature-grid,
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-benefits__content {
        text-align: center;
    }

    .service-benefits__content .check-list,
    .map-section__content .check-list {
        max-width: 620px;
        margin-inline: auto;
        text-align: left;
    }

    .map-section__content {
        text-align: center;
    }

    .services-hub__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .services-hub-card__image img {
        height: 320px;
    }

    .map-section__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-hero__actions .btn {
        width: 100%;
    }

    .service-hero::before {
        width: 180px;
        height: 180px;
        top: -70px;
        right: -70px;
    }

    .service-hero::after {
        display: none;
    }

    .service-intro__image img {
        min-height: 320px;
        border-radius: 24px;
    }

    .service-feature-grid,
    .areas-grid,
    .local-benefits .service-feature-grid {
        grid-template-columns: 1fr;
    }

    .service-feature-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .service-benefits__card {
        padding: 32px 24px;
    }

    .faq-item {
        padding: 26px 24px;
    }

    .industries-list,
    .areas-list {
        justify-content: flex-start;
        gap: 10px;
    }

    .industries-list span,
    .areas-list a {
        width: 100%;
        justify-content: center;
    }

    .services-hub-card {
        border-radius: 24px;
    }

    .services-hub-card__image img {
        height: 240px;
    }

    .services-hub-card__content {
        padding: 24px;
    }

    .area-card {
        min-height: 96px;
        padding: 22px;
    }

    .service-map iframe {
        min-height: 340px;
    }

    .service-areas-hero::after {
        width: 240px;
        height: 240px;
        top: -100px;
        right: -100px;
    }

    .service-areas-hero .service-intro__image img {
        object-position: right center;
    }

    .hero-stats {
        flex-direction: column;
    }

    .hero-stat {
        width: 100%;
    }

    .hero-stat__text strong {
        font-size: 1.05rem;
    }
}