/* Исправления для раздела Услуги */

/* Убираем плавающую анимацию с иконок в карточках услуг */
.service-card .icon-3d {
    animation: none !important;
    transform: none !important;
}

/* Убираем движение карточек при наведении */
.service-card:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Убираем glow эффект, который может вызывать странную анимацию */
.service-glow {
    display: none !important;
}

/* Выравнивание карточек по высоте с flexbox */
.services-grid {
    display: flex !important;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: stretch;
}

.service-card {
    display: flex !important;
    flex-direction: column;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    transform: none !important;
}

/* Структура внутри карточки для правильного выравнивания */
.service-card > * {
    flex-shrink: 0;
}

.service-card p {
    flex-grow: 0;
}

.service-features {
    flex-grow: 0;
}

.service-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-details h4 {
    flex-shrink: 0;
}

.service-details ul {
    flex-grow: 1;
}

.price-badge {
    margin-top: auto !important;
    align-self: flex-start;
}

/* Выравниваем кнопки по нижнему краю */
.service-link {
    margin-top: auto !important;
    align-self: stretch;
    text-align: center;
    justify-content: center;
}

/* Убираем scale с featured карточки */
.service-card.featured {
    transform: none !important;
}

/* Мобильная адаптация */
@media (max-width: 991px) {
    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
    }
    
    .service-card {
        flex: 1 1 100%;
        width: 100%;
    }
}

/* Скрываем социальные сети временно */
.social-section,
.social-links,
.footer-social,
.social-icons,
[class*="social"] {
    display: none !important;
}

/* Убираем раздел "Присоединяйтесь к нам" если он есть */
.footer-column:has(.social-links) {
    display: none !important;
}

/* Альтернативный селектор для футера */
.footer-bottom .social-links,
.footer-content .social-links {
    display: none !important;
}