/* ==========================================================
   WorldSpace Broadband
   Local Service Area Pages
   Vasai / Virar / Nallasopara
========================================================== */


/* ==========================================================
   Hero
========================================================== */

.service-area-hero {

    position: relative;

    padding: 100px 0 110px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #061d3f 0%,
            #0b4f9c 52%,
            #0077cc 100%
        );

    color: #ffffff;
}


.service-area-hero::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.16) 0%,
            rgba(255,255,255,0) 70%
        );

    pointer-events: none;
}


.service-area-hero::after {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -220px;
    bottom: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,200,255,.18) 0%,
            rgba(0,200,255,0) 70%
        );

    pointer-events: none;
}


.service-area-hero .container {

    position: relative;

    z-index: 2;

    width: min(
        1180px,
        calc(100% - 40px)
    );

    margin: 0 auto;

}


.service-area-hero__badge {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 8px 17px;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 999px;

    background: rgba(255,255,255,.10);

    color: #ffffff;

    font-size: .7rem;

    font-weight: 800;

    letter-spacing: .13em;

    text-transform: uppercase;
}


.service-area-hero__title {

    max-width: 850px;

    margin: 20px 0 18px;

    color: #ffffff;

    font-size: clamp(
        2.5rem,
        5vw,
        4.4rem
    );

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -.025em;
}


.service-area-hero__description {

    max-width: 760px;

    margin: 0;

    color: rgba(255,255,255,.88);

    font-size: 1.05rem;

    line-height: 1.8;
}


.service-area-hero__buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;
}


/* ==========================================================
   Hero Buttons
========================================================== */

.service-area-hero .button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 25px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.service-area-hero .button:hover {

    transform: translateY(-2px);

}


.service-area-hero .button--primary {

    background: #ffffff;

    color: #0066cc;

    box-shadow:
        0 10px 25px rgba(0,0,0,.15);
}


.service-area-hero .button--secondary {

    border: 1px solid rgba(255,255,255,.45);

    background: rgba(255,255,255,.10);

    color: #ffffff;
}


.service-area-hero .button--secondary:hover {

    background: rgba(255,255,255,.18);
}


/* ==========================================================
   Content Section
========================================================== */

.service-area-content {

    position: relative;

    padding: 90px 0 100px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fbff 50%,
            #ffffff 100%
        );
}


.service-area-content .container {

    width: min(
        1180px,
        calc(100% - 40px)
    );

    margin: 0 auto;
}


.service-area-content__header {

    max-width: 820px;

    margin: 0 auto 55px;

    text-align: center;
}


.service-area-content__badge {

    display: inline-flex;

    padding: 7px 16px;

    border-radius: 999px;

    background: #eaf3ff;

    color: #0066cc;

    font-size: .68rem;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.service-area-content__header h2 {

    margin: 17px 0 15px;

    color: #0f2f63;

    font-size: clamp(
        2rem,
        4vw,
        2.8rem
    );

    font-weight: 800;

    line-height: 1.15;
}


.service-area-content__header p {

    margin: 0;

    color: #64748b;

    font-size: .98rem;

    line-height: 1.8;
}


/* ==========================================================
   Feature Cards
========================================================== */

.service-area-features {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


.service-area-feature {

    position: relative;

    min-height: 210px;

    padding: 32px 30px;

    border: 1px solid #d8e5f4;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 8px 28px rgba(15,23,42,.055);

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.service-area-feature::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 5px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            #0066cc,
            #00a9d9
        );
}


.service-area-feature:hover {

    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(15,23,42,.10);
}


.service-area-feature h3 {

    margin: 0 0 13px;

    color: #0f2f63;

    font-size: 1.3rem;

    font-weight: 800;
}


.service-area-feature p {

    margin: 0;

    color: #64748b;

    font-size: .94rem;

    line-height: 1.75;
}


/* ==========================================================
   CTA
========================================================== */

.service-area-cta {

    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            #061d3f,
            #075eb7
        );

    text-align: center;

    color: #ffffff;
}


.service-area-cta .container {

    width: min(
        900px,
        calc(100% - 40px)
    );

    margin: 0 auto;
}


