
/* ==========================================================
   WorldSpace Broadband
   Support Page - Premium Corporate Style
========================================================== */

.support {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 58px 0 90px;

    font-family: Arial, Helvetica, sans-serif;

    background:
        radial-gradient(
            circle at 8% 18%,
            rgba(0, 102, 204, .08),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 20%,
            rgba(0, 145, 255, .10),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #F4F9FF 0%,
            #FFFFFF 48%,
            #F7FBFF 100%
        );
}


/* ==========================================================
   Decorative Background
========================================================== */

.support::before {
    content: "";

    position: absolute;

    top: 70px;
    right: -170px;

    width: 620px;
    height: 620px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0, 103, 214, .12) 0 2px,
            transparent 3px
        );

    background-size: 28px 28px;

    opacity: .55;

    pointer-events: none;

    z-index: -1;
}

.support::after {
    content: "";

    position: absolute;

    left: -220px;
    top: 310px;

    width: 700px;
    height: 300px;

    border-radius: 50%;

    border-top: 2px solid rgba(0, 103, 214, .08);
    border-bottom: 2px solid rgba(0, 103, 214, .04);

    transform: rotate(-8deg);

    pointer-events: none;

    z-index: -1;
}


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

.support__header {
    max-width: 900px;

    margin: 0 auto 48px;

    padding: 8px 20px 10px;

    text-align: center;
}

.support__eyebrow {
    display: inline-flex;

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

    padding: 8px 17px;

    border: 1px solid #CFE4FA;

    border-radius: 999px;

    background: #FFFFFF;

    color: #0056B3;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .09em;

    text-transform: uppercase;

    box-shadow:
        0 6px 18px rgba(0,86,179,.08);
}

.support__title {
    margin: 16px 0 10px;

    color: #0B1F3A;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 2.25rem;

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -0.8px;
}

.support__description {
    max-width: 760px;

    margin: 0 auto;

    color: #52657A;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    line-height: 1.65;
}


/* ==========================================================
   Support Categories
========================================================== */

.support__categories {
    display: grid;

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

    gap: 20px;

    margin-bottom: 52px;
}

