/* Стили для Services секции */
.services-section {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg,
        #f8f9fa 0%,
        #e9ecef 50%,
        #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.services-section .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 70px;
}

.services-section .section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.services-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.services-section .section-title p {
    font-size: 1.3rem;
    color: #5a6c7d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2980b9);
}

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

.service-card.featured {
    border: 2px solid #3498db;
    transform: scale(1.05);
}

.service-card.featured::before {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-size: 0.95rem;
    color: #34495e;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Декоративные элементы для services */
.service-decor {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
    z-index: 1;
}

.service-decor-1 {
    width: 180px;
    height: 180px;
    top: 15%;
    left: -5%;
}

.service-decor-2 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: -3%;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .services-section .section-title h2 {
        font-size: 2.2rem;
    }
}