/* Стили для модального окна контактов */
.contacts {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contacts__header {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    padding: 20px;
    position: relative;
    border: none;
}

.contacts__title {
    color: #fff;
    font-size: 24px;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.contacts__close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    opacity: 0.8;
    transition: opacity 0.3s;
    padding: 0;
    cursor: pointer;
}

.contacts__close:hover {
    opacity: 1;
}

.contacts__body {
    padding: 30px;
}

.contacts__section {
    margin-bottom: 25px;
}

.contacts__section:last-child {
    margin-bottom: 0;
}

.contacts__subtitle {
    color: #374151;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.contacts__link {
    display: flex;
    align-items: center;
    color: #4B5563;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.contacts__link:hover {
    color: #6366F1;
}

.contacts__icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    color: #6366F1;
    display: flex;
    align-items: center;
}

.contacts__text {
    font-weight: 500;
}

.contacts__messengers {
    display: flex;
    gap: 15px;
}

.contacts__messenger-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contacts__messenger-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    color: #fff;
}

.contacts__messenger-icon {
    font-size: 24px;
}

/* Адаптивность */
@media (max-width: 576px) {
    .contacts__header {
        padding: 15px;
    }
    
    .contacts__body {
        padding: 20px;
    }
    
    .contacts__title {
        font-size: 20px;
    }
    
    .contacts__subtitle {
        font-size: 16px;
    }
    
    .contacts__text {
        font-size: 14px;
    }
    
    .contacts__messenger-link {
        width: 40px;
        height: 40px;
    }
    
    .contacts__messenger-icon {
        font-size: 20px;
    }
}
