/* =====================================================
   HelpStar — Our Providers Page Styles
   ===================================================== */

/* ── Hero Banner ── */
.providers-hero {
    background-color: #F8FAFC;
    padding: 4rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.providers-hero::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -40px;
    width: 220px;
    height: 220px;
    border: 3px solid #0284C7;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.providers-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.providers-hero-title span {
    color: #0284C7;
}

.providers-hero-subtitle {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    max-width: 650px;
}

/* ── Info Banner ── */
.providers-info-banner {
    background-color: #1a1a2e;
    padding: 3rem 0;
}

.providers-info-label {
    color: #38BDF8;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.providers-info-text {
    color: rgba(255,255,255,0.88);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

/* ── Providers Grid ── */
.providers-section {
    padding: 4rem 0;
}

.providers-section-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 0.5rem;
}

.providers-section-heading span {
    color: #0284C7;
}

.providers-section-subheading {
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}

/* ── Provider Card ── */
.provider-card {
    background: #fff;
    border: 1.5px solid #E2E8F0;
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.provider-card:hover {
    border-color: #0284C7;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(2,132,199,0.08);
}

.provider-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0284C7;
    background-color: #E0F2FE;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 10px rgba(2,132,199,0.1);
}

.provider-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.provider-credentials {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0284C7;
    margin-bottom: 1rem;
    background-color: #F1F5F9;
    padding: 0.25rem 0.75rem;
    border-radius: 50rem;
    display: inline-block;
}

.provider-card p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.provider-book-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background-color: #0284C7;
    border: none;
    border-radius: 0.5rem;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
    width: 100%;
}

.provider-book-btn:hover {
    background-color: #0369A1;
    color: #fff;
}

/* ── CTA Banner ── */
.providers-cta {
    background-color: #0284C7;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.providers-cta::after {
    content: '';
    position: absolute;
    left: -80px;
    bottom: -60px;
    width: 240px;
    height: 240px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    pointer-events: none;
}

.providers-cta-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.providers-cta-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 500px;
}

.providers-cta-btn {
    background-color: #1a1a2e;
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    border: none;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s, transform 0.2s;
}

.providers-cta-btn:hover {
    background-color: #0f0f1a;
    color: #fff;
    transform: translateY(-2px);
}
