/* Services Hero Section */
.services-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 0;
    z-index: 1;
}

.services-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(58, 147, 180, 0.8) 0%, rgba(42, 122, 143, 0.8) 100%);
    display: flex;
    align-items: center;
}

.services-hero__title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.services-hero__subtitle {
    color: #fff;
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

/* Services Content Section */
.services-content-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card__image {
    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.1);
}

.service-card__content {
    padding: 30px;
    text-align: center;
}

.service-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3a93b4 0%, #2a7a8f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-card__icon i {
    color: #fff;
    font-size: 32px;
}

.service-card__content h4 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card__content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card__status {
    margin-top: 15px;
}

.service-card__status .badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* No Services */
.no-services {
    padding: 60px 20px;
    text-align: center;
}

.no-services h4 {
    color: #666;
    margin-bottom: 15px;
}

.no-services p {
    color: #999;
    font-size: 1.1rem;
}

/* Services Info Section */
.services-info-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 1;
}

.services-info-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3a93b4 0%, #2a7a8f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-card__icon i {
    color: #fff;
    font-size: 24px;
}

.info-card h5 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        min-height: 300px;
        margin-top: 0;
    }
    
    .services-hero__title {
        font-size: 2.5rem;
    }
    
    .services-hero__subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-content-section {
        padding: 60px 0;
    }
    
    .services-info-section {
        padding: 60px 0;
    }
    
    .services-info-wrapper {
        padding: 30px 20px;
    }
    
    .service-card__content {
        padding: 20px;
    }
    
    .service-card__icon {
        width: 60px;
        height: 60px;
    }
    
    .service-card__icon i {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .services-hero__title {
        font-size: 2rem;
    }
    
    .services-hero__subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .service-card__image {
        height: 150px;
    }
    
    .info-card {
        padding: 15px;
    }
} 