/* =========================================================
   PAYMENT OPTIONS PAGE
   Get Well Physiotherapy & Sports Injury Clinic
========================================================= */

.payment-options-page {
    overflow: hidden;
}

/* =========================================================
   HERO
========================================================= */

.payment-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(8, 48, 72, 0.80),
            rgba(8, 48, 72, 0.84)
        ),
        url("../images/payment-hero.webp") center/cover no-repeat;
}

.payment-hero-inner {
    position: relative;
    z-index: 2;
}

.payment-hero-content {
    max-width: 800px;
    padding: 90px 0;
}

.payment-hero h1 {
    margin: 12px 0 20px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.payment-hero h1 span {
    color: #00a651;
}

.payment-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 600;
}


/* =========================================================
   PAYMENT INTRO
========================================================= */

.payment-intro {
    background: #ffffff;
}

.payment-intro .section-heading {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.payment-intro .section-heading h2 {
    margin-bottom: 18px;
}

.payment-intro .section-heading p {
    margin: 0;
    color: #607783;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================================
   INSURANCE LOGO GRID
========================================================= */

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 55px;
}

.insurance-logo {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 28px;
    background: #ffffff;
    border: 1px solid #dce5e9;
    border-radius: 3px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.insurance-logo:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 119, 185, 0.25);
    box-shadow: 0 14px 35px rgba(17, 65, 88, 0.10);
}

.insurance-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 105px;
    object-fit: contain;
}


/* =========================================================
   MORE INSURANCE
========================================================= */

.payment-more {
    margin: 55px auto 0;
    max-width: 650px;
    padding: 42px 35px;
    text-align: center;
    background: #f3f8fa;
    border-radius: 16px;
    border: 1px solid #e0ebef;
}

.payment-more h3 {
    margin: 0 0 8px;
    color: #163f55;
    font-size: 28px;
    line-height: 1.3;
}

.payment-more p {
    margin: 0 0 22px;
    color: #607783;
    font-size: 16px;
}

.payment-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    background: #0077b9;
    color: #ffffff;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.payment-call-btn:hover {
    background: #005f94;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   CTA
========================================================= */

.payment-cta {
    position: relative;
    padding: 85px 0;
    background:
        linear-gradient(
            135deg,
            #0077b9 0%,
            #00649c 60%,
            #005584 100%
        );
    overflow: hidden;
}

.payment-cta::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -230px;
    right: -120px;
    border: 70px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.payment-cta::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    bottom: -190px;
    left: -90px;
    border: 55px solid rgba(0, 166, 81, 0.15);
    border-radius: 50%;
}

.payment-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.payment-cta .section-eyebrow {
    color: #8ee0b3;
}

.payment-cta h2 {
    margin: 10px 0;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.payment-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

.payment-cta-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.payment-cta-btn,
.payment-cta-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 165px;
    padding: 15px 24px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.payment-cta-btn {
    background: #00a651;
    color: #ffffff;
}

.payment-cta-btn:hover {
    background: #008f45;
    color: #ffffff;
    transform: translateY(-2px);
}

.payment-cta-book {
    background: #ffffff;
    color: #0077b9;
}

.payment-cta-book:hover {
    background: #eef7fa;
    color: #005f94;
    transform: translateY(-2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .insurance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .payment-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .payment-cta-actions {
        margin-top: 5px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .payment-hero {
        min-height: 390px;
    }

    .payment-hero-content {
        padding: 65px 0;
    }

    .payment-hero h1 {
        font-size: 40px;
        letter-spacing: -0.8px;
    }

    .payment-hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .payment-intro .section-heading h2 {
        font-size: 28px;
    }

    .payment-intro .section-heading p {
        font-size: 15px;
    }

    .insurance-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 40px;
    }

    .insurance-logo {
        min-height: 135px;
        padding: 20px 30px;
    }

    .insurance-logo img {
        max-height: 95px;
    }

    .payment-more {
        margin-top: 40px;
        padding: 32px 22px;
    }

    .payment-more h3 {
        font-size: 24px;
    }

    .payment-cta {
        padding: 65px 0;
    }

    .payment-cta h2 {
        font-size: 32px;
    }

    .payment-cta p {
        font-size: 15px;
    }

    .payment-cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .payment-cta-btn,
    .payment-cta-book {
        width: 100%;
    }
}