.support__card {
    position: relative;

    min-height: 238px;

    padding: 27px 24px;

    border: 1px solid #DCE8F5;

    border-radius: 18px;

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

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

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

.support__card:hover {
    transform: translateY(-5px);

    border-color: #BFD9F3;

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

.support__card-icon {
    display: flex;

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

    width: 54px;
    height: 54px;

    margin-bottom: 22px;

    border: 1px solid #D8E9FA;

    border-radius: 15px;

    background: #EDF6FF;

    font-size: 23px;

    box-shadow:
        0 7px 18px rgba(0,86,179,.08);
}

.support__card-content h2 {
    margin: 0 0 10px;

    color: #0B1F3A;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.3;
}

.support__card-content p {
    margin: 0;

    color: #5C6F84;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.7;
}

.support__card-arrow {
    position: absolute;

    right: 22px;
    bottom: 19px;

    color: #0066CC;

    font-size: 20px;

    font-weight: 700;

    transition: transform .25s ease;
}

.support__card:hover .support__card-arrow {
    transform: translateX(5px);
}


/* ==========================================================
   CTA - Polished Corporate Design
========================================================== */

.support__cta {

    display: flex;

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

    gap: 36px;

    margin-bottom: 68px;

    padding: 32px 38px;

    border: 1px solid #D5E7F8;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #EDF6FF 0%,
            #FFFFFF 100%
        );

    box-shadow:
        0 12px 32px rgba(15,23,42,.055);
}


.support__small-label {

    display: block;

    margin-bottom: 8px;

    color: #0066CC;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .09em;

    line-height: 1.2;

    text-transform: uppercase;
}


.support__cta h2 {

    margin: 0 0 8px;

    color: #0B1F3A;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 24px;

    font-weight: 700;

    line-height: 1.3;

    letter-spacing: -0.01em;
}


.support__cta p {

    max-width: 650px;

    margin: 0;

    color: #5C6F84;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    line-height: 1.65;
}


.support__cta-actions {

    display: flex;

    align-items: center;

    flex-shrink: 0;

    gap: 10px;
}


.support__button {

    display: inline-flex;

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

    gap: 8px;

    min-height: 46px;

    padding: 0 19px;

    border-radius: 10px;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

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


.support__button:hover {

    transform: translateY(-2px);
}


.support__button--primary {

    background: #0066CC;

    color: #FFFFFF;

    border: 1px solid #0066CC;

    box-shadow:
        0 7px 18px rgba(0,86,179,.18);
}


.support__button--primary:hover {

    background: #0055AA;

    border-color: #0055AA;
}


.support__button--secondary {

    background: #FFFFFF;

    color: #0066CC;

    border: 1px solid #C6DCF2;
}


.support__button--secondary:hover {

    background: #F2F8FF;

    border-color: #AFCFEA;
}


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

@media (max-width: 1000px) {

    .support__cta-actions {

        width: 100%;
    }

}


@media (max-width: 700px) {

    .support__cta h2 {

        font-size: 21px;
    }

    .support__cta p {

        font-size: 14px;
    }

    .support__cta-actions {

        flex-direction: column;

        align-items: stretch;

        width: 100%;

        gap: 9px;
    }

    .support__button {

        width: 100%;

        min-height: 46px;
    }

}


@media (max-width: 420px) {

    .support__cta h2 {

        font-size: 20px;
    }

}


/* ==========================================================
   Section Headings
========================================================== */

.support__section-heading {
    margin-bottom: 27px;
}

.support__section-heading h2 {
    margin: 0 0 9px;

    color: #0B1F3A;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 28px;

    font-weight: 700;

    line-height: 1.25;
}

.support__section-heading p {
    margin: 0;

    color: #607387;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    line-height: 1.6;
}

.support__section-heading--center {
    text-align: center;
}


/* ==========================================================
   Contact Support
========================================================== */

.support__contact {
    margin-bottom: 72px;
}

.support__contact-grid {
    display: grid;

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

    gap: 18px;
}

.support__contact-card {
    display: flex;

    align-items: center;

    gap: 14px;

    min-width: 0;

    padding: 18px;

    border: 1px solid #DCE8F5;

    border-radius: 15px;

    background: #FFFFFF;

    text-decoration: none;

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

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

.support__contact-card:hover {
    transform: translateY(-3px);

    border-color: #C4DCF2;

    box-shadow:
        0 14px 30px rgba(15,23,42,.08);
}

.support__contact-icon {
    display: flex;

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

    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    border: 1px solid #D7E8F9;

    border-radius: 12px;

    background: #EDF6FF;

    color: #0066CC;

    font-size: 18px;
}

.support__contact-info {
    display: flex;

    flex-direction: column;

    gap: 4px;

    min-width: 0;
}

.support__contact-info strong {
    color: #0B1F3A;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: 700;
}

.support__contact-info span {
    overflow: hidden;

    color: #65778A;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.support__contact-arrow {
    margin-left: auto;

    color: #0066CC;

    font-size: 18px;

    font-weight: 700;
}


/* ==========================================================
   FAQ
========================================================== */

.support__faq {
    max-width: 900px;

    margin: 0 auto;
}

.support__faq .support__section-heading {
    margin-bottom: 28px;
}

.support__faq .support__section-heading h2 {
    font-size: 30px;
}

.support__faq-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.support__faq-item {
    border: 1px solid #DCE8F5;

    border-radius: 14px;

    background: #FFFFFF;

    box-shadow:
        0 6px 20px rgba(15,23,42,.035);

    overflow: hidden;

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

.support__faq-item:hover {
    border-color: #C5DCF4;

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

.support__faq-item summary {
    display: flex;

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

    gap: 20px;

    padding: 19px 21px;

    color: #0B1F3A;

    cursor: pointer;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: 700;

    line-height: 1.5;

    list-style: none;
}

.support__faq-item summary::-webkit-details-marker {
    display: none;
}

.support__faq-item summary b {
    display: flex;

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

    flex: 0 0 28px;

    width: 28px;
    height: 28px;

    border: 1px solid #C9DFF4;

    border-radius: 50%;

    color: #0066CC;

    font-size: 18px;

    font-weight: 400;

    transition:
        transform .2s ease,
        background .2s ease;
}

.support__faq-item[open] summary b {
    transform: rotate(45deg);

    background: #EDF6FF;
}

.support__faq-answer {
    padding: 0 21px 19px;

    border-top: 1px solid #EEF3F8;
}

.support__faq-answer p {
    margin: 14px 0 0;

    color: #5F7184;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    line-height: 1.75;
}


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

@media (max-width: 1000px) {

    .support__categories {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .support__cta {
        align-items: flex-start;

        flex-direction: column;
    }

    .support__cta-actions {
        width: 100%;
    }

}


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

@media (max-width: 700px) {

    .support {
        padding: 45px 15px 70px;
    }

    .support__header {
        margin-bottom: 36px;
    }

    .support__title {
        font-size: 32px;

        letter-spacing: -0.4px;
    }

    .support__description {
        font-size: 15px;
    }

    .support__categories {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .support__card {
        min-height: auto;

        padding: 24px 22px 45px;
    }

    .support__cta {
        padding: 27px 23px;

        margin-bottom: 55px;
    }

    .support__cta h2 {
        font-size: 23px;
    }

    .support__cta-actions {
        flex-direction: column;

        gap: 10px;
    }

    .support__button {
        width: 100%;
    }

    .support__contact-grid {
        grid-template-columns: 1fr;
    }

    .support__section-heading h2 {
        font-size: 25px;
    }

    .support__faq .support__section-heading h2 {
        font-size: 27px;
    }

}


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

@media (max-width: 420px) {

    .support {
        padding-left: 13px;
        padding-right: 13px;
    }

    .support__title {
        font-size: 29px;
    }

    .support__faq-item summary {
        padding: 17px 16px;

        font-size: 14px;
    }

    .support__faq-answer {
        padding-left: 16px;
        padding-right: 16px;
    }

}


/* ==========================================================
   Support Category PNG Icons
========================================================== */

.support__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 18px;

    padding: 6px;

    border-radius: 15px;

    background: #EAF3FF;

    box-shadow:
        0 8px 20px rgba(0, 86, 179, .08);

    overflow: hidden;
}

.support__card-icon img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;

    border: 0;
}

/* Slightly smaller visual size for detailed illustrations */

.support__card-icon img {
    transform: scale(1.25);

    transition:
        transform .25s ease;
}

.support__card:hover .support__card-icon img {
    transform: scale(1.32);
}


/* ==========================================================
   Support Card Typography Polish
========================================================== */

.support__card-content h2 {
    font-size: 1.05rem;
    line-height: 1.35;
}

.support__card-content p {
    font-size: .86rem;
    line-height: 1.7;
}


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

@media (max-width: 700px) {

    .support__card-icon {
        width: 56px;
        height: 56px;

        margin-bottom: 16px;
    }

}


/* ==========================================================
   Support Contact PNG Icons
========================================================== */

.support__contact-icon img {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
}

