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

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

.treatments-hero::before {
    content: '';
    position: absolute;
    left: -60px;
    top: -40px;
    width: 220px;
    height: 220px;
    border: 3px solid #00A87A;
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
}

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

.treatments-hero-title span {
    color: #00A87A;
}

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

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

.treatments-info-label {
    color: #00A87A;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* ── Treatments Grid ── */
.treatments-section {
    padding: 4rem 0;
}

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

.treatments-section-heading span {
    color: #00A87A;
}

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

.treatments-card {
    background: #fff;
    border: 1.5px solid #d8e8e4;
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.treatments-card:hover {
    border-color: #00A87A;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,168,122,0.08);
}

.treatments-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.treatments-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.65rem;
}

.treatments-card p {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.treatments-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: #00A87A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s;
}

.treatments-link:hover {
    gap: 0.6rem;
    color: #1B4D3E;
}

/* ── CTA Banner ── */
.treatments-cta {
    background-color: #00A87A;
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.treatments-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;
}

.treatments-cta-btn:hover {
    background-color: #2a2a4e;
    color: #fff;
    transform: translateY(-2px);
}