.service-area-cta h2 {

    margin: 0 0 14px;

    color: #ffffff;

    font-size: clamp(
        2rem,
        4vw,
        2.8rem
    );

    font-weight: 800;
}


.service-area-cta p {

    max-width: 650px;

    margin: 0 auto 27px;

    color: rgba(255,255,255,.85);

    line-height: 1.7;
}


.service-area-cta .button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    border-radius: 10px;

    background: #ffffff;

    color: #0066cc;

    text-decoration: none;

    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.service-area-cta .button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.18);
}


/* ==========================================================
   Tablet
========================================================== */

@media (max-width: 900px) {

    .service-area-hero {

        padding: 80px 0 90px;

    }


    .service-area-features {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* ==========================================================
   Mobile
========================================================== */

@media (max-width: 640px) {

    .service-area-hero {

        padding: 70px 0 75px;

    }


    .service-area-hero .container,
    .service-area-content .container {

        width: min(
            100% - 30px,
            1180px
        );

    }


    .service-area-hero__title {

        font-size: 2.45rem;

    }


    .service-area-hero__description {

        font-size: .95rem;

    }


    .service-area-hero__buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .service-area-hero .button {

        width: 100%;

    }


    .service-area-content {

        padding: 65px 0 75px;

    }


    .service-area-content__header {

        margin-bottom: 38px;

    }


    .service-area-features {

        grid-template-columns: 1fr;

        gap: 16px;

    }


    .service-area-feature {

        min-height: 190px;

        padding: 28px 24px;

    }


    .service-area-cta {

        padding: 60px 0;

    }

}


/* ==========================================================
   Related Service Areas
========================================================== */

.related-areas {
    position: relative;

    padding: 85px 0 95px;

    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
}

.related-areas .container {
    width: min(
        1180px,
        calc(100% - 40px)
    );

    margin: 0 auto;
}


.related-areas__header {
    max-width: 780px;

    margin: 0 auto 48px;

    text-align: center;
}


.related-areas__badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 7px 16px;

    border-radius: 999px;

    background: #eaf3ff;

    color: #0066cc;

    font-size: .68rem;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.related-areas__header h2 {
    margin: 17px 0 14px;

    color: #0f2f63;

    font-size: clamp(
        2rem,
        4vw,
        2.75rem
    );

    font-weight: 800;

    line-height: 1.15;
}


.related-areas__header p {
    max-width: 700px;

    margin: 0 auto;

    color: #64748b;

    font-size: .97rem;

    line-height: 1.8;
}


.related-areas__list {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;

    max-width: 850px;

    margin: 0 auto;
}


.related-area-card {
    position: relative;

    padding: 30px;

    border: 1px solid #d8e5f4;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 8px 28px rgba(15,23,42,.055);

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.related-area-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 5px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            #0066cc,
            #00a9d9
        );
}


.related-area-card:hover {
    transform: translateY(-5px);

    border-color: #b8d4ef;

    box-shadow:
        0 18px 40px rgba(15,23,42,.10);
}


.related-area-card__content {
    position: relative;

    z-index: 2;
}


.related-area-card__label {
    display: inline-block;

    margin-bottom: 10px;

    color: #0066cc;

    font-size: .68rem;

    font-weight: 800;

    letter-spacing: .1em;

    text-transform: uppercase;
}


.related-area-card h3 {
    margin: 0 0 12px;

    color: #0f2f63;

    font-size: 1.35rem;

    font-weight: 800;
}


.related-area-card p {
    margin: 0 0 20px;

    color: #64748b;

    font-size: .92rem;

    line-height: 1.7;
}


.related-area-card__link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #0066cc;

    text-decoration: none;

    font-size: .9rem;

    font-weight: 800;
}


.related-area-card__link span {
    transition:
        transform .2s ease;
}


.related-area-card__link:hover {
    text-decoration: underline;
}


.related-area-card__link:hover span {
    transform: translateX(4px);
}


@media (max-width: 640px) {

    .related-areas {
        padding: 65px 0 75px;
    }

    .related-areas .container {
        width: min(
            100% - 30px,
            1180px
        );
    }

    .related-areas__header {
        margin-bottom: 35px;
    }

    .related-areas__list {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .related-area-card {
        padding: 27px 24px;
    }

}
