/* ===================================================
   TREATMENTS PAGE — treatments.css
   =================================================== */

/* ── Hero Banner ───────────────────────────────── */
.treatments-hero {
    position: relative;
    height: 240px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
    overflow: hidden;
}

.treatments-hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/18-Medical-Devices-banner-Background.jpg') center center / cover no-repeat;
    z-index: 0;
}

.treatments-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 45, 72, 0.55);
    z-index: 1;
}

.treatments-hero .container {
    position: relative;
    z-index: 2;
}

.treatments-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

/* ── Content Section ───────────────────────────── */
.treatments-content {
    padding: 60px 0 80px;
    background: #ffffff;
}

.treatments-inner {
    max-width: 980px;
}

.treatments-intro {
    font-size: 15px;
    color: #5a6a7e;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 660px;
}

.treatments-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e3451;
    margin-bottom: 24px;
}

/* ── Specialties Tag Grid ──────────────────────── */
.specialties-tag-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.spec-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #dff0fa;
    border: 1px solid #c3dff0;
    border-radius: 10px;
    padding: 14px 16px;
    cursor: default;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    min-height: 56px;
}

.spec-tag:hover {
    background: #c8e5f5;
    box-shadow: 0 4px 12px rgba(30, 52, 81, 0.1);
    transform: translateY(-2px);
}

.spec-tag-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #3a6a8c;
    stroke-width: 1.8;
}

.spec-tag span {
    font-size: 12px;
    font-weight: 600;
    color: #2d4a6e;
    letter-spacing: 0.3px;
    line-height: 1.4;
    text-transform: uppercase;
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 900px) {
    .specialties-tag-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .treatments-hero          { height: 180px; padding-bottom: 28px; }
    .treatments-hero-title    { font-size: 28px; }

    .specialties-tag-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .treatments-intro { max-width: 100%; }
}

@media (max-width: 480px) {
    .treatments-hero       { height: 140px; }
    .treatments-hero-title { font-size: 24px; }
    .treatments-content    { padding: 40px 0 56px; }

    .specialties-tag-grid {
        grid-template-columns: 1fr;
    }

    .spec-tag span { font-size: 13px; }
}
