.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    border-radius: 4px;
    display: inline-block;
    min-height: 1em;
    width: 100%;
}

.skeleton.circle {
    border-radius: 50%;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Dark mode support if needed */
[data-theme="dark"] .skeleton {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
}

/* Specific skeleton layouts */
.service-card-skeleton {
    padding: 20px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.service-card-skeleton .img-placeholder {
    height: 180px;
    margin-bottom: 15px;
}

.service-card-skeleton .title-placeholder {
    height: 24px;
    width: 70%;
    margin-bottom: 10px;
}

.service-card-skeleton .desc-placeholder {
    height: 16px;
    width: 90%;
    margin-bottom: 8px;
}

.service-card-skeleton .btn-placeholder {
    height: 40px;
    width: 100px;
    margin-top: 15px;
}
