/* ==================== RADIOLOGICAL & OTHER TESTS SECTION ==================== */

.radiological-tests-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.radiological-tests-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.radiological-tests-header .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b2baa;
    margin: 0;
}

.view-all-btn {
    background: #0b2baa;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #0b2baa;
    color: white;
    transform: translateY(-2px);
}

/* Lab Test Card Styles (Original Design) */
.lab-test-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lab-test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.lab-test-card .test-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.lab-test-card .test-parameter {
    color: #2563eb;
    font-size: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.test-price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-right: 10px;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.test-features {
    margin-bottom: 20px;
}

.test-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
    color: #666;
}

.test-features .feature i {
    color: #28a745;
    margin-right: 8px;
    font-size: 10px;
}

.test-book-btn {
    background: #1e40af;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    font-size: 14px;
}

.test-book-btn:hover {
    background: #1d4ed8;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .radiological-tests-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .radiological-tests-header .section-title {
        font-size: 24px;
    }

    .radiological-tests-header .view-all-btn {
        width: 100%;
        text-align: center;
    }

    .lab-test-card {
        margin-bottom: 20px;
    }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 991px) {
    .radiological-tests-header .section-title {
        font-size: 28px;
    }
}
