.no-services{
    text-align: center; 
    padding: 4rem; 
    grid-column: 1 / -1;
}

.no-services h3 {
    color: #666; margin-bottom: 1rem;
}

.no-services p {
    color: #888;
}

.services-cta {
    margin-top: 4rem; 
    text-align: center; 
    padding: 3rem; 
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); 
    border-radius: 15px; 
    color: white;
}

.services-cta h2 {
    margin-bottom: 1rem;
}

.services-cta p {
    margin-bottom: 2rem; 
    opacity: 0.9;
}

.services-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem; 
    text-align: center;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-image.placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.service-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-type-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.service-card-title {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    line-height: 1.4;
}

.service-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card-title a:hover {
    color: #667eea;
}

.service-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.feature-icon {
    color: #4CAF50;
    font-weight: bold;
}

.feature-text {
    color: #555;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.service-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
}

.price-duration {
    font-size: 0.8rem;
    color: #888;
}

.service-detail-btn {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px solid #667eea;
    border-radius: 25px;
}

.service-detail-btn:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
}

.cta-button {
    display: inline-block; 
    padding: 1rem 2rem; 
    background: white; 
    color: #f5576c; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: bold; 
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .service-card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .service-detail-btn {
        text-align: center;
    }
}