/* Services Specific Styles */

.btn-indigo {
    background-color: var(--primary-color);
    color: white;
    border-radius: 1rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border: none;
    transition: all 0.2s;
}

.btn-indigo:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-1px);
}

.card {
    border: 1px solid #f1f5f9;
    border-radius: 1.5rem;
    transition: all 0.3s;
    background: white;
}

.card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.rounded-4xl { border-radius: 2rem !important; }
.object-fit-cover { object-fit: cover; }

.line-through { text-decoration: line-through; opacity: 0.5; }
