/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.services__title {
    text-align: center;
    margin-bottom: 60px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service__card {
    background: var(--bg-gray);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.4s ease;
    border: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.7s ease;
}

.service__card:hover::before {
    left: 100%;
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-green);
}

.service__icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.service__card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service__card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== АДАПТИВНОСТЬ SERVICES ===== */
@media (max-width: 992px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
}