/* Service Image Placeholder Styles */
.service-image-placeholder {
    width: 250px;
    height: 160px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-image-placeholder:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #adb5bd;
    color: #495057;
}

/* Specific placeholder types */
.placeholder-no-image::before {
    content: '📷 ';
    font-size: 20px;
    margin-right: 8px;
}

.placeholder-new-service::before {
    content: '✨ ';
    font-size: 20px;
    margin-right: 8px;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .service-image-placeholder {
        width: 100%;
        max-width: 250px;
        height: 140px;
        font-size: 14px;
    }
}

/* Integration with existing service card styles */
.service-image-container .service-image-placeholder {
    object-fit: cover;
    cursor: pointer;
}

/* Ensure placeholder works with overlay */
.service-image-container:hover .service-image-placeholder {
    opacity: 0.7;
}